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())
49 bool PlaceHollowPolycone(
50 G4LogicalVolume *mother,
52 G4UserLimits *g4userlimits,
54 const std::string& name,
57 std::vector<double> o_z_plane,
58 std::vector<double> o_r_inner,
59 std::vector<double> o_r_outer,
61 std::vector<double> i_z_plane,
62 std::vector<double> i_r_inner,
63 std::vector<double> i_r_outer,
68 G4VSolid *all_solid =
new G4Polycone((name+
"_all").c_str(),
76 G4VSolid *inner_solid =
new G4Polycone((name+
"_inner").c_str(),
84 G4VSolid * outer_solid =
new G4SubtractionSolid((name+
"_outer").c_str(),
92 G4VisAttributes *vis_outer =
new G4VisAttributes();
94 vis_outer->SetVisibility(
true);
95 vis_outer->SetForceSolid(
true);
97 G4LogicalVolume *outer_logic =
new G4LogicalVolume(outer_solid,
99 (name+
"_outer").c_str(),
100 nullptr,
nullptr, g4userlimits);
102 outer_logic->SetVisAttributes(vis_outer);
106 G4ThreeVector(0, 0, place),
108 (name+
"_outer").c_str(),
109 mother, 0,
false, overlapcheck);
173 bool PlaceLayeredTube(
174 G4LogicalVolume *mother,
176 G4UserLimits *g4userlimits,
178 const std::string& name,
189 G4VSolid *all_solid =
new G4Tubs((name+
"_all").c_str(),
196 G4VSolid *inner_solid =
new G4Tubs((name+
"_inner").c_str(),
203 G4VSolid * outer_solid =
new G4SubtractionSolid((name+
"_outer").c_str(),
211 G4VisAttributes *vis_inner =
new G4VisAttributes();
213 vis_inner->SetVisibility(
true);
214 vis_inner->SetForceSolid(
true);
216 G4LogicalVolume *inner_logic =
new G4LogicalVolume(inner_solid,
218 (name+
"_inner").c_str(),
219 nullptr,
nullptr, g4userlimits);
221 inner_logic->SetVisAttributes(vis_inner);
225 G4ThreeVector(0, 0, place),
227 (name+
"_inner").c_str(),
228 mother, 0,
false, overlapcheck);
231 G4VisAttributes *vis_outer =
new G4VisAttributes();
233 vis_outer->SetVisibility(
true);
234 vis_outer->SetForceSolid(
true);
236 G4LogicalVolume *outer_logic =
new G4LogicalVolume(outer_solid,
238 (name+
"_outer").c_str(),
239 nullptr,
nullptr, g4userlimits);
241 outer_logic->SetVisAttributes(vis_outer);
245 G4ThreeVector(0, 0, place),
247 (name+
"_outer").c_str(),
248 mother, 0,
false, overlapcheck);
264 G4Element *elHe =
new G4Element(
name=
"Helium", symbol=
"He" , z=2., a = 4.003*g/mole);
265 G4Material* lHe =
new G4Material(
name =
"G4_lHe", density = 0.145 * g/cm3, ncomponents = 1);
266 lHe->AddElement(elHe, natoms = 1);
269 G4Material* Coil =
new G4Material(
name =
"Coil", density = 6.11*g/cm3, ncomponents = 3);
270 Coil->AddMaterial(G4Material::GetMaterial(
"G4_Nb"), 45 * perCent);
271 Coil->AddMaterial(G4Material::GetMaterial(
"G4_Ti"), 45 * perCent);
272 Coil->AddMaterial(G4Material::GetMaterial(
"G4_Cu"), 10 * perCent);
273 std::cout<<
"PHG4BNLTargetCoilDetector::Construct: " << Coil << std::endl;
276 G4Material* SS316L =
new G4Material(
name =
"SS316L", density = 7.95*g/cm3, ncomponents = 4);
277 SS316L->AddMaterial(G4Material::GetMaterial(
"G4_Fe"), 60 * perCent);
278 SS316L->AddMaterial(G4Material::GetMaterial(
"G4_Cr"), 20 * perCent);
279 SS316L->AddMaterial(G4Material::GetMaterial(
"G4_Ni"), 15 * perCent);
280 SS316L->AddMaterial(G4Material::GetMaterial(
"G4_Mo"), 5 * perCent);
281 std::cout<<
"PHG4BNLTargetCoilDetector::Construct: " << SS316L << std::endl;
284 G4VisAttributes *cylinder_vis =
new G4VisAttributes();
286 cylinder_vis->SetVisibility(
true);
287 cylinder_vis->SetForceSolid(
true);
293 double zend = 13.8*cm;
297 double ts = 0.3 * cm;
300 std::vector<double> o_z_plane = {g1, g2, zend};
301 std::vector<double> o_r_inner = {ri, ri, ri};
302 std::vector<double> o_r_outer = {rm, ro, ro};
305 std::vector<double> i_z_plane = {g1+ts, g2, zend-ts};
306 std::vector<double> i_r_inner = {ri+ts, ri+ts, ri+ts};
307 std::vector<double> i_r_outer = {rm, ro-ts, ro-ts};
310 G4VSolid *cylinder_solid =
new G4Polycone(G4String(
GetName().c_str()),
319 G4UserLimits *g4userlimits =
nullptr;
320 if (isfinite(steplimits))
322 g4userlimits =
new G4UserLimits(steplimits);
325 G4LogicalVolume *cylinder_logic =
new G4LogicalVolume(cylinder_solid,
328 nullptr,
nullptr, g4userlimits);
330 cylinder_logic->SetVisAttributes(cylinder_vis);
332 G4RotationMatrix *rotm =
new G4RotationMatrix();
337 rotm->print(std::cout);
338 cylinder_physi =
new G4PVPlacement(
365 double center = 0*cm;
366 double coil_t = 0.5*cm;
368 double coil_z1 = 4.0*cm;
369 double coil_z2 = 8.3*cm;
370 double coil_ri = 11.4*cm;
371 double coil_ro = 14.8*cm;
375 ((coil_z1+coil_z2)/2 - center),
396 ((coil_z1+coil_z2)/2 - center),
417 ((coil_z1+coil_z2)/2 - center),
434 if(
name.find(
"C1_inner") != std::string::npos) {
436 }
else if (
name.find(
"C1_outer") != std::string::npos) {
438 }
else if (
name.find(
"C2_inner") != std::string::npos) {
440 }
else if (
name.find(
"C2_outer") != std::string::npos) {
442 }
else if (
name.find(
"C3_inner") != std::string::npos) {
444 }
else if (
name.find(
"C3_outer") != std::string::npos) {
446 }
else if (
name.find(
"Shell") != std::string::npos) {
void Construct(G4LogicalVolume *world)
construct
bool IsInCylinder(const G4VPhysicalVolume *) const
int get_elem_id(const std::string &name) const
PHG4BNLTargetCoilDetector(PHCompositeNode *Node, PHParameters *parameters, const std::string &dnam, const int layer=0)
constructor
base class for phenix detector creation
virtual std::string GetName() const
static void SetColour(G4VisAttributes *att, const std::string &mat)
double get_double_param(const std::string &name) const