3 #include <phparameter/PHParameters.h>
12 #include <Geant4/G4Box.hh>
13 #include <Geant4/G4Colour.hh>
14 #include <Geant4/G4LogicalVolume.hh>
15 #include <Geant4/G4Material.hh>
16 #include <Geant4/G4PVPlacement.hh>
17 #include <Geant4/G4SystemOfUnits.hh>
18 #include <Geant4/G4UserLimits.hh>
19 #include <Geant4/G4VisAttributes.hh>
36 if (volume == block_physi)
47 G4Material* TrackerMaterial = G4Material::GetMaterial(params->
get_string_param(
"material"));
50 if ( ! TrackerMaterial )
52 std::cout <<
"Error: Can not set material" << std::endl;
56 G4VSolid *block_solid =
new G4Box(G4String(
GetName().c_str()),
62 G4UserLimits *g4userlimits =
nullptr;
63 if (isfinite(steplimits))
65 g4userlimits =
new G4UserLimits(steplimits);
68 G4LogicalVolume *block_logic =
new G4LogicalVolume(block_solid,
71 nullptr,
nullptr, g4userlimits);
72 G4VisAttributes* matVis =
new G4VisAttributes();
76 matVis->SetVisibility(
false);
77 matVis->SetForceSolid(
false);
82 matVis->SetVisibility(
true);
83 matVis->SetForceSolid(
true);
85 block_logic->SetVisAttributes(matVis);
87 G4RotationMatrix *rotm =
new G4RotationMatrix();
89 block_physi =
new G4PVPlacement(rotm, G4ThreeVector(params->
get_double_param(
"place_x")*cm,
PHG4BlockDetector(PHCompositeNode *Node, PHParameters *parameters, const std::string &dnam="BLOCK", const int lyr=0)
constructor
bool IsInBlock(G4VPhysicalVolume *) const
virtual void Construct(G4LogicalVolume *world)
construct
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