Class Reference for E1039 Core & Analysis Software
PHG4EMCalDetector.h
Go to the documentation of this file.
1 #ifndef PHG4EMCalDetector_H
2 #define PHG4EMCalDetector_H
3 
4 #include <g4main/PHG4Detector.h>
5 
6 #include <cassert>
7 #include <map>
8 #include <set>
9 #include <string>
10 #include <utility> // for pair, make_pair
11 
12 class G4LogicalVolume;
13 class G4VPhysicalVolume;
14 class PHCompositeNode;
15 class PHG4Subsystem;
16 class PHG4GDMLConfig;
17 class PHParameters;
18 
20 {
21 public:
23  PHG4EMCalDetector(PHCompositeNode* Node, PHParameters* parameters, const std::string& dnam = "EMCal", const int lyr = 0);
24 
26  virtual ~PHG4EMCalDetector() {}
27 
29  virtual void Construct(G4LogicalVolume* world);
30 
32  int IsInForwardEcal(G4VPhysicalVolume *) const;
33 
34  void SuperDetector(const std::string &name) { m_SuperDetector = name; }
35  const std::string SuperDetector() const { return m_SuperDetector; }
36  int get_Layer() const { return m_Layer; }
37 
38 private:
39  G4LogicalVolume* ConstructSingleTower();
40  void PlaceTower(G4LogicalVolume* envelope, G4LogicalVolume* tower);
41 
42  PHParameters* m_Params;
43 
45  G4LogicalVolume* m_scintLogical;
46  G4LogicalVolume* m_absorberLogical;
47 
48  int m_ActiveFlag;
49  int m_AbsorberActiveFlag;
50  int m_Layer;
51  std::string m_SuperDetector;
52 
53  double m_tower_size_x;
54  double m_tower_size_y;
55  double m_tower_size_z;
56  int m_ntowers_x;
57  int m_ntowers_y;
58  int m_npbsc_layers;
59 
60 
61 };
62 
63 #endif
base class for phenix detector creation
Definition: PHG4Detector.h:14
std::string name
Definition: PHG4Detector.h:61
const std::string SuperDetector() const
int IsInForwardEcal(G4VPhysicalVolume *) const
virtual void Construct(G4LogicalVolume *world)
construct
PHG4EMCalDetector(PHCompositeNode *Node, PHParameters *parameters, const std::string &dnam="EMCal", const int lyr=0)
constructor
virtual ~PHG4EMCalDetector()
destructor
void SuperDetector(const std::string &name)
PHG4GDMLConfig.