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