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