Class Reference for E1039 Core & Analysis Software
PHG4TargetCoilDetector.cc
Go to the documentation of this file.
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/G4SubtractionSolid.hh>
20 #include <Geant4/G4UserLimits.hh>
21 #include <Geant4/G4VisAttributes.hh>
22 
23 #include <cmath>
24 #include <sstream>
25 #include <algorithm>
26 
27 using namespace std;
28 
29 //_______________________________________________________________
30 PHG4TargetCoilDetector::PHG4TargetCoilDetector(PHCompositeNode *Node, PHParameters *parameters, const std::string &dnam, const int lyr)
31  : PHG4Detector(Node, dnam)
32  , params(parameters)
33  , cylinder_physi(nullptr)
34  , layer(lyr)
35 {
36 }
37 
38 //_______________________________________________________________
39 bool PHG4TargetCoilDetector::IsInCylinder(const G4VPhysicalVolume *volume) const
40 {
41  if (volume == cylinder_physi || volume->GetMotherLogical() == cylinder_physi->GetLogicalVolume())
42  {
43  return true;
44  }
45  return false;
46 }
47 
48 namespace {
49 
50  bool PlaceHollowTube(
51  G4LogicalVolume *mother,
52  double place,
53  G4UserLimits *g4userlimits,
54  bool overlapcheck,
55  const std::string& name,
56  G4Material *Mouter,
57  double in,
58  double out,
59  double half,
60  double t,
61  double phi0 = 0,
62  double phi = twopi
63  )
64  {
65  G4VSolid *all_solid = new G4Tubs((name+"_all").c_str(),
66  in,
67  out,
68  half,
69  phi0,
70  phi);
71 
72  G4VSolid *inner_solid = new G4Tubs((name+"_inner").c_str(),
73  in+t,
74  out-t,
75  half-t,
76  phi0,
77  phi);
78 
79  G4VSolid * outer_solid = new G4SubtractionSolid((name+"_outer").c_str(),
80  all_solid,
81  inner_solid,
82  0,
83  G4ThreeVector(0,0,0)
84  );
85 
86 
87  G4VisAttributes *vis_outer = new G4VisAttributes();
88  PHG4Utils::SetColour(vis_outer, Mouter->GetName());
89  vis_outer->SetVisibility(true);
90  vis_outer->SetForceSolid(true);
91 
92  G4LogicalVolume *outer_logic = new G4LogicalVolume(outer_solid,
93  Mouter,
94  (name+"_outer").c_str(),
95  nullptr, nullptr, g4userlimits);
96 
97  outer_logic->SetVisAttributes(vis_outer);
98 
99  new G4PVPlacement(
100  0,
101  G4ThreeVector(0, 0, place),
102  outer_logic,
103  (name+"_outer").c_str(),
104  mother, 0, false, overlapcheck);
105 
106  return true;
107  }
108 
109  bool PlaceLayeredTube(
110  G4LogicalVolume *mother,
111  double place,
112  G4UserLimits *g4userlimits,
113  bool overlapcheck,
114  const std::string& name,
115  G4Material *Minner,
116  G4Material *Mouter,
117  double in,
118  double out,
119  double half,
120  double t,
121  double phi0 = 0,
122  double phi = twopi
123  )
124  {
125  G4VSolid *all_solid = new G4Tubs((name+"_all").c_str(),
126  in,
127  out,
128  half,
129  phi0,
130  phi);
131 
132  G4VSolid *inner_solid = new G4Tubs((name+"_inner").c_str(),
133  in+t,
134  out-t,
135  half-t,
136  phi0,
137  phi);
138 
139  G4VSolid * outer_solid = new G4SubtractionSolid((name+"_outer").c_str(),
140  all_solid,
141  inner_solid,
142  0,
143  G4ThreeVector(0,0,0)
144  );
145 
146 
147  G4VisAttributes *vis_inner = new G4VisAttributes();
148  PHG4Utils::SetColour(vis_inner, Minner->GetName());
149  vis_inner->SetVisibility(true);
150  vis_inner->SetForceSolid(true);
151 
152  G4LogicalVolume *inner_logic = new G4LogicalVolume(inner_solid,
153  Minner,
154  (name+"_inner").c_str(),
155  nullptr, nullptr, g4userlimits);
156 
157  inner_logic->SetVisAttributes(vis_inner);
158 
159  new G4PVPlacement(
160  0,
161  G4ThreeVector(0, 0, place),
162  inner_logic,
163  (name+"_inner").c_str(),
164  mother, 0, false, overlapcheck);
165 
166 
167  G4VisAttributes *vis_outer = new G4VisAttributes();
168  PHG4Utils::SetColour(vis_outer, Mouter->GetName());
169  vis_outer->SetVisibility(true);
170  vis_outer->SetForceSolid(true);
171 
172  G4LogicalVolume *outer_logic = new G4LogicalVolume(outer_solid,
173  Mouter,
174  (name+"_outer").c_str(),
175  nullptr, nullptr, g4userlimits);
176 
177  outer_logic->SetVisAttributes(vis_outer);
178 
179  new G4PVPlacement(
180  0,
181  G4ThreeVector(0, 0, place),
182  outer_logic,
183  (name+"_outer").c_str(),
184  mother, 0, false, overlapcheck);
185 
186  return true;
187  }
188 
189 }
190 
191 //_______________________________________________________________
192 void PHG4TargetCoilDetector::Construct(G4LogicalVolume *logicWorld)
193 {
194  G4double z;
195  G4double a;
196  G4String symbol;
197  G4String name;
198  G4double density;
199  G4int ncomponents;
200  G4int natoms;
201 
202  G4Element *elHe = new G4Element(name="Helium", symbol="He" , z=2., a = 4.003*g/mole);
203  G4Material* lHe = new G4Material(name = "G4_lHe", density = 0.145 * g/cm3, ncomponents = 1);
204  lHe->AddElement(elHe, natoms = 1);
205 
206  // 1/(0.45/8.57+0.45/4.506+0.1/8.96) = 6.11 g/cm3
207  G4Material* Coil = new G4Material(name = "Coil", density = 6.11*g/cm3, ncomponents = 3);
208  Coil->AddMaterial(G4Material::GetMaterial("G4_Nb"), 45 * perCent);
209  Coil->AddMaterial(G4Material::GetMaterial("G4_Ti"), 45 * perCent);
210  Coil->AddMaterial(G4Material::GetMaterial("G4_Cu"), 10 * perCent);
211  std::cout<< "DEBUG: " << Coil << std::endl;
212 
213  // 1/(0.6/7.87+0.2/7.18+0.15/8.902+0.05/10.22) = 7.95 g/cm3
214  G4Material* SS316L = new G4Material(name = "SS316L", density = 7.95*g/cm3, ncomponents = 4);
215  SS316L->AddMaterial(G4Material::GetMaterial("G4_Fe"), 60 * perCent);
216  SS316L->AddMaterial(G4Material::GetMaterial("G4_Cr"), 20 * perCent);
217  SS316L->AddMaterial(G4Material::GetMaterial("G4_Ni"), 15 * perCent);
218  SS316L->AddMaterial(G4Material::GetMaterial("G4_Mo"), 5 * perCent);
219  std::cout<< "DEBUG: " << SS316L << std::endl;
220 
221  G4VisAttributes *cylinder_vis = new G4VisAttributes();
222  PHG4Utils::SetColour(cylinder_vis, "G4_He");
223  cylinder_vis->SetVisibility(true);
224  cylinder_vis->SetForceSolid(true);
225 
226  // determine length of cylinder using PHENIX's rapidity coverage if flag is true
227 
228  double l = 22.7 * cm; // length
229  double ri = 6.0 * cm;
230  double ro = 22.225 * cm;
231  double ts = 0.3 * cm; // shell thickness
232 
233  //double cl = 1e-2 * cm;
234 
235  G4VSolid *cylinder_solid = new G4Tubs(G4String(GetName().c_str()),
236  ri,
237  ro,
238  l/2,
239  0*deg,
240  twopi);
241 
242  double steplimits = params->get_double_param("steplimits") * cm;
243  G4UserLimits *g4userlimits = nullptr;
244  if (isfinite(steplimits))
245  {
246  g4userlimits = new G4UserLimits(steplimits);
247  }
248 
249  G4LogicalVolume *cylinder_logic = new G4LogicalVolume(cylinder_solid,
250  lHe,
251  G4String(GetName().c_str()),
252  nullptr, nullptr, g4userlimits);
253 
254  cylinder_logic->SetVisAttributes(cylinder_vis);
255 
256  G4RotationMatrix *rotm = new G4RotationMatrix();
257  rotm->rotateX(params->get_double_param("rot_x")*deg);
258  rotm->rotateY(params->get_double_param("rot_y")*deg);
259  rotm->rotateZ(params->get_double_param("rot_z")*deg);
260  params->Print();
261  rotm->print(std::cout);
262  cylinder_physi = new G4PVPlacement(
263  rotm,
264  G4ThreeVector(
265  params->get_double_param("place_x") * cm,
266  params->get_double_param("place_y") * cm,
267  params->get_double_param("place_z") * cm),
268  cylinder_logic,
269  G4String(GetName().c_str()),
270  logicWorld, 0, false, overlapcheck);
271 
272  PlaceHollowTube(
273  cylinder_logic,
274  0,
275  g4userlimits,
276  overlapcheck,
277  "Shell",
278  SS316L,
279  ri,
280  ro,
281  l/2,
282  ts,
283  0,
284  twopi
285  );
286 
287  double c1_l = 4.5 * cm;
288  double c1_ri = 12.5 *cm;
289  double c1_ro = 17.2 *cm;
290  double c1_t = 0.5 *cm;
291 
292  PlaceLayeredTube(
293  cylinder_logic,
294  -7.5 *cm,
295  g4userlimits,
296  overlapcheck,
297  "C1",
298  Coil,
299  SS316L,
300  c1_ri-c1_t,
301  c1_ro+c1_t,
302  c1_l/2+c1_t,
303  c1_t,
304  0,
305  twopi
306  );
307 
308 
309  double c2_l = 5.7 * cm;
310  double c2_ri = 7.6 *cm;
311  double c2_ro = 9.4 *cm;
312  double c2_t = 0.5 *cm;
313 
314  PlaceLayeredTube(
315  cylinder_logic,
316  -2.8 *cm,
317  g4userlimits,
318  overlapcheck,
319  "C2",
320  Coil,
321  SS316L,
322  c2_ri-c2_t,
323  c2_ro+c2_t,
324  c2_l/2+c2_t,
325  c2_t,
326  0,
327  twopi
328  );
329 
330 
331  double c3_l = 1 * cm;
332  double c3_ri = 12.7 *cm;
333  double c3_ro = 13.7 *cm;
334  double c3_t = 0.5 *cm;
335 
336  PlaceLayeredTube(
337  cylinder_logic,
338  0.9 *cm,
339  g4userlimits,
340  overlapcheck,
341  "C3",
342  Coil,
343  SS316L,
344  c3_ri-c3_t,
345  c3_ro+c3_t,
346  c3_l/2+c3_t,
347  c3_t,
348  0,
349  twopi
350  );
351 }
352 
353 int PHG4TargetCoilDetector::get_elem_id(const std::string& name) const {
354  int ret = 0;
355  if(name.find("C1_inner") != std::string::npos) {
356  ret = 10;
357  } else if (name.find("C1_outer") != std::string::npos) {
358  ret = 11;
359  } else if (name.find("C2_inner") != std::string::npos) {
360  ret = 20;
361  } else if (name.find("C2_outer") != std::string::npos) {
362  ret = 21;
363  } else if (name.find("C3_inner") != std::string::npos) {
364  ret = 30;
365  } else if (name.find("C3_outer") != std::string::npos) {
366  ret = 31;
367  } else if (name.find("Shell") != std::string::npos) {
368  ret = 99;
369  }
370  return ret;
371 }
372 
373 
374 
375 
376 
377 
378 
379 
380 
381 
382 
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
PHG4TargetCoilDetector(PHCompositeNode *Node, PHParameters *parameters, const std::string &dnam, const int layer=0)
constructor
int get_elem_id(const std::string &name) const
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
void Print() const
Definition: half.h:103