Class Reference for E1039 Core & Analysis Software
PHG4GenHit.cc
Go to the documentation of this file.
1 #include "PHG4GenHit.h"
3 #include "PHG4CylinderGeom.h"
4 
6 #include <g4main/PHG4Hit.h>
7 #include <g4main/PHG4Hitv1.h>
9 
10 #include <phool/getClass.h>
11 
12 #include <cmath>
13 
14 using namespace std;
15 
16 PHG4GenHit::PHG4GenHit(const string &name):
17  SubsysReco(name),
18  phi(NAN),
19  theta(NAN),
20  eloss(NAN),
21  layer(-9999)
22 {}
23 
24 int
26 {
27  string hitnodename = "G4HIT_" + detector;
28  string geonodename = "CYLINDERGEOM_" + detector;
29  PHG4CylinderGeomContainer *geo = findNode::getClass<PHG4CylinderGeomContainer>(topNode , geonodename.c_str());
30  if (! geo)
31  {
32  cout << "cannot find geo node " << geonodename << endl;
34  }
35  PHG4HitContainer *hits_ = findNode::getClass<PHG4HitContainer>( topNode , hitnodename.c_str());
36  if (! hits_)
37  {
38  cout << "cannot find hit node " << hitnodename << endl;
40  }
41  PHG4CylinderGeom *mygeom = geo->GetLayerGeom(layer);
42  double inner_radius = mygeom->get_radius();
43  double outer_radius = inner_radius + mygeom->get_thickness();
44  PHG4Hit *hit = new PHG4Hitv1();
45  hit->set_layer((unsigned int)layer);
46  double x0 = inner_radius * cos(phi * M_PI / 180.);
47  double y0 = inner_radius * sin(phi * M_PI / 180.);
48  double z0 = inner_radius * cos(theta * M_PI / 180.);
49  double x1 = outer_radius * cos(phi * M_PI / 180.);
50  double y1 = outer_radius * sin(phi * M_PI / 180.);
51  double z1 = outer_radius * cos(theta * M_PI / 180.);
52  hit->set_x(0, x0);
53  hit->set_y(0, y0);
54  hit->set_z(0, z0);
55  hit->set_x(1, x1);
56  hit->set_y(1, y1);
57  hit->set_z(1, z1);
58  hit->set_edep(eloss);
59  hit->set_trkid(-1);
60  hits_->AddHit(layer, hit);
61  if (verbosity > 0)
62  {
63  cout << "phi " << phi << " inner rad: " << inner_radius
64  << ", outer rad: " << outer_radius
65  << " x0/y0/z0: " << x0 << "/" << y0 << "/" << z0
66  << " x1/y1/z1: " << x1 << "/" << y1 << "/" << z1
67  << " edep: " << eloss
68  << endl;
69  }
71 }
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
PHG4CylinderGeom * GetLayerGeom(const int i)
virtual double get_thickness() const
virtual double get_radius() const
std::string detector
Definition: PHG4GenHit.h:25
double phi
Definition: PHG4GenHit.h:21
PHG4GenHit(const std::string &name="PHG4GenHit")
Definition: PHG4GenHit.cc:16
double theta
Definition: PHG4GenHit.h:22
int process_event(PHCompositeNode *topNode)
Definition: PHG4GenHit.cc:25
double eloss
Definition: PHG4GenHit.h:23
ConstIterator AddHit(PHG4Hit *newhit)
virtual void set_layer(const unsigned int i)
Definition: PHG4Hit.h:66
virtual void set_y(const int i, const float f)
Definition: PHG4Hit.h:53
virtual void set_z(const int i, const float f)
Definition: PHG4Hit.h:54
virtual void set_x(const int i, const float f)
Definition: PHG4Hit.h:52
virtual void set_trkid(const int i)
Definition: PHG4Hit.h:71
virtual void set_edep(const float f)
Definition: PHG4Hit.h:62