Class Reference for E1039 Core & Analysis Software
PHG4BlockDetector.cc
Go to the documentation of this file.
1 #include "PHG4BlockDetector.h"
2 
3 #include <phparameter/PHParameters.h>
4 
5 #include <g4main/PHG4Utils.h>
6 
7 
9 #include <phool/PHIODataNode.h>
10 #include <phool/getClass.h>
11 
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>
20 
21 #include <sstream>
22 
23 using namespace std;
24 
25 //_______________________________________________________________
26 PHG4BlockDetector::PHG4BlockDetector( PHCompositeNode *Node, PHParameters *parameters, const std::string &dnam, const int lyr):
27  PHG4Detector(Node, dnam),
28  params(parameters),
29  block_physi(nullptr),
30  layer(lyr)
31 {}
32 
33 //_______________________________________________________________
34 bool PHG4BlockDetector::IsInBlock(G4VPhysicalVolume * volume) const
35 {
36  if (volume == block_physi)
37  {
38  return true;
39  }
40  return false;
41 }
42 
43 //_______________________________________________________________
44 void PHG4BlockDetector::Construct( G4LogicalVolume* logicWorld )
45 {
46 
47  G4Material* TrackerMaterial = G4Material::GetMaterial(params->get_string_param("material"));
48 
49 
50  if ( ! TrackerMaterial )
51  {
52  std::cout << "Error: Can not set material" << std::endl;
53  exit(-1);
54  }
55 
56  G4VSolid *block_solid = new G4Box(G4String(GetName().c_str()),
57  params->get_double_param("size_x")/2.*cm,
58  params->get_double_param("size_y")/2.*cm,
59  params->get_double_param("size_z")/2.*cm);
60 
61  double steplimits = params->get_double_param("steplimits") * cm;
62  G4UserLimits *g4userlimits = nullptr;
63  if (isfinite(steplimits))
64  {
65  g4userlimits = new G4UserLimits(steplimits);
66  }
67 
68  G4LogicalVolume *block_logic = new G4LogicalVolume(block_solid,
69  TrackerMaterial,
70  G4String(GetName().c_str()),
71  nullptr, nullptr, g4userlimits);
72  G4VisAttributes* matVis = new G4VisAttributes();
73  if (params->get_int_param("blackhole"))
74  {
75  PHG4Utils::SetColour(matVis, "BlackHole");
76  matVis->SetVisibility(false);
77  matVis->SetForceSolid(false);
78  }
79  else
80  {
81  PHG4Utils::SetColour(matVis, params->get_string_param("material"));
82  matVis->SetVisibility(true);
83  matVis->SetForceSolid(true);
84  }
85  block_logic->SetVisAttributes(matVis);
86 
87  G4RotationMatrix *rotm = new G4RotationMatrix();
88  rotm->rotateZ(params->get_double_param("rot_z")*deg);
89  block_physi = new G4PVPlacement(rotm, G4ThreeVector(params->get_double_param("place_x")*cm,
90  params->get_double_param("place_y")*cm,
91  params->get_double_param("place_z")*cm),
92  block_logic,
93  G4String(GetName().c_str()),
94  logicWorld, 0, false, overlapcheck);
95 }
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
Definition: PHG4Detector.h:14
virtual std::string GetName() const
Definition: PHG4Detector.h:51
bool overlapcheck
Definition: PHG4Detector.h:62
static void SetColour(G4VisAttributes *att, const std::string &mat)
Definition: PHG4Utils.cc:75
double get_double_param(const std::string &name) const
int get_int_param(const std::string &name) const
Definition: PHParameters.cc:60
std::string get_string_param(const std::string &name) const