Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:18:23

0001 
0002 #ifndef _PFRICH_TSTAND_DETECTOR_CONSTRUCTION_
0003 #define _PFRICH_TSTAND_DETECTOR_CONSTRUCTION_
0004 
0005 #include "DetectorConstruction.h"
0006 
0007 class CherenkovDetector;
0008 class CherenkovDetectorCollection;
0009 
0010 class TestStandDetectorConstruction : public DetectorConstruction
0011 {
0012 public:
0013   TestStandDetectorConstruction(CherenkovDetectorCollection *geometry);
0014   virtual ~TestStandDetectorConstruction() {};
0015 
0016   G4VPhysicalVolume* Construct( void );
0017 
0018 private:
0019   //double m_gas_volume_length;
0020   //G4LogicalVolume *m_gas_volume_log;
0021   //double m_gzOffset, m_gas_volume_offset;
0022 
0023   //void DefinePhotonDetectors(CherenkovDetector *cdet, G4LogicalVolume *fvmother,
0024   //                 G4PVPlacement *gvmother, unsigned hdim);
0025 };
0026 
0027 #endif