20 lines
389 B
C++
20 lines
389 B
C++
#ifndef DESCSS_DetectorConstruction_h
|
|
#define DESCSS_DetectorConstruction_h
|
|
|
|
#include "G4VUserDetectorConstruction.hh"
|
|
#include "globals.hh"
|
|
|
|
|
|
class G4VPhysicalVolume;
|
|
class G4LogicalVolume;
|
|
|
|
class DetectorConstruction : public G4VUserDetectorConstruction {
|
|
public:
|
|
DetectorConstruction();
|
|
~DetectorConstruction() override;
|
|
|
|
G4VPhysicalVolume* Construct() override;
|
|
};
|
|
|
|
#endif
|