Class Reference for E1039 Core & Analysis Software
PHG4CylinderSubsystem.cc
Go to the documentation of this file.
2 #include "PHG4CylinderDetector.h"
4 #include "PHG4CylinderGeomv1.h"
6 
7 #include <phparameter/PHParameters.h>
8 
11 #include <g4main/PHG4Utils.h>
12 
13 #include <phool/getClass.h>
14 
15 #include <Geant4/globals.hh>
16 
17 #include <sstream>
18 
19 using namespace std;
20 
21 //_______________________________________________________________________
22 PHG4CylinderSubsystem::PHG4CylinderSubsystem(const std::string &na, const int lyr)
23  : PHG4DetectorSubsystem(na, lyr)
24  , detector_(nullptr)
25  , steppingAction_(nullptr)
26 {
28 }
29 
30 //_______________________________________________________________________
32 {
33  // create hit list only for active layers
34  if (GetParams()->get_int_param("lengthviarapidity"))
35  {
37  }
38  // create detector
39  detector_ = new PHG4CylinderDetector(topNode, GetParams(), Name(), GetLayer());
40  G4double detlength = GetParams()->get_double_param("length");
41  detector_->SuperDetector(SuperDetector());
42  detector_->OverlapCheck(CheckOverlap());
43  if (GetParams()->get_int_param("active"))
44  {
45  PHNodeIterator iter(topNode);
46  PHCompositeNode *dstNode = dynamic_cast<PHCompositeNode *>(iter.findFirst("PHCompositeNode", "DST"));
47  PHCompositeNode *runNode = dynamic_cast<PHCompositeNode *>(iter.findFirst("PHCompositeNode", "RUN"));
48 
49  ostringstream nodename;
50  ostringstream geonode;
51  if (SuperDetector() != "NONE")
52  {
53  // create super detector subnodes
54  PHNodeIterator iter_dst(dstNode);
55  PHCompositeNode *superSubNode = dynamic_cast<PHCompositeNode *>(iter_dst.findFirst("PHCompositeNode", SuperDetector()));
56  if (!superSubNode)
57  {
58  superSubNode = new PHCompositeNode(SuperDetector());
59  dstNode->addNode(superSubNode);
60  }
61  dstNode = superSubNode;
62  PHNodeIterator iter_run(runNode);
63  superSubNode = dynamic_cast<PHCompositeNode *>(iter_run.findFirst("PHCompositeNode", SuperDetector()));
64  if (!superSubNode)
65  {
66  superSubNode = new PHCompositeNode(SuperDetector());
67  runNode->addNode(superSubNode);
68  }
69  runNode = superSubNode;
70 
71  nodename << "G4HIT_" << SuperDetector();
72  geonode << "CYLINDERGEOM_" << SuperDetector();
73  }
74 
75  else
76  {
77  nodename << "G4HIT_" << Name();
78  geonode << "CYLINDERGEOM_" << Name();
79  }
80  PHG4HitContainer *cylinder_hits = findNode::getClass<PHG4HitContainer>(topNode, nodename.str().c_str());
81  if (!cylinder_hits)
82  {
83  dstNode->addNode(new PHIODataNode<PHObject>(cylinder_hits = new PHG4HitContainer(nodename.str()), nodename.str().c_str(), "PHObject"));
84  }
85  cylinder_hits->AddLayer(GetLayer());
86  PHG4CylinderGeomContainer *geo = findNode::getClass<PHG4CylinderGeomContainer>(topNode, geonode.str().c_str());
87  if (!geo)
88  {
89  geo = new PHG4CylinderGeomContainer();
90  PHIODataNode<PHObject> *newNode = new PHIODataNode<PHObject>(geo, geonode.str().c_str(), "PHObject");
91  runNode->addNode(newNode);
92  }
93  PHG4CylinderGeom *mygeom = new PHG4CylinderGeomv1(GetParams()->get_double_param("radius"), GetParams()->get_double_param("place_z") - detlength / 2., GetParams()->get_double_param("place_z") + detlength / 2., GetParams()->get_double_param("thickness"));
94  geo->AddLayerGeom(GetLayer(), mygeom);
95  steppingAction_ = new PHG4CylinderSteppingAction(detector_, GetParams());
96  }
97  if (GetParams()->get_int_param("blackhole"))
98  {
99  steppingAction_ = new PHG4CylinderSteppingAction(detector_, GetParams());
100  }
101  return 0;
102 }
103 
104 //_______________________________________________________________________
106 {
107  // pass top node to stepping action so that it gets
108  // relevant nodes needed internally
109  if (steppingAction_)
110  {
111  steppingAction_->SetInterfacePointers(topNode);
112  }
113  return 0;
114 }
115 
116 void PHG4CylinderSubsystem::SetDefaultParameters()
117 {
118  set_default_double_param("length", 100);
119  set_default_double_param("rot_x", 0.);
120  set_default_double_param("rot_y", 0.);
121  set_default_double_param("rot_z", 0.);
122  set_default_double_param("place_x", 0.);
123  set_default_double_param("place_y", 0.);
124  set_default_double_param("place_z", 0.);
125  set_default_double_param("radius", 100);
126  set_default_double_param("steplimits", NAN);
127  set_default_double_param("thickness", 100);
128  set_default_double_param("tmin", NAN);
129  set_default_double_param("tmax", NAN);
130 
131  set_default_int_param("lengthviarapidity", 1);
132  set_default_int_param("lightyield", 0);
133  set_default_int_param("use_g4steps", 0);
134 
135  set_default_string_param("material", "G4_Galactic");
136 }
137 
138 PHG4Detector *
140 {
141  return detector_;
142 }
143 
144 void PHG4CylinderSubsystem::Print(const string &what) const
145 {
146  cout << Name() << " Parameters: " << endl;
147  if (!BeginRunExecuted())
148  {
149  cout << "Need to execute BeginRun() before parameter printout is meaningful" << endl;
150  cout << "To do so either run one or more events or on the command line execute: " << endl;
151  cout << "Fun4AllServer *se = Fun4AllServer::instance();" << endl;
152  cout << "PHG4Reco *g4 = (PHG4Reco *) se->getSubsysReco(\"PHG4RECO\");" << endl;
153  cout << "g4->InitRun(se->topNode());" << endl;
154  cout << "PHG4CylinderSubsystem *cyl = (PHG4CylinderSubsystem *) g4->getSubsystem(\"" << Name() << "\");" << endl;
155  cout << "cyl->Print()" << endl;
156  return;
157  }
158  GetParams()->Print();
159  if (steppingAction_)
160  {
161  steppingAction_->Print(what);
162  }
163  return;
164 }
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
PHBoolean addNode(PHNode *)
void SuperDetector(const std::string &name)
int AddLayerGeom(const int i, PHG4CylinderGeom *mygeom)
int InitRunSubsystem(PHCompositeNode *)
init runwise stuff
PHG4CylinderSubsystem(const std::string &name="CYLINDER", const int layer=0)
constructor
PHG4Detector * GetDetector(void) const
accessors (reimplemented)
void Print(const std::string &what="ALL") const
Print info (from SubsysReco)
int process_event(PHCompositeNode *)
event processing
const std::string SuperDetector() const
void set_default_double_param(const std::string &name, const double dval)
void set_default_string_param(const std::string &name, const std::string &sval)
double get_double_param(const std::string &name) const
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 OverlapCheck(const bool chk=true)
Definition: PHG4Detector.h:53
void AddLayer(const unsigned int ilayer)
virtual void Print(const std::string &what) const
virtual void SetInterfacePointers(PHCompositeNode *)
static double GetLengthForRapidityCoverage(const double radius, const double eta)
Definition: PHG4Utils.cc:12
PHNode * findFirst(const std::string &, const std::string &)
double get_double_param(const std::string &name) const
void set_double_param(const std::string &name, const double dval)
Definition: PHParameters.cc:95
void Print() const