#ifndef DETECTORCONSTRUCTION_HH #define DETECTORCONSTRUCTION_HH #include "G4VUserDetectorConstruction.hh" #include "G4NistManager.hh" #include "G4Box.hh" #include "G4LogicalVolume.hh" #include "G4PVPlacement.hh" #include "G4Material.hh" #include "G4RunManager.hh" #include "G4SystemOfUnits.hh" class DetectorConstruction : public G4VUserDetectorConstruction { public: DetectorConstruction(); virtual ~DetectorConstruction(); virtual G4VPhysicalVolume* Construct() override; }; #endif