//////////////////////////////////////////////////////////////////////////////// // Description: // This is a primitive scorer class for scoring energy deposit. // // Created: 2014-10-09 Sakari Ihantola // /////////////////////////////////////////////////////////////////////////////// /** * @file SolidPSEnergyDeposit.hh * @author: (modified by) Ibrahin Pinera * @date 2016 SoLid - University of Antwerp */ #ifndef SolidPSEnergyDeposit_h #define SolidPSEnergyDeposit_h 1 #include "G4VPrimitiveScorer.hh" #include "G4PSEnergyDeposit.hh" #include "G4THitsMap.hh" class SolidPSEnergyDeposit : public G4PSEnergyDeposit { public: // with description SolidPSEnergyDeposit(G4String name, G4int depth=0); // default unit SolidPSEnergyDeposit(G4String name, const G4String& unit, G4int depth=0); virtual ~SolidPSEnergyDeposit(); protected: // with description virtual G4int GetIndex(G4Step*); }; #endif