3 #include <phparameter/PHParameters.h>
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>
33 , cylinder_physi(nullptr)
41 if (volume == cylinder_physi || volume->GetMotherLogical() == cylinder_physi->GetLogicalVolume())
51 G4LogicalVolume *mother,
53 G4UserLimits *g4userlimits,
55 const std::string& name,
65 G4VSolid *all_solid =
new G4Tubs((name+
"_all").c_str(),
72 G4VSolid *inner_solid =
new G4Tubs((name+
"_inner").c_str(),
79 G4VSolid * outer_solid =
new G4SubtractionSolid((name+
"_outer").c_str(),
87 G4VisAttributes *vis_outer =
new G4VisAttributes();
89 vis_outer->SetVisibility(
true);
90 vis_outer->SetForceSolid(
true);
92 G4LogicalVolume *outer_logic =
new G4LogicalVolume(outer_solid,
94 (name+
"_outer").c_str(),
95 nullptr,
nullptr, g4userlimits);
97 outer_logic->SetVisAttributes(vis_outer);
101 G4ThreeVector(0, 0, place),
103 (name+
"_outer").c_str(),
104 mother, 0,
false, overlapcheck);
109 bool PlaceLayeredTube(
110 G4LogicalVolume *mother,
112 G4UserLimits *g4userlimits,
114 const std::string& name,
125 G4VSolid *all_solid =
new G4Tubs((name+
"_all").c_str(),
132 G4VSolid *inner_solid =
new G4Tubs((name+
"_inner").c_str(),
139 G4VSolid * outer_solid =
new G4SubtractionSolid((name+
"_outer").c_str(),
147 G4VisAttributes *vis_inner =
new G4VisAttributes();
149 vis_inner->SetVisibility(
true);
150 vis_inner->SetForceSolid(
true);
152 G4LogicalVolume *inner_logic =
new G4LogicalVolume(inner_solid,
154 (name+
"_inner").c_str(),
155 nullptr,
nullptr, g4userlimits);
157 inner_logic->SetVisAttributes(vis_inner);
161 G4ThreeVector(0, 0, place),
163 (name+
"_inner").c_str(),
164 mother, 0,
false, overlapcheck);
167 G4VisAttributes *vis_outer =
new G4VisAttributes();
169 vis_outer->SetVisibility(
true);
170 vis_outer->SetForceSolid(
true);
172 G4LogicalVolume *outer_logic =
new G4LogicalVolume(outer_solid,
174 (name+
"_outer").c_str(),
175 nullptr,
nullptr, g4userlimits);
177 outer_logic->SetVisAttributes(vis_outer);
181 G4ThreeVector(0, 0, place),
183 (name+
"_outer").c_str(),
184 mother, 0,
false, overlapcheck);
190 G4LogicalVolume *mother,
191 G4UserLimits *g4userlimits,
193 const std::string& name,
197 double out = 22.68*cm,
203 double z_base[] = {z1, z2};
204 double ri_base[] = {in, in};
205 double ro_base[] = {out, out};
207 G4VSolid *base_solid =
new G4Polycone((name+
"_base").c_str(),
216 double z_sub1[] = {3.20*cm, 4.30*cm, 4.30*cm, 7.61*cm, 7.61*cm, z2+0.01*cm};
217 double ri_sub1[] = {9.70*cm, 9.70*cm, 6.97*cm, 6.97*cm, in, in};
218 double ro_sub1[] = {11.16*cm,11.16*cm,11.16*cm,11.16*cm,11.16*cm,11.16*cm};
220 G4VSolid *sub1 =
new G4Polycone((name+
"_sub1").c_str(),
229 double z_sub2[] = {2.76*cm, 8.57*cm};
230 double ri_sub2[] = {12.47*cm, 12.47*cm};
231 double ro_sub2[] = {17.88*cm, 17.88*cm};
233 G4VSolid *sub2 =
new G4Polycone((name+
"_sub2").c_str(),
241 G4VSolid * base_sub1 =
new G4SubtractionSolid((name+
"base_sub1").c_str(),
248 G4VSolid * ss_solid =
new G4SubtractionSolid((name+
"base_sub1_sub2").c_str(),
255 G4VisAttributes *ss_vis =
new G4VisAttributes();
257 ss_vis->SetVisibility(
true);
258 ss_vis->SetForceSolid(
true);
260 G4LogicalVolume *ss_logic =
new G4LogicalVolume(ss_solid,
262 (name+
"_logic").c_str(),
263 nullptr,
nullptr, g4userlimits);
265 ss_logic->SetVisAttributes(ss_vis);
269 G4ThreeVector(0, 0, z_offset),
271 (name+
"_phys").c_str(),
272 mother, 0,
false, overlapcheck);
288 G4Element *elHe =
new G4Element(
name=
"Helium", symbol=
"He" , z=2., a = 4.003*g/mole);
289 G4Material* lHe =
new G4Material(
name =
"G4_lHe", density = 0.145 * g/cm3, ncomponents = 1);
290 lHe->AddElement(elHe, natoms = 1);
293 G4Material* Coil =
new G4Material(
name =
"Coil", density = 6.11*g/cm3, ncomponents = 3);
294 Coil->AddMaterial(G4Material::GetMaterial(
"G4_Nb"), 45 * perCent);
295 Coil->AddMaterial(G4Material::GetMaterial(
"G4_Ti"), 45 * perCent);
296 Coil->AddMaterial(G4Material::GetMaterial(
"G4_Cu"), 10 * perCent);
297 std::cout<<
"PHG4TargetCoilV2Detector::Construct: " << Coil << std::endl;
300 G4Material* SS316L =
new G4Material(
name =
"SS316L", density = 7.95*g/cm3, ncomponents = 4);
301 SS316L->AddMaterial(G4Material::GetMaterial(
"G4_Fe"), 60 * perCent);
302 SS316L->AddMaterial(G4Material::GetMaterial(
"G4_Cr"), 20 * perCent);
303 SS316L->AddMaterial(G4Material::GetMaterial(
"G4_Ni"), 15 * perCent);
304 SS316L->AddMaterial(G4Material::GetMaterial(
"G4_Mo"), 5 * perCent);
305 std::cout<<
"PHG4TargetCoilV2Detector::Construct: " << SS316L << std::endl;
307 G4VisAttributes *cylinder_vis =
new G4VisAttributes();
309 cylinder_vis->SetVisibility(
true);
310 cylinder_vis->SetForceSolid(
true);
312 double l = 22.7 * cm;
314 double ri = 6.0 * cm;
315 double ro = 22.225 * cm;
316 double ts = 0.3 * cm;
320 G4VSolid *cylinder_solid =
new G4Tubs(G4String(
GetName().c_str()),
328 G4UserLimits *g4userlimits =
nullptr;
329 if (isfinite(steplimits))
331 g4userlimits =
new G4UserLimits(steplimits);
334 G4LogicalVolume *cylinder_logic =
new G4LogicalVolume(cylinder_solid,
337 nullptr,
nullptr, g4userlimits);
339 cylinder_logic->SetVisAttributes(cylinder_vis);
341 G4RotationMatrix *rotm =
new G4RotationMatrix();
346 rotm->print(std::cout);
347 cylinder_physi =
new G4PVPlacement(
386 double c1_l = 4.5 * cm;
387 double c1_ri = 12.5 *cm;
388 double c1_ro = 17.2 *cm;
389 double c1_t = 0.01*cm;
393 -(l+gap)/2 + 5.08*cm,
408 double c2_l = 5.7 * cm;
409 double c2_ri = 7.6 *cm;
410 double c2_ro = 9.4 *cm;
411 double c2_t = 0.5 *cm;
430 double c3_l = 1 * cm;
431 double c3_ri = 12.7 *cm;
432 double c3_ro = 13.7 *cm;
433 double c3_t = 0.5 *cm;
454 if(
name.find(
"C1_inner") != std::string::npos) {
456 }
else if (
name.find(
"C1_outer") != std::string::npos) {
458 }
else if (
name.find(
"C2_inner") != std::string::npos) {
460 }
else if (
name.find(
"C2_outer") != std::string::npos) {
462 }
else if (
name.find(
"C3_inner") != std::string::npos) {
464 }
else if (
name.find(
"C3_outer") != std::string::npos) {
466 }
else if (
name.find(
"Shell") != std::string::npos) {
base class for phenix detector creation
virtual std::string GetName() const
PHG4TargetCoilV2Detector(PHCompositeNode *Node, PHParameters *parameters, const std::string &dnam, const int layer=0)
constructor
int get_elem_id(const std::string &name) const
bool IsInCylinder(const G4VPhysicalVolume *) const
void Construct(G4LogicalVolume *world)
construct
static void SetColour(G4VisAttributes *att, const std::string &mat)
double get_double_param(const std::string &name) const