#ifndef sensitivedetector_hh #define sensitivedetector_hh #include "G4VSensitiveDetector.hh" #include "G4Step.hh" #include "G4TouchableHistory.hh" #include "G4OpticalPhoton.hh" #include "G4RunManager.hh" #include "G4AnalysisManager.hh" #include "G4SystemOfUnits.hh" #include "G4UnitsTable.hh" #include "G4AutoLock.hh" // Declare a global mutex namespace { G4Mutex myMutex = G4MUTEX_INITIALIZER; } //Class Sensitive Detector class SensitiveDetector : public G4VSensitiveDetector { public: SensitiveDetector(G4String); ~SensitiveDetector() override; void Reset(); void PrintSummary(); private: virtual G4bool ProcessHits(G4Step *, G4TouchableHistory *) override; virtual void Initialize(G4HCofThisEvent *) override; virtual void EndOfEvent(G4HCofThisEvent *) override; G4double fTotalEnergyDeposited = 0.0; G4int fEventID; G4int fenergyDeposited = 0; G4double fMaxCounts = 0.0; G4double fMaxCountsTime = 0.0; G4double fMinCounts = 0.0; G4double fMinCountsTime = 0.0; G4double fPedestal = 0.0; G4double fPedestalTail = 0.0; }; #endif