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/G4UserLimits.hh>
20 #include <Geant4/G4VisAttributes.hh>
32 , cylinder_physi(nullptr)
40 if (volume == cylinder_physi)
50 G4Material *TrackerMaterial =
nullptr;
52 != std::string::npos) {
61 G4Element *elH =
new G4Element(
name=
"Hydrogen", symbol=
"H" , z=1., a = 1.01 *g/mole);
62 G4Element *elHe =
new G4Element(
name=
"Helium", symbol=
"He" , z=2., a = 4.003*g/mole);
63 G4Element *elN =
new G4Element(
name=
"Nitrogen", symbol=
"N" , z=7., a = 14.0 *g/mole);
68 G4Material* lHe =
new G4Material(
name =
"G4_lHe", density = 0.145 * g/cm3, ncomponents = 1);
69 lHe->AddElement(elHe, natoms = 1);
71 G4Material* sNH3 =
new G4Material(
name =
"G4_sNH3", density = 0.867 * g/cm3, ncomponents = 2);
72 sNH3->AddElement(elN, natoms = 1);
73 sNH3->AddElement(elH, natoms = 3);
77 G4Material* Target =
new G4Material(
name =
"Target", density = 0.578 * g/cm3, ncomponents = 2);
78 Target->AddMaterial(sNH3, 90 * perCent);
79 Target->AddMaterial(lHe, 10 * perCent);
81 TrackerMaterial = Target;
83 std::cout<<
"DEBUG: " << TrackerMaterial << std::endl;
85 != std::string::npos) {
94 G4Element *elHe =
new G4Element(
name=
"Helium", symbol=
"He" , z=2., a = 4.003*g/mole);
95 G4Element *elFe =
new G4Element(
name=
"Iron", symbol=
"Fe" , z=26., a = 55.845*g/mole);
98 G4Material* lHe =
new G4Material(
name =
"G4_lHe", density = 0.145 * g/cm3, ncomponents = 1);
99 lHe->AddElement(elHe, natoms = 1);
101 G4Material* sFe =
new G4Material(
name =
"G4_sFe", density = 7.87 * g/cm3, ncomponents = 1);
102 sFe->AddElement(elFe, natoms = 1);
106 G4Material* Coil =
new G4Material(
name =
"Coil", density = 4.0075 * g/cm3, ncomponents = 2);
107 Coil->AddMaterial(sFe, 98 * perCent);
108 Coil->AddMaterial(lHe, 2 * perCent);
110 TrackerMaterial = Coil;
112 std::cout<<
"DEBUG: " << TrackerMaterial << std::endl;
114 TrackerMaterial = G4Material::GetMaterial(
118 if (!TrackerMaterial)
120 std::cout <<
"Error: Can not set material" << std::endl;
124 G4VisAttributes *siliconVis =
new G4VisAttributes();
128 siliconVis->SetVisibility(
false);
129 siliconVis->SetForceSolid(
false);
134 siliconVis->SetVisibility(
true);
135 siliconVis->SetForceSolid(
true);
142 std::for_each(z_plane.begin(), z_plane.end(), [](
double &el){el *= cm;});
145 std::for_each(r_inner.begin(), r_inner.end(), [](
double &el){el *= cm;});
148 std::for_each(r_outer.begin(), r_outer.end(), [](
double &el){el *= cm;});
150 cout <<
"num_z_planes: " << num_z_planes << endl;
151 cout <<
"z_plane: " <<
"{ "
152 << std::for_each(z_plane.cbegin(), z_plane.cend(), [](
const double &d){std::cout << d <<
" ";})
155 G4VSolid *cylinder_solid =
new G4Polycone(G4String(
GetName().c_str()),
164 G4UserLimits *g4userlimits =
nullptr;
165 if (isfinite(steplimits))
167 g4userlimits =
new G4UserLimits(steplimits);
170 G4LogicalVolume *cylinder_logic =
new G4LogicalVolume(cylinder_solid,
173 nullptr,
nullptr, g4userlimits);
174 cylinder_logic->SetVisAttributes(siliconVis);
176 G4RotationMatrix *rotm =
new G4RotationMatrix();
181 rotm->print(std::cout);
182 cylinder_physi =
new G4PVPlacement(rotm, G4ThreeVector(params->
get_double_param(
"place_x") * cm,
base class for phenix detector creation
virtual std::string GetName() const
PHG4PolyconDetector(PHCompositeNode *Node, PHParameters *parameters, const std::string &dnam, const int layer=0)
constructor
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
int get_int_param(const std::string &name) const
std::string get_string_param(const std::string &name) const
vdouble get_vdouble_param(const std::string &name) const