Class Reference for E1039 Core & Analysis Software
PHG4TruthInfoContainer.h
Go to the documentation of this file.
1 #ifndef PHG4TRUTHINFOCONTAINER_H__
2 #define PHG4TRUTHINFOCONTAINER_H__
3 
4 #include <phool/PHObject.h>
5 
6 #include <map>
7 #include <set>
8 
9 class PHG4Shower;
10 class PHG4Particle;
11 class PHG4VtxPoint;
12 
14 
15 public:
16 
17  typedef std::map<int,PHG4Particle *> Map;
18  typedef Map::iterator Iterator;
19  typedef Map::const_iterator ConstIterator;
20  typedef std::pair<Iterator, Iterator> Range;
21  typedef std::pair<ConstIterator, ConstIterator> ConstRange;
22 
23  typedef std::map<int,PHG4VtxPoint *> VtxMap;
24  typedef VtxMap::iterator VtxIterator;
25  typedef VtxMap::const_iterator ConstVtxIterator;
26  typedef std::pair<VtxIterator, VtxIterator> VtxRange;
27  typedef std::pair<ConstVtxIterator, ConstVtxIterator> ConstVtxRange;
28 
29  typedef std::map<int,PHG4Shower *> ShowerMap;
30  typedef ShowerMap::iterator ShowerIterator;
31  typedef ShowerMap::const_iterator ConstShowerIterator;
32  typedef std::pair<ShowerIterator, ShowerIterator> ShowerRange;
33  typedef std::pair<ConstShowerIterator, ConstShowerIterator> ConstShowerRange;
34 
36  virtual ~PHG4TruthInfoContainer();
37 
38  void Reset();
39  void identify(std::ostream& os = std::cout) const;
40 
41  // --- particle storage ------------------------------------------------------
42 
44  ConstIterator AddParticle(const int particleid, PHG4Particle* newparticle);
45  void delete_particle(Iterator piter);
46 
47  PHG4Particle* GetParticle(const int particleid);
48  PHG4Particle* GetPrimaryParticle(const int particleid);
49 
50  bool is_primary(const PHG4Particle* p) const;
51 
53  Range GetParticleRange() {return Range(particlemap.begin(),particlemap.end());}
54  ConstRange GetParticleRange() const {return ConstRange(particlemap.begin(),particlemap.end());}
55 
56  Range GetPrimaryParticleRange() {return Range(particlemap.upper_bound(0),particlemap.end());}
57  ConstRange GetPrimaryParticleRange() const {return ConstRange(particlemap.upper_bound(0),particlemap.end());}
58 
59  Range GetSecondaryParticleRange() {return Range(particlemap.begin(),particlemap.upper_bound(0));}
60  ConstRange GetSecondaryParticleRange() const {return ConstRange(particlemap.begin(),particlemap.upper_bound(0));}
61 
63  unsigned int size( void ) const {return particlemap.size();}
65  return std::distance(particlemap.upper_bound(0),particlemap.end());
66  }
67 
69  const Map& GetMap() const {return particlemap;}
70 
71  int maxtrkindex() const;
72  int mintrkindex() const;
73 
78  std::pair< std::map<int,int>::const_iterator,
79  std::map<int,int>::const_iterator > GetEmbeddedTrkIds() const {
80  return std::make_pair(particle_embed_flags.begin(), particle_embed_flags.end());
81  }
82 
87  void AddEmbededTrkId(const int id, const int flag) {
88  particle_embed_flags.insert(std::make_pair(id,flag));
89  }
90 
95  int isEmbeded(const int trackid) const;
96 
97  // --- vertex storage --------------------------------------------------------
98 
100  ConstVtxIterator AddVertex(const int vtxid, PHG4VtxPoint* vertex);
101  void delete_vtx(VtxIterator viter);
102 
103  PHG4VtxPoint* GetVtx(const int vtxid);
104  PHG4VtxPoint* GetPrimaryVtx(const int vtxid);
105 
106  bool is_primary_vtx(const PHG4VtxPoint* v) const;
107 
109  VtxRange GetVtxRange() {return VtxRange(vtxmap.begin(),vtxmap.end());}
110  ConstVtxRange GetVtxRange() const {return ConstVtxRange(vtxmap.begin(),vtxmap.end());}
111 
112  VtxRange GetPrimaryVtxRange() {return VtxRange(vtxmap.upper_bound(0),vtxmap.end());}
113  ConstVtxRange GetPrimaryVtxRange() const {return ConstVtxRange(vtxmap.upper_bound(0),vtxmap.end());}
114 
115  VtxRange GetSecondaryVtxRange() {return VtxRange(vtxmap.begin(),vtxmap.upper_bound(0));}
116  ConstVtxRange GetSecondaryVtxRange() const {return ConstVtxRange(vtxmap.begin(),vtxmap.upper_bound(0));}
117 
119  unsigned int GetNumVertices() const {return vtxmap.size();}
120 
122  const VtxMap& GetVtxMap() const {return vtxmap;}
123 
124  int maxvtxindex() const;
125  int minvtxindex() const;
126 
129  int GetPrimaryVertexIndex() const;
130 
135  std::pair< std::map<int,int>::const_iterator,
136  std::map<int,int>::const_iterator > GetEmbeddedVtxIds() const {
137  return std::make_pair(vertex_embed_flags.begin(), vertex_embed_flags.end());
138  }
139 
144  void AddEmbededVtxId(const int id, const int flag) {
145  vertex_embed_flags.insert(std::make_pair(id,flag));
146  }
147 
152  int isEmbededVtx(const int vtxid) const;
153 
154  // --- shower storage ------------------------------------------------------
155 
157  ConstShowerIterator AddShower(const int showerid, PHG4Shower* newshower);
158  void delete_shower(ShowerIterator piter);
159 
160  PHG4Shower* GetShower(const int showerid);
161  PHG4Shower* GetPrimaryShower(const int showerid);
162 
164  ShowerRange GetShowerRange() {return ShowerRange(showermap.begin(),showermap.end());}
165  ConstShowerRange GetShowerRange() const {return ConstShowerRange(showermap.begin(),showermap.end());}
166 
167  ShowerRange GetPrimaryShowerRange() {return ShowerRange(showermap.upper_bound(0),showermap.end());}
168  ConstShowerRange GetPrimaryShowerRange() const {return ConstShowerRange(showermap.upper_bound(0),showermap.end());}
169 
170  ShowerRange GetSecondaryShowerRange() {return ShowerRange(showermap.begin(),showermap.upper_bound(0));}
171  ConstShowerRange GetSecondaryShowerRange() const {return ConstShowerRange(showermap.begin(),showermap.upper_bound(0));}
172 
174  unsigned int shower_size( void ) const {return showermap.size();}
175 
177  const ShowerMap& GetShowerMap() const {return showermap;}
178 
179  int maxshowerindex() const;
180  int minshowerindex() const;
181 
182  private:
183 
196  Map particlemap;
197 
210  VtxMap vtxmap;
211 
214  ShowerMap showermap;
215 
216  // embed flag storage, will typically be set for only a few entries or none at all
217  std::map< int, int> particle_embed_flags; //< trackid => embed flag
218  std::map< int, int> vertex_embed_flags; //< vtxid => embed flag
219 
220  ClassDef(PHG4TruthInfoContainer,1)
221 };
222 
223 #endif
VtxRange GetVtxRange()
Get a range of iterators covering the entire vertex container.
std::pair< ShowerIterator, ShowerIterator > ShowerRange
ConstRange GetParticleRange() const
ConstShowerRange GetShowerRange() const
bool is_primary(const PHG4Particle *p) const
unsigned int GetNumVertices() const
Get the number of vertices stored.
void AddEmbededTrkId(const int id, const int flag)
VtxMap::const_iterator ConstVtxIterator
void delete_shower(ShowerIterator piter)
Range GetParticleRange()
Get a range of iterators covering the entire container.
std::map< int, PHG4Shower * > ShowerMap
ConstIterator AddParticle(const int particleid, PHG4Particle *newparticle)
Add a particle that the user has created.
const VtxMap & GetVtxMap() const
Get the Vertex Map storage.
ConstRange GetPrimaryParticleRange() const
std::pair< Iterator, Iterator > Range
int isEmbeded(const int trackid) const
std::pair< ConstIterator, ConstIterator > ConstRange
ConstRange GetSecondaryParticleRange() const
ConstVtxRange GetPrimaryVtxRange() const
const ShowerMap & GetShowerMap() const
Get the Shower Map storage.
void identify(std::ostream &os=std::cout) const
PHG4VtxPoint * GetVtx(const int vtxid)
std::map< int, PHG4Particle * > Map
ConstShowerIterator AddShower(const int showerid, PHG4Shower *newshower)
Add a shower that the user has created.
std::pair< std::map< int, int >::const_iterator, std::map< int, int >::const_iterator > GetEmbeddedVtxIds() const
void delete_particle(Iterator piter)
std::pair< ConstShowerIterator, ConstShowerIterator > ConstShowerRange
ConstVtxRange GetVtxRange() const
Map::const_iterator ConstIterator
int isEmbededVtx(const int vtxid) const
std::pair< VtxIterator, VtxIterator > VtxRange
PHG4Particle * GetPrimaryParticle(const int particleid)
ConstVtxRange GetSecondaryVtxRange() const
std::pair< std::map< int, int >::const_iterator, std::map< int, int >::const_iterator > GetEmbeddedTrkIds() const
std::map< int, PHG4VtxPoint * > VtxMap
ConstShowerRange GetPrimaryShowerRange() const
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)
ShowerRange GetShowerRange()
Get a range of iterators covering the entire container.
unsigned int size(void) const
particle size
void delete_vtx(VtxIterator viter)
PHG4VtxPoint * GetPrimaryVtx(const int vtxid)
unsigned int shower_size(void) const
shower size
ShowerMap::iterator ShowerIterator
void AddEmbededVtxId(const int id, const int flag)
const Map & GetMap() const
Get the Particle Map storage.
bool is_primary_vtx(const PHG4VtxPoint *v) const
ConstShowerRange GetSecondaryShowerRange() const
std::pair< ConstVtxIterator, ConstVtxIterator > ConstVtxRange