#ifndef eventaction_hh #define eventaction_hh #include "G4UserEventAction.hh" #include "G4Event.hh" #include "globals.hh" #include "G4AnalysisManager.hh" #include "G4RunManager.hh" class EventAction : public G4UserEventAction { public: EventAction(); ~EventAction() override; void BeginOfEventAction(const G4Event*) override; void EndOfEventAction(const G4Event*) override; void AddCharge(G4double q) { charge += q; } void SetMaxCounts(G4double counts, G4double time) { maxCounts = counts; maxCountsTime = time; } void SetMinCounts(G4double counts, G4double time) { minCounts = counts; minCountsTime = time; } void SetPedestal(G4double ped, G4double tail) { pedestal = ped; pedestalTail = tail; } private: G4int feventID; G4double fenergyDeposited; G4double charge; G4double maxCounts; G4double maxCountsTime; G4double minCounts; G4double minCountsTime; G4double pedestal; G4double pedestalTail; }; #endif