Class Reference for E1039 Core & Analysis Software
PHG4CylinderCellv1.cc
Go to the documentation of this file.
1 #include "PHG4CylinderCellv1.h"
2 #include "PHG4CylinderCellDefs.h"
3 
4 using namespace std;
5 
7  layer(0xFFFFFFFF),
8  cellid(0xFFFFFFFF),
9  binz(-1),
10  binphi(-1),
11  edeps(), showeredeps(), light_yield(0)
12 {}
13 
14 void
15 PHG4CylinderCellv1::add_edep(const PHG4HitDefs::keytype g4hitid, const float edep)
16 {
17  if (edeps.find(g4hitid) == edeps.end())
18  {
19  edeps[g4hitid] = edep;
20  }
21  else
22  {
23  edeps[g4hitid]+= edep;
24  }
25 }
26 
27 void
28 PHG4CylinderCellv1::add_edep(const PHG4HitDefs::keytype g4hitid, const float edep, const float ly)
29 {
30  add_edep(g4hitid, edep);
31  light_yield += ly;
32 }
33 
34 void
35 PHG4CylinderCellv1::add_shower_edep(const int g4showerid, const float edep)
36 {
37  if (showeredeps.find(g4showerid) == showeredeps.end())
38  {
39  showeredeps[g4showerid] = edep;
40  }
41  else
42  {
43  showeredeps[g4showerid]+= edep;
44  }
45 }
46 
48 
49  double esum = 0.0;
50  EdepConstIterator iter;
51  for (iter = edeps.begin(); iter != edeps.end(); ++iter) {
52  esum += iter->second;
53  }
54  return esum;
55 }
56 
57 void
58 PHG4CylinderCellv1::identify(std::ostream& os) const
59 {
60  os << "PHG4CylinderCellv1: #" << cellid << " ";
61  os << "(layer,binz,binphi,e) = (";
62  os << layer << ",";
63  os << binz << ",";
64  os << binphi << ",";
65  os << get_edep();
66  os << ")";
67  os << endl;
68 }
EdepMap::const_iterator EdepConstIterator
Definition: PHG4Cell.h:17
double get_edep() const
PHG4CylinderCellDefs::keytype cellid
void identify(std::ostream &os=std::cout) const
void add_shower_edep(const int g4showerid, const float edep)
ShowerEdepMap showeredeps
void add_edep(const PHG4HitDefs::keytype g4hitid, const float edep)
unsigned int keytype
Definition: PHG4HitDefs.h:8