Class Reference for E1039 Core & Analysis Software
PHG4Cellv1.cc
Go to the documentation of this file.
1 #include "PHG4Cellv1.h"
2 
3 #include <phool/phool.h>
4 
5 #include <iostream>
6 
7 using namespace std;
8 
10  cellid(~0x0)
11 {}
12 
14  cellid(g4cellid)
15 {}
16 
18 {
19  hitedeps.clear();
20  showeredeps.clear();
21  prop_map.clear();
22  return;
23 }
24 
25 void
26 PHG4Cellv1::add_edep(const PHG4HitDefs::keytype g4hitid, const float edep)
27 {
28  hitedeps[g4hitid] = edep;
29  return;
30 }
31 
32 void
33 PHG4Cellv1::add_shower_edep(const int g4showerid, const float edep)
34 {
35  showeredeps[g4showerid] += edep;
36  return;
37 }
38 
39 bool
41 {
42  return PHG4CellDefs::has_binning(cellid, binning);
43 }
44 
45 short int
47 {
49 }
50 
51 bool
52 PHG4Cellv1::has_property(const PROPERTY prop_id) const
53 {
54  prop_map_t::const_iterator i = prop_map.find(prop_id);
55  return i!=prop_map.end();
56 }
57 
58 float
60 {
61  if (!check_property(prop_id,type_float))
62  {
63  pair<const string,PROPERTY_TYPE> property_info =get_property_info(prop_id);
64  cout << PHWHERE << " Property " << property_info.first << " with id "
65  << prop_id << " is of type " << get_property_type(property_info.second)
66  << " not " << get_property_type(type_float) << endl;
67  exit(1);
68  }
69  prop_map_t::const_iterator i = prop_map.find(prop_id);
70 
71  if (i!=prop_map.end()) return u_property(i->second).fdata;
72 
73  return NAN ;
74 }
75 
76 int
78 {
79  if (!check_property(prop_id,type_int))
80  {
81  pair<const string,PROPERTY_TYPE> property_info =get_property_info(prop_id);
82  cout << PHWHERE << " Property " << property_info.first << " with id "
83  << prop_id << " is of type " << get_property_type(property_info.second)
84  << " not " << get_property_type(type_int) << endl;
85  exit(1);
86  }
87  prop_map_t::const_iterator i = prop_map.find(prop_id);
88 
89  if (i!=prop_map.end()) return u_property(i->second).idata;
90 
91  return INT_MIN;
92 }
93 
94 unsigned int
96 {
97  if (!check_property(prop_id,type_uint))
98  {
99  pair<const string,PROPERTY_TYPE> property_info =get_property_info(prop_id);
100  cout << PHWHERE << " Property " << property_info.first << " with id "
101  << prop_id << " is of type " << get_property_type(property_info.second)
102  << " not " << get_property_type(type_uint) << endl;
103  exit(1);
104  }
105  prop_map_t::const_iterator i = prop_map.find(prop_id);
106 
107  if (i!=prop_map.end()) return u_property(i->second).uidata;
108 
109  return UINT_MAX ;
110 }
111 
112 void
113 PHG4Cellv1::add_property(const PROPERTY prop_id, const float value)
114 {
115  if (!check_property(prop_id,type_float))
116  {
117  pair<const string,PROPERTY_TYPE> property_info = get_property_info(prop_id);
118  cout << PHWHERE << " Property " << property_info.first << " with id "
119  << prop_id << " is of type " << get_property_type(property_info.second)
120  << " not " << get_property_type(type_float) << endl;
121  exit(1);
122  }
123  float val = value;
124  if (prop_map.find(prop_id) != prop_map.end())
125  {
126  val += get_property_float(prop_id);
127  }
128  prop_map[prop_id] = u_property(val).get_storage();
129 }
130 
131 void
132 PHG4Cellv1::add_property(const PROPERTY prop_id, const int value)
133 {
134  if (!check_property(prop_id,type_int))
135  {
136  pair<const string,PROPERTY_TYPE> property_info = get_property_info(prop_id);
137  cout << PHWHERE << " Property " << property_info.first << " with id "
138  << prop_id << " is of type " << get_property_type(property_info.second)
139  << " not " << get_property_type(type_int) << endl;
140  exit(1);
141  }
142  int val = value;
143  if (prop_map.find(prop_id) != prop_map.end())
144  {
145  val += get_property_int(prop_id);
146  }
147  prop_map[prop_id] += u_property(val).get_storage();
148 }
149 
150 void
151 PHG4Cellv1::add_property(const PROPERTY prop_id, const unsigned int value)
152 {
153  if (!check_property(prop_id,type_uint))
154  {
155  pair<const string,PROPERTY_TYPE> property_info = get_property_info(prop_id);
156  cout << PHWHERE << " Property " << property_info.first << " with id "
157  << prop_id << " is of type " << get_property_type(property_info.second)
158  << " not " << get_property_type(type_uint) << endl;
159  exit(1);
160  }
161  unsigned int val = value;
162  if (prop_map.find(prop_id) != prop_map.end())
163  {
164  val += get_property_uint(prop_id);
165  }
166  prop_map[prop_id] += u_property(val).get_storage();
167 }
168 
169 void
170 PHG4Cellv1::set_property(const PROPERTY prop_id, const float value)
171 {
172  if (!check_property(prop_id,type_float))
173  {
174  pair<const string,PROPERTY_TYPE> property_info = get_property_info(prop_id);
175  cout << PHWHERE << " Property " << property_info.first << " with id "
176  << prop_id << " is of type " << get_property_type(property_info.second)
177  << " not " << get_property_type(type_float) << endl;
178  exit(1);
179  }
180  prop_map[prop_id] = u_property(value).get_storage();
181 }
182 
183 void
184 PHG4Cellv1::set_property(const PROPERTY prop_id, const int value)
185 {
186  if (!check_property(prop_id,type_int))
187  {
188  pair<const string,PROPERTY_TYPE> property_info = get_property_info(prop_id);
189  cout << PHWHERE << " Property " << property_info.first << " with id "
190  << prop_id << " is of type " << get_property_type(property_info.second)
191  << " not " << get_property_type(type_int) << endl;
192  exit(1);
193  }
194  prop_map[prop_id] += u_property(value).get_storage();
195 }
196 
197 void
198 PHG4Cellv1::set_property(const PROPERTY prop_id, const unsigned int value)
199 {
200  if (!check_property(prop_id,type_uint))
201  {
202  pair<const string,PROPERTY_TYPE> property_info = get_property_info(prop_id);
203  cout << PHWHERE << " Property " << property_info.first << " with id "
204  << prop_id << " is of type " << get_property_type(property_info.second)
205  << " not " << get_property_type(type_uint) << endl;
206  exit(1);
207  }
208  prop_map[prop_id] += u_property(value).get_storage();
209 }
210 
211 unsigned int
213 {
214  prop_map_t::const_iterator iter = prop_map.find(prop_id);
215  if (iter != prop_map.end())
216  {
217  return iter->second;
218  }
219  return UINT_MAX;
220 }
221 
222 void
224 {
225  identify(cout);
226 }
227 
228 void
230 {
231  hitedeps.clear();
232  showeredeps.clear();
233  prop_map.clear();
234  return;
235 }
236 
237 void PHG4Cellv1::identify(std::ostream& os) const
238 {
239  os << "New PHG4Cellv1 0x" << hex << cellid << dec << endl;
240 
241  os <<"Associated to "<<hitedeps.size()<<" hits"<<endl;
242  for (const auto pair :hitedeps)
243  {
244  os <<"\t PHG4hit "<<pair.first<<" -> "<<pair.second<<" GeV"<<endl;
245  }
246 
247  os <<"Associated to "<<showeredeps.size()<<" showers"<<endl;
248  for (const auto pair :showeredeps)
249  {
250  os <<"\t Shower "<<pair.first<<" -> "<<pair.second<<" GeV"<<endl;
251  }
252 
253 // os <<"Contains to "<<trainOfDigits.size()<<" TPC digitization chain"<<endl;
254 
255  for (prop_map_t::const_iterator i = prop_map.begin(); i != prop_map.end(); ++i)
256  {
257  PROPERTY prop_id = static_cast<PROPERTY>(i->first);
258  pair<const string, PROPERTY_TYPE> property_info = get_property_info(prop_id);
259  os << "\t" << prop_id << ":\t" << property_info.first << " = \t";
260  switch (property_info.second)
261  {
262  case type_int:
263  os << get_property_int(prop_id);
264  break;
265  case type_uint:
266  os << get_property_uint(prop_id);
267  break;
268  case type_float:
269  os << get_property_float(prop_id);
270  break;
271  default:
272  os << " unknown type ";
273  }
274  os << endl;
275  }
276 }
static std::string get_property_type(const PROPERTY_TYPE prop_type)
Definition: PHG4Cell.cc:89
static std::pair< const std::string, PROPERTY_TYPE > get_property_info(PROPERTY prop_id)
Definition: PHG4Cell.cc:42
static bool check_property(const PROPERTY prop_id, const PROPERTY_TYPE prop_type)
Definition: PHG4Cell.cc:78
@ type_int
Definition: PHG4Cell.h:138
@ type_float
Definition: PHG4Cell.h:140
@ type_uint
Definition: PHG4Cell.h:139
virtual void Reset()
Definition: PHG4Cellv1.cc:229
unsigned int get_property_nocheck(const PROPERTY prop_id) const
Definition: PHG4Cellv1.cc:212
void add_property(const PROPERTY prop_id, const float value)
Definition: PHG4Cellv1.cc:113
virtual ~PHG4Cellv1()
Definition: PHG4Cellv1.cc:17
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4Cellv1.cc:237
void add_edep(const PHG4HitDefs::keytype g4hitid, const float edep)
Definition: PHG4Cellv1.cc:26
unsigned int get_property_uint(const PROPERTY prop_id) const
Definition: PHG4Cellv1.cc:95
void print() const
Definition: PHG4Cellv1.cc:223
prop_map_t prop_map
container for additional property
Definition: PHG4Cellv1.h:123
void add_shower_edep(const int g4showerid, const float edep)
Definition: PHG4Cellv1.cc:33
int get_property_int(const PROPERTY prop_id) const
Definition: PHG4Cellv1.cc:77
float get_property_float(const PROPERTY prop_id) const
Definition: PHG4Cellv1.cc:59
ShowerEdepMap showeredeps
Definition: PHG4Cellv1.h:100
EdepMap hitedeps
Definition: PHG4Cellv1.h:99
PHG4CellDefs::keytype cellid
Definition: PHG4Cellv1.h:98
bool has_binning(const PHG4CellDefs::CellBinning binning) const
Definition: PHG4Cellv1.cc:40
short int get_detid() const
Definition: PHG4Cellv1.cc:46
void set_property(const PROPERTY prop_id, const float value)
Definition: PHG4Cellv1.cc:170
bool has_property(const PROPERTY prop_id) const
Definition: PHG4Cellv1.cc:52
unsigned long long keytype
Definition: PHG4CellDefs.h:7
short int get_detid(const PHG4CellDefs::keytype key)
bool has_binning(PHG4CellDefs::keytype key, PHG4CellDefs::CellBinning binning)
unsigned int keytype
Definition: PHG4HitDefs.h:8
#define PHWHERE
Definition: phool.h:23
convert between 32bit inputs and storage type prop_storage_t
Definition: PHG4Cellv1.h:109
prop_storage_t get_storage() const
Definition: PHG4Cellv1.h:119