/** * @file SolidMPPC.hh * @author Ibrahin Pinera * @date 2016 SoLid - University of Antwerp */ #ifndef SolidMPPC_h #define SolidMPPC_h #include "G4LogicalVolume.hh" class SolidMPPC { public: SolidMPPC(G4int); ~SolidMPPC(); G4LogicalVolume *MPPCConstruction(); // virtual void ConstructSDandField(); G4double GetSize(){return m_mppcSize;} G4double GetThickness(){return m_mppcThickness;} private: G4LogicalVolume * logMPPC; G4double m_mppcSize; G4double m_mppcThickness; G4int m_verboseLevel; }; #endif