#ifndef GDMLDetectorConstruction_h #define GDMLDetectorConstruction_h #include "G4VUserDetectorConstruction.hh" class G4GDMLParser; /// Detector construction for laoding GDML geometry class GDMLDetectorConstruction : public G4VUserDetectorConstruction { public: GDMLDetectorConstruction(const G4GDMLParser& parser); virtual G4VPhysicalVolume *Construct(); virtual void ConstructSDandField(); private: const G4GDMLParser& fParser; }; #endif