Files
geant4/examples/novice/N04/include/ExN04DetectorConstruction.hh
T
2016-06-01 15:25:35 +02:00

27 lines
429 B
C++

#ifndef ExN04DetectorConstruction_h
#define ExN04DetectorConstruction_h 1
#include "G4VUserDetectorConstruction.hh"
#include "globals.hh"
class G4VPhysicalVolume;
class ExN04DetectorConstruction : public G4VUserDetectorConstruction
{
public:
ExN04DetectorConstruction();
~ExN04DetectorConstruction();
public:
G4VPhysicalVolume* Construct();
private:
#include "ExN04DetectorParameterDef.hh"
};
#endif