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/G4Tubs.hh>
18 #include <Geant4/G4UserLimits.hh>
19 #include <Geant4/G4VisAttributes.hh>
30 , cylinder_physi(nullptr)
38 if (volume == cylinder_physi)
48 G4Material *TrackerMaterial =
nullptr;
50 != std::string::npos) {
59 G4Element *elH =
new G4Element(
name=
"Hydrogen", symbol=
"H" , z=1., a = 1.01 *g/mole);
60 G4Element *elHe =
new G4Element(
name=
"Helium", symbol=
"He" , z=2., a = 4.003*g/mole);
61 G4Element *elN =
new G4Element(
name=
"Nitrogen", symbol=
"N" , z=7., a = 14.0 *g/mole);
66 G4Material* lHe =
new G4Material(
name =
"G4_lHe", density = 0.145 * g/cm3, ncomponents = 1);
67 lHe->AddElement(elHe, natoms = 1);
69 G4Material* sNH3 =
new G4Material(
name =
"G4_sNH3", density = 0.867 * g/cm3, ncomponents = 2);
70 sNH3->AddElement(elN, natoms = 1);
71 sNH3->AddElement(elH, natoms = 3);
75 G4Material* Target =
new G4Material(
name =
"Target", density = 0.578 * g/cm3, ncomponents = 2);
76 Target->AddMaterial(sNH3, 90 * perCent);
77 Target->AddMaterial(lHe, 10 * perCent);
79 TrackerMaterial = Target;
81 std::cout<<
"DEBUG: " << TrackerMaterial << std::endl;
83 != std::string::npos) {
92 G4Element *elHe =
new G4Element(
name=
"Helium", symbol=
"He" , z=2., a = 4.003*g/mole);
93 G4Element *elFe =
new G4Element(
name=
"Iron", symbol=
"Fe" , z=26., a = 55.845*g/mole);
96 G4Material* lHe =
new G4Material(
name =
"G4_lHe", density = 0.145 * g/cm3, ncomponents = 1);
97 lHe->AddElement(elHe, natoms = 1);
99 G4Material* sFe =
new G4Material(
name =
"G4_sFe", density = 7.87 * g/cm3, ncomponents = 1);
100 sFe->AddElement(elFe, natoms = 1);
104 G4Material* Coil =
new G4Material(
name =
"Coil", density = 4.0075 * g/cm3, ncomponents = 2);
105 Coil->AddMaterial(sFe, 98 * perCent);
106 Coil->AddMaterial(lHe, 2 * perCent);
108 TrackerMaterial = Coil;
110 std::cout<<
"DEBUG: " << TrackerMaterial << std::endl;
112 TrackerMaterial = G4Material::GetMaterial(
116 if (!TrackerMaterial)
118 std::cout <<
"Error: Can not set material" << std::endl;
122 G4VisAttributes *siliconVis =
new G4VisAttributes();
126 siliconVis->SetVisibility(
false);
127 siliconVis->SetForceSolid(
false);
132 siliconVis->SetVisibility(
true);
133 siliconVis->SetForceSolid(
true);
139 G4VSolid *cylinder_solid =
new G4Tubs(G4String(
GetName().c_str()),
144 G4UserLimits *g4userlimits =
nullptr;
145 if (isfinite(steplimits))
147 g4userlimits =
new G4UserLimits(steplimits);
150 G4LogicalVolume *cylinder_logic =
new G4LogicalVolume(cylinder_solid,
153 nullptr,
nullptr, g4userlimits);
154 cylinder_logic->SetVisAttributes(siliconVis);
156 G4RotationMatrix *rotm =
new G4RotationMatrix();
161 rotm->print(std::cout);
162 cylinder_physi =
new G4PVPlacement(rotm, G4ThreeVector(params->
get_double_param(
"place_x") * cm,
void Construct(G4LogicalVolume *world)
construct
PHG4CylinderDetector(PHCompositeNode *Node, PHParameters *parameters, const std::string &dnam, const int layer=0)
constructor
bool IsInCylinder(const G4VPhysicalVolume *) const
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
int get_int_param(const std::string &name) const
std::string get_string_param(const std::string &name) const