Class Reference for E1039 Core & Analysis Software
PHG4EMCalSubsystem.cc
Go to the documentation of this file.
1 #include "PHG4EMCalSubsystem.h"
2 #include "PHG4EMCalDetector.h"
4 
5 #include <phparameter/PHParameters.h>
6 
8 #include <g4main/PHG4Utils.h>
9 
10 #include <phool/PHCompositeNode.h>
11 #include <phool/PHIODataNode.h> // for PHIODataNode
12 #include <phool/PHNode.h> // for PHNode
13 #include <phool/PHNodeIterator.h> // for PHNodeIterator
14 #include <phool/PHObject.h> // for PHObject
15 #include <phool/getClass.h>
16 
17 #include <cstdlib> // for getenv
18 #include <set> // for set
19 #include <sstream>
20 
21 class PHG4Detector;
22 
23 //_______________________________________________________________________
24 PHG4EMCalSubsystem::PHG4EMCalSubsystem(const std::string& name, const int lyr)
26  , m_Detector(nullptr)
27  , m_SteppingAction(nullptr)
28 {
30 }
31 
32 //_______________________________________________________________________
34 {
35 }
36 
37 //_______________________________________________________________________
39 {
40  PHNodeIterator iter(topNode);
41  PHCompositeNode* dstNode = dynamic_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "DST"));
42 
43  // create detector
44  m_Detector = new PHG4EMCalDetector(topNode, GetParams(), Name());
45 
46  m_Detector->SuperDetector(SuperDetector());
47  m_Detector->OverlapCheck(CheckOverlap());
48  m_Detector->Verbosity(Verbosity());
49 
50  std::set<std::string> nodes;
51  if(GetParams()->get_int_param("active") > 0)
52  {
53  std::ostringstream nodename;
54  if(SuperDetector() != "NONE")
55  {
56  nodename << "G4HIT_" << SuperDetector();
57  }
58  else
59  {
60  nodename << "G4HIT_" << Name();
61  }
62  nodes.insert(nodename.str());
63 
64  if(GetParams()->get_int_param("absorberactive") > 0)
65  {
66  nodename.str("");
67  if(SuperDetector() != "NONE")
68  {
69  nodename << "G4HIT_ABSORBER_" << SuperDetector();
70  }
71  else
72  {
73  nodename << "G4HIT_ABSORBER_" << Name();
74  }
75  nodes.insert(nodename.str());
76  }
77 
78  for(auto nodename: nodes)
79  {
80  PHG4HitContainer* g4_hits = findNode::getClass<PHG4HitContainer>(topNode, nodename);
81  if(!g4_hits)
82  {
83  g4_hits = new PHG4HitContainer(nodename);
84  dstNode->addNode(new PHIODataNode<PHObject>(g4_hits, nodename, "PHObject"));
85  }
86  }
87 
88  // create stepping action
89  m_SteppingAction = new PHG4EMCalSteppingAction(m_Detector, GetParams());
90  }
91 
92  return 0;
93 }
94 
95 //_______________________________________________________________________
97 {
98  // pass top node to stepping action so that it gets
99  // relevant nodes needed internally
100  if(m_SteppingAction)
101  {
102  m_SteppingAction->SetInterfacePointers(topNode);
103  }
104  return 0;
105 }
106 
108 {
109  return m_Detector;
110 }
111 
112 void PHG4EMCalSubsystem::SetDefaultParameters()
113 {
114  set_default_double_param("place_x", 0.);
115  set_default_double_param("place_y", 0.);
116  set_default_double_param("place_z", 0.);
117  set_default_double_param("rot_x", 0.);
118  set_default_double_param("rot_y", 0.);
119  set_default_double_param("rot_z", 0.);
120 
121  set_default_int_param("n_towers_x", 6*6*2);
122  set_default_int_param("n_towers_y", 3*6*2);
123 
124  set_default_double_param("tower_x", 5.535);
125  set_default_double_param("tower_y", 5.535);
126  set_default_double_param("tower_z", 0.56*66);
127  set_default_int_param("n_layers", 66);
128 
129  set_int_param("absorberactive", 0);
130  set_int_param("active", 1);
131 }
132 
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
PHBoolean addNode(PHNode *)
const std::string SuperDetector() const
void set_default_double_param(const std::string &name, const double dval)
void set_int_param(const std::string &name, const int ival)
PHParameters * GetParams() const
int get_int_param(const std::string &name) const
void set_default_int_param(const std::string &name, const int ival)
base class for phenix detector creation
Definition: PHG4Detector.h:14
virtual void Verbosity(const int v)
Definition: PHG4Detector.h:45
PHCompositeNode * topNode
Definition: PHG4Detector.h:59
virtual void OverlapCheck(const bool chk=true)
Definition: PHG4Detector.h:53
std::string name
Definition: PHG4Detector.h:61
void SuperDetector(const std::string &name)
PHG4Detector * GetDetector() const
int InitRunSubsystem(PHCompositeNode *)
int process_event(PHCompositeNode *)
PHG4EMCalSubsystem(const std::string &name="EMCal", const int layer=0)
virtual void SetInterfacePointers(PHCompositeNode *)
PHNode * findFirst(const std::string &, const std::string &)