Class Reference for E1039 Core & Analysis Software
PHG4PhenixDetector.cc
Go to the documentation of this file.
1 #include "PHG4PhenixDetector.h"
2 #include "PHG4Detector.h"
4 
5 #include <phool/recoConsts.h>
6 
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>
21 
22 #include <cmath>
23 #include <iostream>
24 
25 using namespace std;
26 
27 //____________________________________________________________________________
29  verbosity(0),
30  defaultMaterial(nullptr),
31  logicWorld(nullptr),
32  physiWorld(nullptr),
33  WorldSizeX(1000*cm),
34  WorldSizeY(1000*cm),
35  WorldSizeZ(1000*cm),
36  worldshape("G4BOX"),
37  worldmaterial("G4_AIR"),
38  ZeroFieldStartZ(99999.*cm),
39  lZeroFieldSubWorld(nullptr),
40  pZeroFieldSubWorld(nullptr),
41  zeroFieldManager(nullptr)
42 {
43 }
44 
46 {
47  while (detectors_.begin() != detectors_.end())
48  {
49  delete detectors_.back();
50  detectors_.pop_back();
51  }
52 }
53 
54 
55 //_______________________________________________________________________________________________
56 G4VPhysicalVolume* PHG4PhenixDetector::Construct()
57 {
59  if(verbosity > 0) cout << "PHG4PhenixDetector::Construct." << endl;
60 
61  // Clean old geometry, if any
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;
67 
68  //default materials of the World
69  // defaultMaterial = nist->FindOrBuildMaterial("G4_AIR");
70 
71  // World
72  G4VSolid* solidWorld = nullptr;
73  if(worldshape == "G4BOX")
74  {
75  solidWorld = new G4Box("World", WorldSizeX/2., WorldSizeY/2., WorldSizeZ/2.);
76  }
77  else if(worldshape == "G4Tubs")
78  {
79  solidWorld = new G4Tubs("World", 0., WorldSizeY/2., WorldSizeZ/2., 0., 2.*M_PI);
80  }
81  else
82  {
83  cout << "Unknown world shape " << worldshape << endl;
84  cout << "implemented are G4BOX, G4Tubs" << endl;
85  exit(1);
86  }
87  rc->set_CharFlag("WorldShape", solidWorld->GetEntityType()); // needed for checks if a particle is inside or outside of our world
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);
91 
92  G4Region* defaultRegion = (*(G4RegionStore::GetInstance()))[0];
94  info->SetWorld();
95  defaultRegion->SetUserInformation(info);
96  if(verbosity > 0)
97  {
98  cout << "PHG4PhenixDetector::Construct " << solidWorld->GetEntityType() << " world "
99  << "material " << logicWorld->GetMaterial()->GetName() << " done." << endl;
100  }
101 
102  // Zero field zone if activated
103  if(worldshape == "G4BOX" && fabs(ZeroFieldStartZ) < 0.5*WorldSizeZ)
104  {
105  G4double subWorldSizeZ = 0.5*WorldSizeZ - ZeroFieldStartZ;
106  G4double subWorldPlaceZ = ZeroFieldStartZ + 0.5*subWorldSizeZ;
107 
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);
111  }
112 
113  // construct all detectors
114  DetectorList::iterator iter = detectors_.begin();
115  list<int>::iterator flag = zeroFieldFlags.begin();
116  for(; iter != detectors_.end() && flag != zeroFieldFlags.end(); ++iter, ++flag)
117  {
118  if(*iter)
119  {
120  (*iter)->Construct((*flag) == 0 ? logicWorld : lZeroFieldSubWorld);
121  }
122  }
123 
124  if(verbosity > 0) cout << "PHG4PhenixDetector::Construct - done." << endl;
125  return physiWorld;
126 }
127 
129 {
130  if(lZeroFieldSubWorld != nullptr)
131  {
132  lZeroFieldSubWorld->SetFieldManager(zeroFieldManager, true);
133  }
134 }
135 
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
void SetWorld(G4bool v=true)
static recoConsts * instance()
Definition: recoConsts.cc:7
virtual void set_CharFlag(const std::string &name, const std::string &flag)
overide the virtual function to expand the environmental variables
Definition: recoConsts.cc:21