G4-ExampleB0/include/Geometry.h

12 lines
207 B
C++

#ifndef GEOMETRY
#define GEOMETRY
#include "G4VUserDetectorConstruction.hh"
class DetectorConstruction : public G4VUserDetectorConstruction {
public:
virtual G4VPhysicalVolume* Construct();
};
#endif