Class Reference for E1039 Core & Analysis Software
PHG4TruthInfoContainer.cc
Go to the documentation of this file.
2 
3 #include "PHG4Particle.h"
4 #include "PHG4Shower.h"
5 #include "PHG4VtxPointv1.h"
6 
7 #include <phool/phool.h>
8 
9 #include <boost/foreach.hpp>
10 #include <boost/tuple/tuple.hpp>
11 
12 #include <algorithm>
13 #include <stdexcept>
14 #include <limits>
15 #include <cstdlib>
16 
17 using namespace std;
18 
20  particlemap(),
21  vtxmap(),
22  particle_embed_flags(),
23  vertex_embed_flags() {
24 }
25 
27 
29 
30  for (Iterator iter = particlemap.begin(); iter != particlemap.end(); ++iter) {
31  delete iter->second;
32  }
33  particlemap.clear();
34 
35  for (VtxIterator iter = vtxmap.begin(); iter != vtxmap.end(); ++iter) {
36  delete iter->second;
37  }
38  vtxmap.clear();
39 
40  for (ShowerIterator iter = showermap.begin(); iter != showermap.end(); ++iter) {
41  delete iter->second;
42  }
43  showermap.clear();
44 
45  particle_embed_flags.clear();
46  vertex_embed_flags.clear();
47 
48  return;
49 }
50 
51 void PHG4TruthInfoContainer::identify(ostream& os) const {
52 
53  cout << "---particlemap--------------------------" << endl;
54  for (ConstIterator iter = particlemap.begin(); iter != particlemap.end(); ++iter) {
55  cout << "particle id " << iter->first << endl;
56  (iter->second)->identify();
57  }
58 
59  cout << "---vtxmap-------------------------------" << endl;
60  for (ConstVtxIterator vter = vtxmap.begin(); vter != vtxmap.end(); ++vter) {
61  cout << "vtx id: " << vter ->first << endl;
62  (vter ->second)->identify();
63  }
64 
65  cout << "---showermap-------------------------------" << endl;
66  for (ConstShowerIterator ster = showermap.begin(); ster != showermap.end(); ++ster) {
67  cout << "shower id: " << ster ->first << endl;
68  (ster ->second)->identify();
69  }
70 
71  cout << "---list of embeded track flags-------------------" << endl;
72  for (std::map<int,int>::const_iterator eter = particle_embed_flags.begin();
73  eter != particle_embed_flags.end();
74  ++eter) {
75  cout << "embeded track id: " << eter->first
76  << " flag: " << eter->second << endl;
77  }
78 
79  cout << "---list of embeded vtx flags-------------------" << endl;
80  for (std::map<int,int>::const_iterator eter = vertex_embed_flags.begin();
81  eter != vertex_embed_flags.end();
82  ++eter) {
83  cout << "embeded vertex id: " << eter->first
84  << " flag: " << eter->second << endl;
85  }
86 
87  cout << "---primary vertex-------------------" << endl;
88  cout <<"Vertex "<<GetPrimaryVertexIndex()<<" is identified as the primary vertex"<<endl;
89 
90  return;
91 }
92 
94 PHG4TruthInfoContainer::AddParticle(const int trackid, PHG4Particle *newparticle) {
95 
96  int key = trackid;
97  ConstIterator it;
98  bool added = false;
99  boost::tie(it,added) = particlemap.insert(std::make_pair(key,newparticle));
100  if ( added ) return it;
101 
102  cerr << "PHG4TruthInfoContainer::AddParticle"
103  << " - Attempt to add particle with existing trackid "
104  << trackid <<": "<<newparticle ->get_name()<<" id "
105  << newparticle->get_track_id()
106  <<", p = ["<<newparticle->get_px()
107  <<", "<<newparticle->get_py()
108  <<", "<<newparticle->get_pz()<<"], "
109  <<" parent ID "<<newparticle->get_parent_id()
110  << std::endl;
111  return particlemap.end();
112 }
113 
115 
116  int key = trackid;
117  Iterator it = particlemap.find(key);
118  if ( it != particlemap.end() ) return it->second;
119  return NULL;
120 }
121 
123 
124  if (trackid <= 0) return NULL;
125  Iterator it = particlemap.find(trackid);
126  if ( it != particlemap.end() ) return it->second;
127  return NULL;
128 }
129 
131 
132  int key = vtxid;
133  VtxIterator it = vtxmap.find(key);
134  if ( it != vtxmap.end() ) return it->second;
135  return NULL;
136 }
137 
139 
140  if (vtxid <= 0) return NULL;
141  VtxIterator it = vtxmap.find(vtxid);
142  if ( it != vtxmap.end() ) return it->second;
143  return NULL;
144 }
145 
147 
148  int key = showerid;
149  ShowerIterator it = showermap.find(key);
150  if ( it != showermap.end() ) return it->second;
151  return NULL;
152 }
153 
155 
156  if (showerid <= 0) return NULL;
157  ShowerIterator it = showermap.find(showerid);
158  if ( it != showermap.end() ) return it->second;
159  return NULL;
160 }
161 
164 
165  int key = id;
166  ConstVtxIterator it;
167  bool added = false;
168 
169  if (vtxmap.find(id) != vtxmap.end()) {
170  cout << "trying to add existing vtx " << id
171  << " vtx pos: " << endl;
172  (vtxmap.find(id)->second)->identify();
173  identify();
174  }
175 
176  boost::tie(it,added) = vtxmap.insert(std::make_pair(key,newvtx));
177  if ( added ) {
178  newvtx->set_id(key);
179  return it;
180  }
181 
182  cerr << "PHG4TruthInfoContainer::AddVertex"
183  << " - Attempt to add vertex with existing id " << id << std::endl;
184  return vtxmap.end();
185 }
186 
189 
190  int key = id;
192  bool added = false;
193 
194  if (showermap.find(id) != showermap.end()) {
195  cout << "trying to add existing shower " << id
196  << " shower pos: " << endl;
197  (showermap.find(id)->second)->identify();
198  identify();
199  }
200 
201  boost::tie(it,added) = showermap.insert(std::make_pair(key,newshower));
202  if ( added ) {
203  newshower->set_id(key);
204  return it;
205  }
206 
207  cerr << "PHG4TruthInfoContainer::AddShower"
208  << " - Attempt to add shower with existing id " << id << std::endl;
209  return showermap.end();
210 }
211 
213 
214  int key = 0;
215  if (!particlemap.empty()) key = particlemap.rbegin()->first;
216  if (key < 0) key = 0;
217  return key;
218 }
219 
221 
222  int key = 0;
223  if (!particlemap.empty()) key = particlemap.begin()->first;
224  if (key > 0) key = 0;
225  return key;
226 }
227 
229 
230  int key = 0;
231  if (!vtxmap.empty()) key = vtxmap.rbegin()->first;
232  if (key < 0) key = 0;
233  return key;
234 }
235 
237 
238  int key = 0;
239  if (!vtxmap.empty()) key = vtxmap.begin()->first;
240  if (key > 0) key = 0;
241  return key;
242 }
243 
245 
246  int key = 0;
247  if (!showermap.empty()) key = showermap.rbegin()->first;
248  if (key < 0) key = 0;
249  return key;
250 }
251 
253 
254  int key = 0;
255  if (!showermap.empty()) key = showermap.begin()->first;
256  if (key > 0) key = 0;
257  return key;
258 }
259 
261 
262  delete piter->second;
263  particlemap.erase(piter);
264  return;
265 }
266 
268 
269  delete viter->second;
270  vtxmap.erase(viter);
271  return;
272 }
273 
275 
276  delete siter->second;
277  showermap.erase(siter);
278  return;
279 }
280 
281 int PHG4TruthInfoContainer::isEmbeded(const int trackid) const {
282 
283  std::map<int,int>::const_iterator iter = particle_embed_flags.find(trackid);
284  if (iter == particle_embed_flags.end()) {
285  return 0;
286  }
287 
288  return iter->second;
289 }
290 
291 int PHG4TruthInfoContainer::isEmbededVtx(const int vtxid) const {
292 
293  std::map<int,int>::const_iterator iter = vertex_embed_flags.find(vtxid);
294  if (iter == vertex_embed_flags.end()) {
295  return 0;
296  }
297 
298  return iter->second;
299 }
300 
301 bool
303 {
304  return (v->get_id() > 0);
305 }
306 
307 bool
309 {
310  return (p->get_track_id() > 0);
311 }
312 
314 {
316 
317  int highest_embedding_ID = numeric_limits<int>::min();
318  int vtx_id_for_highest_embedding_ID = 0;
319 
320  for (auto iter = vrange.first; iter != vrange.second; ++iter)
321  {
322  // cout <<"PHG4TruthInfoContainer::GetPrimaryVertexIndex - vertex ID "<<iter->first<<" embedding ID "<< g4truth->isEmbededVtx(iter->first) <<": "
323  // ; iter->second->identify();
324  const int embedding_ID = isEmbededVtx(iter->first);
325 
326  if (embedding_ID >= highest_embedding_ID)
327  {
328  highest_embedding_ID = embedding_ID;
329  vtx_id_for_highest_embedding_ID = iter->first;
330  }
331  }
332 
333  if (highest_embedding_ID == numeric_limits<int>::min())
334  {
335  cout << "PHG4TruthInfoContainer::GetPrimaryVertexIndex - "
336  << "WARNING: no valid primary vertex. Return an invalid ID of 0"
337  << endl;
338  return 0;
339  }
340 
341  return vtx_id_for_highest_embedding_ID;
342 }
#define NULL
Definition: Pdb.h:9
virtual int get_track_id() const
Definition: PHG4Particle.h:21
virtual int get_parent_id() const
Definition: PHG4Particle.h:23
virtual double get_px() const
Definition: PHG4Particle.h:16
virtual std::string get_name() const
Definition: PHG4Particle.h:15
virtual double get_py() const
Definition: PHG4Particle.h:17
virtual double get_pz() const
Definition: PHG4Particle.h:18
virtual void set_id(int id)
Definition: PHG4Shower.h:40
bool is_primary(const PHG4Particle *p) const
VtxMap::const_iterator ConstVtxIterator
void delete_shower(ShowerIterator piter)
ConstIterator AddParticle(const int particleid, PHG4Particle *newparticle)
Add a particle that the user has created.
int isEmbeded(const int trackid) const
void identify(std::ostream &os=std::cout) const
PHG4VtxPoint * GetVtx(const int vtxid)
ConstShowerIterator AddShower(const int showerid, PHG4Shower *newshower)
Add a shower that the user has created.
void delete_particle(Iterator piter)
Map::const_iterator ConstIterator
int isEmbededVtx(const int vtxid) const
PHG4Particle * GetPrimaryParticle(const int particleid)
ShowerMap::const_iterator ConstShowerIterator
PHG4Particle * GetParticle(const int particleid)
PHG4Shower * GetShower(const int showerid)
ConstVtxIterator AddVertex(const int vtxid, PHG4VtxPoint *vertex)
Add a vertex and return an iterator to the user.
PHG4Shower * GetPrimaryShower(const int showerid)
void delete_vtx(VtxIterator viter)
PHG4VtxPoint * GetPrimaryVtx(const int vtxid)
ShowerMap::iterator ShowerIterator
bool is_primary_vtx(const PHG4VtxPoint *v) const
std::pair< ConstVtxIterator, ConstVtxIterator > ConstVtxRange
virtual int get_id() const
Definition: PHG4VtxPoint.h:24
virtual void set_id(const int i)
Definition: PHG4VtxPoint.h:18