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);
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);
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;
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;
221 G4VisAttributes *cylinder_vis =
new G4VisAttributes();
223 cylinder_vis->SetVisibility(
true);
224 cylinder_vis->SetForceSolid(
true);
228 double l = 22.7 * cm;
229 double ri = 6.0 * cm;
230 double ro = 22.225 * cm;
231 double ts = 0.3 * cm;
235 G4VSolid *cylinder_solid =
new G4Tubs(G4String(
GetName().c_str()),
243 G4UserLimits *g4userlimits =
nullptr;
244 if (isfinite(steplimits))
246 g4userlimits =
new G4UserLimits(steplimits);
249 G4LogicalVolume *cylinder_logic =
new G4LogicalVolume(cylinder_solid,
252 nullptr,
nullptr, g4userlimits);
254 cylinder_logic->SetVisAttributes(cylinder_vis);
256 G4RotationMatrix *rotm =
new G4RotationMatrix();
261 rotm->print(std::cout);
262 cylinder_physi =
new G4PVPlacement(
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;
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;
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;
355 if(
name.find(
"C1_inner") != std::string::npos) {
357 }
else if (
name.find(
"C1_outer") != std::string::npos) {
359 }
else if (
name.find(
"C2_inner") != std::string::npos) {
361 }
else if (
name.find(
"C2_outer") != std::string::npos) {
363 }
else if (
name.find(
"C3_inner") != std::string::npos) {
365 }
else if (
name.find(
"C3_outer") != std::string::npos) {
367 }
else if (
name.find(
"Shell") != std::string::npos) {
base class for phenix detector creation
virtual std::string GetName() const
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)
double get_double_param(const std::string &name) const