Graduation-Project/include/GeneDetectorConstruction.hh

25 lines
501 B
C++
Raw Normal View History

2023-04-09 22:30:59 +08:00
#ifndef GeneDetectorConstruction_hh
#define GeneDetectorConstruction_hh 1
2023-02-13 14:50:36 +08:00
class G4LogicalVolume;
class G4VPhysicalVolume;
2023-05-14 15:08:17 +08:00
#include "G4SystemOfUnits.hh"
2023-04-09 22:30:59 +08:00
#include "G4VUserDetectorConstruction.hh"
2023-05-08 11:10:33 +08:00
#include "globals.hh"
2023-02-13 14:50:36 +08:00
class GeneDetectorConstruction : public G4VUserDetectorConstruction {
public:
GeneDetectorConstruction();
~GeneDetectorConstruction();
public:
G4VPhysicalVolume* Construct();
private:
G4LogicalVolume* logicalWorld;
G4VPhysicalVolume* physicalWorld;
};
#endif