Class Reference for E1039 Core & Analysis Software
PHG4CollimatorSubsystem.cc
Go to the documentation of this file.
4 #include "PHG4BlockGeomv1.h"
6 
7 #include <phparameter/PHParameters.h>
8 
10 #include <g4main/PHG4Utils.h>
11 
12 #include <phool/getClass.h>
13 
14 #include <Geant4/globals.hh>
15 
16 #include <sstream>
17 
18 using namespace std;
19 
20 //_______________________________________________________________________
21 PHG4CollimatorSubsystem::PHG4CollimatorSubsystem(const std::string &name, const int lyr)
22  : PHG4DetectorSubsystem(name, lyr)
23  , _detector(nullptr)
24  , _steppingAction(nullptr)
25 {
27 }
28 
29 //_______________________________________________________________________
31 {
32  PHNodeIterator iter(topNode);
33  PHCompositeNode *dstNode = dynamic_cast<PHCompositeNode *>(iter.findFirst("PHCompositeNode", "DST"));
34 
35  // create detector
36  _detector = new PHG4CollimatorDetector(topNode, GetParams(), Name(), GetLayer());
37  _detector->SuperDetector(SuperDetector());
38  _detector->OverlapCheck(CheckOverlap());
39  if (GetParams()->get_int_param("active"))
40  {
41  ostringstream nodename;
42  ostringstream geonode;
43  if (SuperDetector() != "NONE")
44  {
45  nodename << "G4HIT_" << SuperDetector();
46  geonode << "BLOCKGEOM_" << SuperDetector();
47  }
48  else
49  {
50  nodename << "G4HIT_" << Name();
51  geonode << "BLOCKGEOM_" << Name();
52  }
53 
54  // create hit list
55  PHG4HitContainer *block_hits = findNode::getClass<PHG4HitContainer>(topNode, nodename.str().c_str());
56  if (!block_hits)
57  {
58  dstNode->addNode(new PHIODataNode<PHObject>(block_hits = new PHG4HitContainer(nodename.str()), nodename.str().c_str(), "PHObject"));
59  }
60 
61  block_hits->AddLayer(GetLayer());
62  PHG4BlockGeomContainer *geocont = findNode::getClass<PHG4BlockGeomContainer>(topNode,
63  geonode.str().c_str());
64  if (!geocont)
65  {
66  geocont = new PHG4BlockGeomContainer();
67  PHCompositeNode *runNode = dynamic_cast<PHCompositeNode *>(iter.findFirst("PHCompositeNode", "RUN"));
68  PHIODataNode<PHObject> *newNode = new PHIODataNode<PHObject>(geocont, geonode.str().c_str(), "PHObject");
69  runNode->addNode(newNode);
70  }
71 
73  GetParams()->get_double_param("size_x"),
74  GetParams()->get_double_param("size_y"),
75  GetParams()->get_double_param("size_z"),
76  GetParams()->get_double_param("place_x"),
77  GetParams()->get_double_param("place_y"),
78  GetParams()->get_double_param("place_z"),
79  GetParams()->get_double_param("rot_z"));
80  geocont->AddLayerGeom(GetLayer(), geom);
81 
82  _steppingAction = new PHG4CollimatorSteppingAction(_detector, GetParams());
83  }
84  else if (GetParams()->get_int_param("blackhole"))
85  {
86  _steppingAction = new PHG4CollimatorSteppingAction(_detector, GetParams());
87  }
88 
89  return 0;
90 }
91 
92 //_______________________________________________________________________
94 {
95  // pass top node to stepping action so that it gets
96  // relevant nodes needed internally
97  if (_steppingAction)
98  {
99  _steppingAction->SetInterfacePointers(topNode);
100  }
101  return 0;
102 }
103 
104 //_______________________________________________________________________
105 PHG4Detector *
107 {
108  return _detector;
109 }
110 
111 void PHG4CollimatorSubsystem::SetDefaultParameters()
112 {
113  set_default_double_param("place_x", 0.);
114  set_default_double_param("place_y", 0.);
115  set_default_double_param("place_z", 0.);
116  set_default_double_param("rot_x", 0.);
117  set_default_double_param("rot_y", 0.);
118  set_default_double_param("rot_z", 0.);
119  set_default_double_param("steplimits", NAN);
120  set_default_double_param("size_x", 10.);
121  set_default_double_param("size_y", 10.);
122  set_default_double_param("size_z", 10.);
123 
124  set_default_int_param("use_g4steps", 0);
125 
126  set_default_string_param("material", "G4_Galactic");
127 }
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
PHBoolean addNode(PHNode *)
int AddLayerGeom(const int i, PHG4BlockGeom *mygeom)
void SuperDetector(const std::string &name)
PHG4Detector * GetDetector(void) const
accessors (reimplemented)
PHG4CollimatorSubsystem(const std::string &name="BLOCK", const int layer=0)
constructor
int process_event(PHCompositeNode *)
event processing
int InitRunSubsystem(PHCompositeNode *)
InitRunSubsystem.
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 SetInterfacePointers(PHCompositeNode *)
PHNode * findFirst(const std::string &, const std::string &)