3 #include <phparameter/PHParameters.h>
12 #include <Geant4/G4Box.hh>
13 #include <Geant4/G4Tubs.hh>
14 #include <Geant4/G4SubtractionSolid.hh>
15 #include <Geant4/G4Colour.hh>
16 #include <Geant4/G4LogicalVolume.hh>
17 #include <Geant4/G4Material.hh>
18 #include <Geant4/G4PVPlacement.hh>
19 #include <Geant4/G4SystemOfUnits.hh>
20 #include <Geant4/G4UserLimits.hh>
21 #include <Geant4/G4VisAttributes.hh>
38 if (volume == block_physi)
46 G4VPhysicalVolume* PlaceHollowdBox(
47 G4LogicalVolume *mother,
48 G4UserLimits *g4userlimits,
50 const std::string& name,
51 G4Material *mat_inner,
55 G4ThreeVector d_inner,
56 G4Material *mat_outer,
63 G4VPhysicalVolume* ret =
nullptr;
65 G4VSolid *all_solid =
new G4Box((name+
"_all").c_str(),
70 G4VSolid *inner_solid =
new G4Box((name+
"_inner").c_str(),
75 G4VSolid * outer_solid =
new G4SubtractionSolid((name+
"_outer").c_str(),
82 G4VisAttributes *vis_outer =
new G4VisAttributes();
84 vis_outer->SetVisibility(
true);
85 vis_outer->SetForceSolid(
true);
87 G4LogicalVolume *outer_logic =
new G4LogicalVolume(outer_solid,
89 (name+
"_outer").c_str(),
90 nullptr,
nullptr, g4userlimits);
92 outer_logic->SetVisAttributes(vis_outer);
94 ret =
new G4PVPlacement(
98 (name+
"_outer").c_str(),
99 mother, 0,
false, overlapcheck);
104 G4VPhysicalVolume* PlaceCircleHollowdBox(
105 G4LogicalVolume *mother,
106 G4UserLimits *g4userlimits,
108 const std::string& name,
109 G4Material *mat_inner,
112 G4ThreeVector d_inner,
113 G4Material *mat_outer,
117 G4ThreeVector d_outer
120 G4VPhysicalVolume* ret =
nullptr;
122 G4VSolid *all_solid =
new G4Box((name+
"_all").c_str(),
127 G4VSolid *inner_solid =
new G4Tubs((name+
"inner").c_str(),
128 0, diam_inner/2., z_inner/2.+0.0001*cm,
129 -0.0001*CLHEP::twopi, CLHEP::twopi);
131 G4VSolid * outer_solid =
new G4SubtractionSolid((name+
"_outer").c_str(),
138 G4VisAttributes *vis_outer =
new G4VisAttributes();
140 vis_outer->SetVisibility(
true);
141 vis_outer->SetForceSolid(
true);
143 G4LogicalVolume *outer_logic =
new G4LogicalVolume(outer_solid,
145 (name+
"_outer").c_str(),
146 nullptr,
nullptr, g4userlimits);
148 outer_logic->SetVisAttributes(vis_outer);
150 ret =
new G4PVPlacement(
154 (name+
"_outer").c_str(),
155 mother, 0,
false, overlapcheck);
178 G4UserLimits *g4userlimits =
nullptr;
179 if (isfinite(steplimits))
181 g4userlimits =
new G4UserLimits(steplimits);
185 block_physi = PlaceHollowdBox(
192 inner_size_x, inner_size_y, size_z,
193 G4ThreeVector(place_x+inner_place_x,place_y+inner_place_y,place_z),
196 size_x, size_y, size_z,
197 G4ThreeVector(place_x, place_y, place_z)
202 block_physi = PlaceCircleHollowdBox(
210 G4ThreeVector(place_x+inner_place_x,place_y+inner_place_y,place_z),
213 size_x, size_y, size_z,
214 G4ThreeVector(place_x, place_y, place_z)
base class for phenix detector creation
virtual std::string GetName() const
virtual void Construct(G4LogicalVolume *world)
construct
PHG4SquareTubeDetector(PHCompositeNode *Node, PHParameters *parameters, const std::string &dnam="BLOCK", const int lyr=0)
constructor
bool IsInBlock(G4VPhysicalVolume *) const
static void SetColour(G4VisAttributes *att, const std::string &mat)
double get_double_param(const std::string &name) const
std::string get_string_param(const std::string &name) const