7 #include <Geant4/G4Box.hh>
8 #include <Geant4/G4Element.hh>
9 #include <Geant4/G4GeometryManager.hh>
10 #include <Geant4/G4LogicalVolumeStore.hh>
11 #include <Geant4/G4Material.hh>
12 #include <Geant4/G4PhysicalVolumeStore.hh>
13 #include <Geant4/G4PVPlacement.hh>
14 #include <Geant4/G4Region.hh>
15 #include <Geant4/G4RegionStore.hh>
16 #include <Geant4/G4SolidStore.hh>
17 #include <Geant4/G4SystemOfUnits.hh>
18 #include <Geant4/G4Tubs.hh>
19 #include <Geant4/G4VisAttributes.hh>
20 #include <Geant4/G4FieldManager.hh>
30 defaultMaterial(nullptr),
37 worldmaterial(
"G4_AIR"),
38 ZeroFieldStartZ(99999.*cm),
39 lZeroFieldSubWorld(nullptr),
40 pZeroFieldSubWorld(nullptr),
41 zeroFieldManager(nullptr)
47 while (detectors_.begin() != detectors_.end())
49 delete detectors_.back();
50 detectors_.pop_back();
59 if(verbosity > 0) cout <<
"PHG4PhenixDetector::Construct." << endl;
62 G4GeometryManager::GetInstance()->OpenGeometry();
63 G4PhysicalVolumeStore::GetInstance()->Clean();
64 G4LogicalVolumeStore::GetInstance()->Clean();
65 G4SolidStore::GetInstance()->Clean();
66 if(verbosity > 0) cout <<
"PHG4PhenixDetector::Construct - cleaning done." << endl;
72 G4VSolid* solidWorld =
nullptr;
73 if(worldshape ==
"G4BOX")
75 solidWorld =
new G4Box(
"World", WorldSizeX/2., WorldSizeY/2., WorldSizeZ/2.);
77 else if(worldshape ==
"G4Tubs")
79 solidWorld =
new G4Tubs(
"World", 0., WorldSizeY/2., WorldSizeZ/2., 0., 2.*M_PI);
83 cout <<
"Unknown world shape " << worldshape << endl;
84 cout <<
"implemented are G4BOX, G4Tubs" << endl;
87 rc->
set_CharFlag(
"WorldShape", solidWorld->GetEntityType());
88 logicWorld =
new G4LogicalVolume(solidWorld, G4Material::GetMaterial(worldmaterial),
"World");
89 logicWorld->SetVisAttributes(G4VisAttributes::Invisible);
90 physiWorld =
new G4PVPlacement(0, G4ThreeVector(), logicWorld,
"World", 0,
false, 0);
92 G4Region* defaultRegion = (*(G4RegionStore::GetInstance()))[0];
95 defaultRegion->SetUserInformation(info);
98 cout <<
"PHG4PhenixDetector::Construct " << solidWorld->GetEntityType() <<
" world "
99 <<
"material " << logicWorld->GetMaterial()->GetName() <<
" done." << endl;
103 if(worldshape ==
"G4BOX" && fabs(ZeroFieldStartZ) < 0.5*WorldSizeZ)
105 G4double subWorldSizeZ = 0.5*WorldSizeZ - ZeroFieldStartZ;
106 G4double subWorldPlaceZ = ZeroFieldStartZ + 0.5*subWorldSizeZ;
108 G4VSolid* sZeroFieldSubWorld =
new G4Box(
"ZeroFieldSubWorld", WorldSizeX/2., WorldSizeY/2., subWorldSizeZ/2.);
109 lZeroFieldSubWorld =
new G4LogicalVolume(sZeroFieldSubWorld, G4Material::GetMaterial(worldmaterial),
"ZeroFieldSubWorld");
110 pZeroFieldSubWorld =
new G4PVPlacement(0, G4ThreeVector(0., 0., subWorldPlaceZ), lZeroFieldSubWorld,
"ZeroFieldSubWorld", logicWorld,
false, 0,
false);
114 DetectorList::iterator iter = detectors_.begin();
115 list<int>::iterator flag = zeroFieldFlags.begin();
116 for(; iter != detectors_.end() && flag != zeroFieldFlags.end(); ++iter, ++flag)
120 (*iter)->Construct((*flag) == 0 ? logicWorld : lZeroFieldSubWorld);
124 if(verbosity > 0) cout <<
"PHG4PhenixDetector::Construct - done." << endl;
130 if(lZeroFieldSubWorld !=
nullptr)
132 lZeroFieldSubWorld->SetFieldManager(zeroFieldManager,
true);
PHG4PhenixDetector()
constructor
virtual ~PHG4PhenixDetector()
destructor
virtual G4VPhysicalVolume * Construct(void)
this is called by geant to actually construct all detectors
virtual void ConstructSDandField()
this is used to associate the local field manager to the no-field-zone logical volume
static recoConsts * instance()
virtual void set_CharFlag(const std::string &name, const std::string &flag)
overide the virtual function to expand the environmental variables