Class Reference for E1039 Core & Analysis Software
PHG4PolyconDetector.cc
Go to the documentation of this file.
1 #include "PHG4PolyconDetector.h"
2 
3 #include <phparameter/PHParameters.h>
4 
5 #include <g4main/PHG4Utils.h>
6 
8 #include <phool/PHIODataNode.h>
9 #include <phool/getClass.h>
10 
11 #include <Geant4/G4Colour.hh>
12 #include <Geant4/G4LogicalVolume.hh>
13 #include <Geant4/G4Material.hh>
14 #include <Geant4/G4PVPlacement.hh>
15 #include <Geant4/G4PhysicalConstants.hh>
16 #include <Geant4/G4SystemOfUnits.hh>
17 #include <Geant4/G4Polycone.hh>
18 #include <Geant4/G4Tubs.hh>
19 #include <Geant4/G4UserLimits.hh>
20 #include <Geant4/G4VisAttributes.hh>
21 
22 #include <cmath>
23 #include <sstream>
24 #include <algorithm>
25 
26 using namespace std;
27 
28 //_______________________________________________________________
29 PHG4PolyconDetector::PHG4PolyconDetector(PHCompositeNode *Node, PHParameters *parameters, const std::string &dnam, const int lyr)
30  : PHG4Detector(Node, dnam)
31  , params(parameters)
32  , cylinder_physi(nullptr)
33  , layer(lyr)
34 {
35 }
36 
37 //_______________________________________________________________
38 bool PHG4PolyconDetector::IsInCylinder(const G4VPhysicalVolume *volume) const
39 {
40  if (volume == cylinder_physi)
41  {
42  return true;
43  }
44  return false;
45 }
46 
47 //_______________________________________________________________
48 void PHG4PolyconDetector::Construct(G4LogicalVolume *logicWorld)
49 {
50  G4Material *TrackerMaterial = nullptr;
51  if (params->get_string_param("material").find("Target")
52  != std::string::npos) {
53  G4double z;
54  G4double a;
55  G4String symbol;
56  G4String name;
57  G4double density;
58  G4int ncomponents;
59  G4int natoms;
60 
61  G4Element *elH = new G4Element(name="Hydrogen", symbol="H" , z=1., a = 1.01 *g/mole);
62  G4Element *elHe = new G4Element(name="Helium", symbol="He" , z=2., a = 4.003*g/mole);
63  G4Element *elN = new G4Element(name="Nitrogen", symbol="N" , z=7., a = 14.0 *g/mole);
64 
65  //G4Material* sN2 = new G4Material(name = "G4_sN2", density = 0.25 * g/cm3, ncomponents = 1);
66  //sN2->AddElement(elN, natoms = 2);
67 
68  G4Material* lHe = new G4Material(name = "G4_lHe", density = 0.145 * g/cm3, ncomponents = 1);
69  lHe->AddElement(elHe, natoms = 1);
70 
71  G4Material* sNH3 = new G4Material(name = "G4_sNH3", density = 0.867 * g/cm3, ncomponents = 2);
72  sNH3->AddElement(elN, natoms = 1);
73  sNH3->AddElement(elH, natoms = 3);
74 
75  // M_He = 0.4*0.145 = 0.058 g; M_NH3 = 0.6*0.867 = 0.520 g, M/rho = 0.578
76  // f_M_He = 10.0%, f_M_NH3 = 90.0%
77  G4Material* Target = new G4Material(name = "Target", density = 0.578 * g/cm3, ncomponents = 2);
78  Target->AddMaterial(sNH3, 90 * perCent);
79  Target->AddMaterial(lHe, 10 * perCent);
80 
81  TrackerMaterial = Target;
82 
83  std::cout<< "DEBUG: " << TrackerMaterial << std::endl;
84  } else if (params->get_string_param("material").find("Coil")
85  != std::string::npos) {
86  G4double z;
87  G4double a;
88  G4String symbol;
89  G4String name;
90  G4double density;
91  G4int ncomponents;
92  G4int natoms;
93 
94  G4Element *elHe = new G4Element(name="Helium", symbol="He" , z=2., a = 4.003*g/mole);
95  G4Element *elFe = new G4Element(name="Iron", symbol="Fe" , z=26., a = 55.845*g/mole);
96 
97 
98  G4Material* lHe = new G4Material(name = "G4_lHe", density = 0.145 * g/cm3, ncomponents = 1);
99  lHe->AddElement(elHe, natoms = 1);
100 
101  G4Material* sFe = new G4Material(name = "G4_sFe", density = 7.87 * g/cm3, ncomponents = 1);
102  sFe->AddElement(elFe, natoms = 1);
103 
104  // M_He = 0.5*0.145 = 0.0725 g; M_Fe = 0.5*7.87 = 3.935 g, M/rho = 4.0075
105  // f_M_He = 2%, f_M_NH3 = 98%
106  G4Material* Coil = new G4Material(name = "Coil", density = 4.0075 * g/cm3, ncomponents = 2);
107  Coil->AddMaterial(sFe, 98 * perCent);
108  Coil->AddMaterial(lHe, 2 * perCent);
109 
110  TrackerMaterial = Coil;
111 
112  std::cout<< "DEBUG: " << TrackerMaterial << std::endl;
113  } else {
114  TrackerMaterial = G4Material::GetMaterial(
115  params->get_string_param("material"));
116  }
117 
118  if (!TrackerMaterial)
119  {
120  std::cout << "Error: Can not set material" << std::endl;
121  exit(-1);
122  }
123 
124  G4VisAttributes *siliconVis = new G4VisAttributes();
125  if (params->get_int_param("blackhole"))
126  {
127  PHG4Utils::SetColour(siliconVis, "BlackHole");
128  siliconVis->SetVisibility(false);
129  siliconVis->SetForceSolid(false);
130  }
131  else
132  {
133  PHG4Utils::SetColour(siliconVis, params->get_string_param("material"));
134  siliconVis->SetVisibility(true);
135  siliconVis->SetForceSolid(true);
136  }
137 
138  // determine length of cylinder using PHENIX's rapidity coverage if flag is true
139 
140  G4int num_z_planes = params->get_int_param("num_z_planes");
141  auto z_plane = params->get_vdouble_param("z_plane");
142  std::for_each(z_plane.begin(), z_plane.end(), [](double &el){el *= cm;});
143 
144  auto r_inner = params->get_vdouble_param("r_inner");
145  std::for_each(r_inner.begin(), r_inner.end(), [](double &el){el *= cm;});
146 
147  auto r_outer = params->get_vdouble_param("r_outer");
148  std::for_each(r_outer.begin(), r_outer.end(), [](double &el){el *= cm;});
149 
150  cout << "num_z_planes: " << num_z_planes << endl;
151  cout << "z_plane: " << "{ "
152  << std::for_each(z_plane.cbegin(), z_plane.cend(), [](const double &d){std::cout << d << " ";})
153  << "}" << endl;
154 
155  G4VSolid *cylinder_solid = new G4Polycone(G4String(GetName().c_str()),
156  0*deg,
157  twopi,
158  num_z_planes,
159  z_plane.data(),
160  r_inner.data(),
161  r_outer.data());
162 
163  double steplimits = params->get_double_param("steplimits") * cm;
164  G4UserLimits *g4userlimits = nullptr;
165  if (isfinite(steplimits))
166  {
167  g4userlimits = new G4UserLimits(steplimits);
168  }
169 
170  G4LogicalVolume *cylinder_logic = new G4LogicalVolume(cylinder_solid,
171  TrackerMaterial,
172  G4String(GetName().c_str()),
173  nullptr, nullptr, g4userlimits);
174  cylinder_logic->SetVisAttributes(siliconVis);
175 
176  G4RotationMatrix *rotm = new G4RotationMatrix();
177  rotm->rotateX(params->get_double_param("rot_x")*deg);
178  rotm->rotateY(params->get_double_param("rot_y")*deg);
179  rotm->rotateZ(params->get_double_param("rot_z")*deg);
180  params->Print();
181  rotm->print(std::cout);
182  cylinder_physi = new G4PVPlacement(rotm, G4ThreeVector(params->get_double_param("place_x") * cm,
183  params->get_double_param("place_y") * cm,
184  params->get_double_param("place_z") * cm),
185  cylinder_logic,
186  G4String(GetName().c_str()),
187  logicWorld, 0, false, overlapcheck);
188 }
base class for phenix detector creation
Definition: PHG4Detector.h:14
virtual std::string GetName() const
Definition: PHG4Detector.h:51
bool overlapcheck
Definition: PHG4Detector.h:62
std::string name
Definition: PHG4Detector.h:61
PHG4PolyconDetector(PHCompositeNode *Node, PHParameters *parameters, const std::string &dnam, const int layer=0)
constructor
void Construct(G4LogicalVolume *world)
construct
bool IsInCylinder(const G4VPhysicalVolume *) const
static void SetColour(G4VisAttributes *att, const std::string &mat)
Definition: PHG4Utils.cc:75
double get_double_param(const std::string &name) const
int get_int_param(const std::string &name) const
Definition: PHParameters.cc:60
std::string get_string_param(const std::string &name) const
void Print() const
vdouble get_vdouble_param(const std::string &name) const