Class Reference for E1039 Core & Analysis Software
PHG4ConeDetector.h
Go to the documentation of this file.
1 #ifndef PHG4ConeDetector_h
2 #define PHG4ConeDetector_h
3 
4 #include "g4main/PHG4Detector.h"
5 
6 #include <Geant4/globals.hh>
7 #include <Geant4/G4Region.hh>
8 #include <Geant4/G4SystemOfUnits.hh>
9 #include <Geant4/G4Types.hh>
10 
11 #include <map>
12 
13 
14 class G4Material;
15 class G4Cons;
16 class G4LogicalVolume;
17 class G4Region;
18 class G4VPhysicalVolume;
19 
21 {
22 
23  public:
24 
26  PHG4ConeDetector( PHCompositeNode *Node, const std::string &dnam="BLOCK", const int lyr = 0 );
27 
29  virtual ~PHG4ConeDetector( void )
30  {}
31 
33  virtual void Construct( G4LogicalVolume* world );
34 
36 
37  bool IsInConeActive(G4VPhysicalVolume*);
38  bool IsInConeInactive(G4VPhysicalVolume*);
40 
42  void SetR1(const G4double min, const G4double max)
43  {rMin1 = min*cm; rMax1=max*cm;}
44 
46  void SetR2(const G4double min, const G4double max)
47  {rMin2 = min*cm; rMax2=max*cm;}
48 
50  void SetZlength(const G4double a)
51  {dZ = a*cm;}
52 
54  void SetPhi(const G4double a, const G4double b)
55  {sPhi = a; dPhi = g;}
56 
57  void SetMaterial(const std::string &mat) {material = mat;}
58  void SetPlaceZ(const G4double place_z) {place_in_z = place_z*cm;}
59  void SetPlace(const G4double place_x, const G4double place_y, const G4double place_z)
60  {
61  place_in_x = place_x*cm;
62  place_in_y = place_y*cm;
63  place_in_z = place_z*cm;
64  }
65  void SetZRot(const G4double z_angle) {z_rot = z_angle*rad;}
66  virtual G4UserSteppingAction* GetSteppingAction()
67  {
68  if ( _region )
69  return _region->GetRegionalSteppingAction();
70  else return 0;
71  }
72  void SetActive(const int i = 1) {active = i;}
73  void SuperDetector(const std::string &name) {superdetector = name;}
74  const std::string SuperDetector() const {return superdetector;}
75  int get_Layer() const {return layer;}
76 
77  private:
78 
79 
80  G4Material* TrackerMaterial;
81 
82  G4Material* InactiveMaterial;
83 
84  G4Cons* block_solid;
85  G4LogicalVolume* block_logic;
86  G4VPhysicalVolume* block_physi;
87 
88 
89  G4String material;
90  G4double place_in_x;
91  G4double place_in_y;
92  G4double place_in_z;
93  G4double rMin1;
94  G4double rMax1;
95  G4double rMin2;
96  G4double rMax2;
97  G4double dZ;
98  G4double sPhi;
99  G4double dPhi;
100  G4double z_rot;
101 
102  G4Region* _region;
103  int active;
104  int layer;
105  std::string superdetector;
106 
107 };
108 
109 #endif
void SetZlength(const G4double a)
set length in Z
int get_Layer() const
PHG4ConeDetector(PHCompositeNode *Node, const std::string &dnam="BLOCK", const int lyr=0)
constructor
void SetActive(const int i=1)
void SetR2(const G4double min, const G4double max)
set inner and outter radius2
bool IsInConeActive(G4VPhysicalVolume *)
bool IsInConeInactive(G4VPhysicalVolume *)
void SetPlaceZ(const G4double place_z)
void SetMaterial(const std::string &mat)
void SuperDetector(const std::string &name)
void SetPhi(const G4double a, const G4double b)
set phi offset and extention
const std::string SuperDetector() const
virtual void Construct(G4LogicalVolume *world)
construct
virtual G4UserSteppingAction * GetSteppingAction()
virtual ~PHG4ConeDetector(void)
destructor
void SetZRot(const G4double z_angle)
void SetPlace(const G4double place_x, const G4double place_y, const G4double place_z)
void SetR1(const G4double min, const G4double max)
set inner and outter radius1
base class for phenix detector creation
Definition: PHG4Detector.h:14
std::string name
Definition: PHG4Detector.h:61