Class Reference for E1039 Core & Analysis Software
PHG4Showerv1.cc
Go to the documentation of this file.
1 #include "PHG4Showerv1.h"
2 
3 #include "PHG4HitDefs.h"
4 
5 #include <cmath>
6 #include <iostream>
7 
8 using namespace std;
9 
11 
13  : _id(0xFFFFFFFF),
14  _parent_particle_id(0),
15  _parent_shower_id(0),
16  _pos(),
17  _covar(),
18  _edep(),
19  _eion(),
20  _light_yield(),
21  _eh_ratio(),
22  _g4particle_ids(),
23  _g4hit_ids() {
24  for (int i = 0; i < 3; ++i) _pos[i] = NAN;
25 
26  for (int j = 0; j < 3; ++j) {
27  for (int i = j; i < 3; ++i) {
28  set_covar(i, j, NAN);
29  }
30  }
31 }
32 
33 void PHG4Showerv1::identify(ostream &os) const {
34  os << "---PHG4Showerv1-------------------------------" << endl;
35  os << "id: " << get_id() << endl;
36  os << "parent_particle_id: " << get_parent_particle_id() << endl;
37  os << "parent_shower_id: " << get_parent_shower_id() << endl;
38  os << "x: " << get_x() << endl;
39  os << "y: " << get_y() << endl;
40  os << "z: " << get_z() << endl;
41 
42  os << " ( ";
43  os << get_covar(0, 0) << " , ";
44  os << get_covar(0, 1) << " , ";
45  os << get_covar(0, 2) << " )" << endl;
46  os << " covar = ( ";
47  os << get_covar(1, 0) << " , ";
48  os << get_covar(1, 1) << " , ";
49  os << get_covar(1, 2) << " )" << endl;
50  os << " ( ";
51  os << get_covar(2, 0) << " , ";
52  os << get_covar(2, 1) << " , ";
53  os << get_covar(2, 2) << " )" << endl;
54 
55  os << "VOLUME ID : edep eion light_yield" << endl;
56  for (std::map<int, float>::const_iterator iter = _edep.begin();
57  iter != _edep.end(); ++iter) {
58  int volid = iter->first;
59  os << volid << " : " << get_edep(volid) << " " << get_eion(volid) << " "
60  << get_light_yield(volid) << endl;
61  }
62 
63  os << "G4Particle IDs" << endl;
64  for (std::set<int>::const_iterator iter = _g4particle_ids.begin();
65  iter != _g4particle_ids.end(); ++iter) {
66  os << *iter << " ";
67  }
68  os << endl;
69 
70  os << "G4Hit IDs" << endl;
71  for (std::map<int, std::set<PHG4HitDefs::keytype> >::const_iterator iter =
72  _g4hit_ids.begin();
73  iter != _g4hit_ids.end(); ++iter) {
74  for (std::set<PHG4HitDefs::keytype>::const_iterator jter =
75  iter->second.begin();
76  jter != iter->second.end(); ++jter) {
77  os << *jter << " ";
78  }
79  }
80  os << endl;
81 
82  os << "-----------------------------------------------" << endl;
83 
84  return;
85 }
86 
87 int PHG4Showerv1::isValid() const {
88  if (_id == 0)
89  return 0;
90  for (int i = 0; i < 3; ++i) {
91  if (isnan(_pos[i]))
92  return 0;
93  }
94  for (int j = 0; j < 3; ++j) {
95  for (int i = j; i < 3; ++i) {
96  if (isnan(get_covar(i, j)))
97  return 0;
98  }
99  }
100  return 1;
101 }
102 
103 void PHG4Showerv1::set_covar(unsigned int i, unsigned int j, float value) {
104  _covar[covar_index(i, j)] = value;
105  return;
106 }
107 
108 float PHG4Showerv1::get_covar(unsigned int i, unsigned int j) const {
109  return _covar[covar_index(i, j)];
110 }
111 
112 unsigned int PHG4Showerv1::covar_index(unsigned int i, unsigned int j) const {
113  if (i > j)
114  std::swap(i, j);
115  return i + 1 + (j + 1) * (j) / 2 - 1;
116 }
117 
118 unsigned int PHG4Showerv1::get_nhits(int volume) const {
119  std::map<int, unsigned int>::const_iterator citer =
120  _nhits.find(volume);
121  if (citer == _nhits.end())
122  return 0;
123  return citer->second;
124 }
125 
126 float PHG4Showerv1::get_edep(int volume) const {
127  std::map<int, float>::const_iterator citer =
128  _edep.find(volume);
129  if (citer == _edep.end())
130  return 0.0;
131  return citer->second;
132 }
133 
134 float PHG4Showerv1::get_eion(int volume) const {
135  std::map<int, float>::const_iterator citer =
136  _eion.find(volume);
137  if (citer == _eion.end())
138  return 0.0;
139  return citer->second;
140 }
141 
142 float PHG4Showerv1::get_light_yield(int volume) const {
143  std::map<int, float>::const_iterator citer =
144  _light_yield.find(volume);
145  if (citer == _light_yield.end())
146  return 0.0;
147  return citer->second;
148 }
149 
150 float PHG4Showerv1::get_eh_ratio(int volume) const {
151  std::map<int, float>::const_iterator citer =
152  _eh_ratio.find(volume);
153  if (citer == _eh_ratio.end())
154  return 0.0;
155  return citer->second;
156 }
ClassImp(PHG4Showerv1)
int isValid() const
isValid returns non zero if object contains vailid data
Definition: PHG4Showerv1.cc:87
int get_id() const
Definition: PHG4Showerv1.h:29
int get_parent_particle_id() const
Definition: PHG4Showerv1.h:32
int get_parent_shower_id() const
Definition: PHG4Showerv1.h:35
float get_y() const
Definition: PHG4Showerv1.h:41
float get_x() const
Definition: PHG4Showerv1.h:38
float get_light_yield(int volume) const
float get_edep(int volume) const
float get_z() const
Definition: PHG4Showerv1.h:44
unsigned int get_nhits(int volume) const
float get_covar(unsigned int i, unsigned int j) const
float get_eh_ratio(int volume) const
void identify(std::ostream &os=std::cout) const
Definition: PHG4Showerv1.cc:33
void set_covar(unsigned int i, unsigned int j, float entry)
float get_eion(int volume) const
void swap(array< T, N > &x, array< T, N > &y)
Definition: array.hpp:366