Class Reference for E1039 Core & Analysis Software
PHG4ConeDetector.cc
Go to the documentation of this file.
1 #include "PHG4ConeDetector.h"
3 
5 #include <g4main/PHG4Utils.h>
6 
7 
9 #include <phool/PHIODataNode.h>
10 #include <phool/getClass.h>
11 
12 #include <Geant4/G4Material.hh>
13 #include <Geant4/G4Cons.hh>
14 #include <Geant4/G4LogicalVolume.hh>
15 #include <Geant4/G4PVPlacement.hh>
16 
17 #include <Geant4/G4VisAttributes.hh>
18 #include <Geant4/G4Colour.hh>
19 
20 #include <sstream>
21 
22 using namespace std;
23 
24 //_______________________________________________________________
25 //note this inactive thickness is ~1.5% of a radiation length
26 PHG4ConeDetector::PHG4ConeDetector( PHCompositeNode *Node, const std::string &dnam,const int lyr ):
27  PHG4Detector(Node, dnam),
28  TrackerMaterial(NULL),
29  InactiveMaterial(NULL),
30  block_solid(NULL),
31  block_logic(NULL),
32  block_physi(NULL),
33  place_in_x(0*cm),
34  place_in_y(0*cm),
35  place_in_z(300*cm),
36  rMin1(5*cm),
37  rMax1(100*cm),
38  rMin2(5*cm),
39  rMax2(200*cm),
40  dZ(100*cm),
41  sPhi(0),
42  dPhi(2*M_PI),
43  z_rot(0),
44  _region(NULL),
45  active(0),
46  layer(lyr)
47 {}
48 
49 //_______________________________________________________________
50 //_______________________________________________________________
51 bool PHG4ConeDetector::IsInConeActive(G4VPhysicalVolume * volume)
52 {
53  if (volume == block_physi)
54  {
55  return true;
56  }
57  return false;
58 }
59 
60 //_______________________________________________________________
61 bool PHG4ConeDetector::IsInConeInactive(G4VPhysicalVolume * volume)
62 {
63  return false;
64 }
65 
66 //_______________________________________________________________
67 void PHG4ConeDetector::Construct( G4LogicalVolume* logicWorld )
68 {
69 
70  TrackerMaterial = G4Material::GetMaterial(material.c_str());
71 
72 
73  if ( ! TrackerMaterial )
74  {
75  std::cout << "Error: Can not set material" << std::endl;
76  exit(-1);
77  }
78 
79  block_solid = new G4Cons(G4String(GetName().c_str()),
80  rMin1, rMax1, rMin2, rMax2, dZ, sPhi, dPhi);
81 
82  block_logic = new G4LogicalVolume(block_solid,
83  TrackerMaterial,
84  G4String(GetName().c_str()),
85  0, 0, 0);
86  G4VisAttributes* matVis = new G4VisAttributes();
87  PHG4Utils::SetColour(matVis,material);
88  matVis->SetVisibility(true);
89  matVis->SetForceSolid(true);
90  block_logic->SetVisAttributes(matVis);
91 
92  G4RotationMatrix *rotm = new G4RotationMatrix();
93  rotm->rotateZ(z_rot);
94  block_physi = new G4PVPlacement(rotm, G4ThreeVector(place_in_x, place_in_y, place_in_z),
95  block_logic,
96  G4String(GetName().c_str()),
97  logicWorld, 0, false, overlapcheck);
98 
99 }
#define NULL
Definition: Pdb.h:9
PHG4ConeDetector(PHCompositeNode *Node, const std::string &dnam="BLOCK", const int lyr=0)
constructor
bool IsInConeActive(G4VPhysicalVolume *)
bool IsInConeInactive(G4VPhysicalVolume *)
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