14 _parent_particle_id(0),
24 for (
int i = 0; i < 3; ++i) _pos[i] = NAN;
26 for (
int j = 0; j < 3; ++j) {
27 for (
int i = j; i < 3; ++i) {
34 os <<
"---PHG4Showerv1-------------------------------" << endl;
35 os <<
"id: " <<
get_id() << endl;
38 os <<
"x: " <<
get_x() << endl;
39 os <<
"y: " <<
get_y() << endl;
40 os <<
"z: " <<
get_z() << endl;
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;
63 os <<
"G4Particle IDs" << endl;
64 for (std::set<int>::const_iterator iter = _g4particle_ids.begin();
65 iter != _g4particle_ids.end(); ++iter) {
70 os <<
"G4Hit IDs" << endl;
71 for (std::map<
int, std::set<PHG4HitDefs::keytype> >::const_iterator iter =
73 iter != _g4hit_ids.end(); ++iter) {
74 for (std::set<PHG4HitDefs::keytype>::const_iterator jter =
76 jter != iter->second.end(); ++jter) {
82 os <<
"-----------------------------------------------" << endl;
90 for (
int i = 0; i < 3; ++i) {
94 for (
int j = 0; j < 3; ++j) {
95 for (
int i = j; i < 3; ++i) {
104 _covar[covar_index(i, j)] = value;
109 return _covar[covar_index(i, j)];
112 unsigned int PHG4Showerv1::covar_index(
unsigned int i,
unsigned int j)
const {
115 return i + 1 + (j + 1) * (j) / 2 - 1;
119 std::map<int, unsigned int>::const_iterator citer =
121 if (citer == _nhits.end())
123 return citer->second;
127 std::map<int, float>::const_iterator citer =
129 if (citer == _edep.end())
131 return citer->second;
135 std::map<int, float>::const_iterator citer =
137 if (citer == _eion.end())
139 return citer->second;
143 std::map<int, float>::const_iterator citer =
144 _light_yield.find(volume);
145 if (citer == _light_yield.end())
147 return citer->second;
151 std::map<int, float>::const_iterator citer =
152 _eh_ratio.find(volume);
153 if (citer == _eh_ratio.end())
155 return citer->second;
int isValid() const
isValid returns non zero if object contains vailid data
int get_parent_particle_id() const
int get_parent_shower_id() const
float get_light_yield(int volume) const
float get_edep(int volume) const
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
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)