Class Reference for E1039 Core & Analysis Software
PHG4InEvent.cc
Go to the documentation of this file.
1 #include "PHG4InEvent.h"
2 #include "PHG4Particle.h"
3 #include "PHG4VtxPointv1.h"
4 
5 #include <phool/phool.h>
6 
7 #include <cstdlib>
8 
9 using namespace std;
10 
12 
14 {
15 
16  vtxlist.clear();
17  particlelist.clear();
18  return;
19 }
20 
21 int
22 PHG4InEvent::AddVtx(const int id, const PHG4VtxPoint &vtx)
23 {
24  PHG4VtxPoint *newvtx = new PHG4VtxPoint(vtx);
25  int iret = AddVtxCommon(newvtx);
26  return iret;
27 }
28 
29 int
30 PHG4InEvent::AddVtxHepMC(const int id, const double x, const double y, const double z, const double t0 = NAN)
31 {
32  PHG4VtxPoint *newvtx = new PHG4VtxPointv1(x,y,z,t0);
33  vtxlist[id]=newvtx;
34  return 0;
35 }
36 
37 int
38 PHG4InEvent::AddVtx(const double x, const double y, const double z, const double t0 = NAN)
39 {
40  PHG4VtxPoint *newvtx = new PHG4VtxPointv1(x,y,z,t0);
41  int iret = AddVtxCommon(newvtx);
42  return iret;
43 }
44 
45 int
47 {
48  std::pair< std::map<int, PHG4VtxPoint *>::const_iterator, std::map<int, PHG4VtxPoint *>::const_iterator > vtxbegin_end = GetVertices();
49  for (map<int, PHG4VtxPoint *>::const_iterator viter = vtxbegin_end.first; viter != vtxbegin_end.second; ++viter)
50  {
51  if (*newvtx == *(viter->second))
52  {
53  delete newvtx;
54  return viter->first;
55  }
56  }
57  int id = GetNVtx()+1;
58  vtxlist[id]=newvtx;
59  return id;
60 }
61 
62 int
63 PHG4InEvent::AddParticle(const int vtxid, PHG4Particle *particle)
64 {
65  if (vtxlist.find(vtxid) == vtxlist.end())
66  {
67  cout << "cannot add particle to non existing vertex, id: " << vtxid << endl;
68  exit(1);
69  }
70  // checking for duplicate particles - sometimes interesting
71  // std::pair< std::multimap<int,PHG4Particle *>::const_iterator, std::multimap<int,PHG4Particle *>::const_iterator > particles = GetParticles(vtxid);
72 
73 // for (multimap<int,PHG4Particle *>::const_iterator piter = particles.first; piter != particles.second; piter++)
74 // {
75 // if (*particle == *(piter->second))
76 // {
77 // cout << PHWHERE << "Particle already added (same pid and momentum), dropping it since duplication will cause problems down the line particle:" << endl;
78 // particle->identify();
79 // delete particle;
80 // return -1;
81 // }
82 // }
83  particlelist.insert(pair<int,PHG4Particle *>(vtxid, particle) );
84  return 0;
85 }
86 
87 void
89 {
90  embedded_particlelist.clear(); // just pointers - we can clear it without deleting
91  while(vtxlist.begin() != vtxlist.end())
92  {
93  delete vtxlist.begin()->second;
94  vtxlist.erase(vtxlist.begin());
95  }
96  while(particlelist.begin() != particlelist.end())
97  {
98  delete particlelist.begin()->second;
99  particlelist.erase(particlelist.begin());
100  }
101  return;
102 }
103 
104 pair< map<int, PHG4VtxPoint *>::const_iterator, map<int, PHG4VtxPoint *>::const_iterator >
106 {
107  pair< map<int, PHG4VtxPoint *>::const_iterator, map<int, PHG4VtxPoint *>::const_iterator > retpair(vtxlist.begin(), vtxlist.end());
108  return retpair;
109 }
110 
111 
112 pair< multimap<int,PHG4Particle *>::const_iterator, multimap<int,PHG4Particle *>::const_iterator >
113 PHG4InEvent::GetParticles(const int vtxid) const
114 {
115  pair<multimap<int,PHG4Particle *>::const_iterator, multimap<int,PHG4Particle *>::const_iterator > retpair(particlelist.lower_bound(vtxid),particlelist.upper_bound(vtxid));
116  return retpair;
117 }
118 
119 pair< multimap<int,PHG4Particle *>::const_iterator, multimap<int,PHG4Particle *>::const_iterator >
121 {
122  pair<multimap<int,PHG4Particle *>::const_iterator, multimap<int,PHG4Particle *>::const_iterator > retpair(particlelist.begin(),particlelist.end());
123  return retpair;
124 }
125 
126 pair< multimap<int,PHG4Particle *>::iterator, multimap<int,PHG4Particle *>::iterator >
128 {
129  pair<multimap<int,PHG4Particle *>::iterator, multimap<int,PHG4Particle *>::iterator > retpair(particlelist.begin(),particlelist.end());
130  return retpair;
131 }
132 
133 void
134 PHG4InEvent::identify(ostream& os) const
135 {
136  os << "vtx: " << endl;
137  multimap<int,PHG4Particle *>::const_iterator particle_iter;
138  for(map<int,PHG4VtxPoint *>::const_iterator iter = vtxlist.begin(); iter != vtxlist.end(); ++iter)
139  {
140  os << "vtx " << iter->first << " , ";
141  iter->second->identify(os);
142  pair<multimap<int, PHG4Particle *>::const_iterator, multimap<int, PHG4Particle *>::const_iterator > particlebegin_end = GetParticles(iter->first);
143  for(particle_iter = particlebegin_end.first; particle_iter != particlebegin_end.second; ++particle_iter)
144  {
145  os << "vtx " << particle_iter->first << ", ";
146  particle_iter->second->identify(os);
147  }
148  }
149  if (!embedded_particlelist.empty())
150  {
151  os << "embedded particles:" << endl;
152  for (map<PHG4Particle *,int>::const_iterator iter = embedded_particlelist.begin(); iter != embedded_particlelist.end(); ++iter)
153  {
154  (iter->first)->identify(os);
155  }
156  }
157  else
158  {
159  os << "no embedded particles" << endl;
160  }
161  return;
162 }
163 
164 int
166 {
167  std::map<PHG4Particle*,int>::const_iterator iter = embedded_particlelist.find(p);
168  if (iter == embedded_particlelist.end()) {
169  return 0;
170  }
171 
172  return iter->second;
173 }
174 
175 void
176 PHG4InEvent::DeleteParticle(std::multimap<int, PHG4Particle *>::iterator &iter)
177 {
178  delete iter->second;
179  particlelist.erase(iter);
180 }
ClassImp(PHG4InEvent) PHG4InEvent
Definition: PHG4InEvent.cc:11
int AddParticle(const int vtxid, PHG4Particle *particle)
Definition: PHG4InEvent.cc:63
std::pair< std::multimap< int, PHG4Particle * >::const_iterator, std::multimap< int, PHG4Particle * >::const_iterator > GetParticles() const
Definition: PHG4InEvent.cc:120
int AddVtx(const double x, const double y, const double z, const double t)
Definition: PHG4InEvent.cc:38
void DeleteParticle(std::multimap< int, PHG4Particle * >::iterator &iter)
Definition: PHG4InEvent.cc:176
int AddVtxHepMC(const int id, const double x, const double y, const double z, const double t)
Definition: PHG4InEvent.cc:30
virtual ~PHG4InEvent()
std::pair< std::map< int, PHG4VtxPoint * >::const_iterator, std::map< int, PHG4VtxPoint * >::const_iterator > GetVertices() const
Definition: PHG4InEvent.cc:105
void Reset()
Clear Event.
Definition: PHG4InEvent.cc:88
std::pair< std::multimap< int, PHG4Particle * >::iterator, std::multimap< int, PHG4Particle * >::iterator > GetParticles_Modify()
Definition: PHG4InEvent.cc:127
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4InEvent.cc:134
int isEmbeded(PHG4Particle *) const
Definition: PHG4InEvent.cc:165
int AddVtxCommon(PHG4VtxPoint *newvtx)
Definition: PHG4InEvent.cc:46