Class Reference for E1039 Core & Analysis Software
PHGenEventListv1.h
Go to the documentation of this file.
1 #ifndef PHGENEVENTLISTV1_H__
2 #define PHGENEVENTLISTV1_H__
3 
4 #include "PHGenEventList.h"
5 #include "PHGenEvent.h"
6 #include "PHGenEventv1.h"
7 
8 #include <vector>
9 #include <map>
10 #include <iostream>
11 
13 
14 public:
16 
18  virtual ~PHGenEventListv1();
19 
20  size_t size() const {return _genevents.size();}
21  const PHGenEvent* at(size_t i) const;
22  PHGenEvent* at(size_t i);
23 
24  bool has(unsigned int id) const;
25  size_t find(unsigned int id) const;
26  const PHGenEvent* fetch(unsigned int id) const;
27  PHGenEvent* fetch(unsigned int id);
28 
29  void insert(const PHGenEvent* genevent);
30  unsigned int generate_id() const;
31  void remove(size_t i);
32  void clear();
33 
34  void identify(std::ostream& out = std::cout) const;
35  void print(std::ostream& out = std::cout) const;
36  void Reset();
37 
38 private:
39 
40  bool stale() const {return _stale;}
41  void refresh() const;
42 
43  std::vector<PHGenEventVersion> _genevents;
44 
45 #ifndef __CINT____ // hide from dictionary generation
46  mutable bool _stale;
47  mutable std::map<unsigned int,const PHGenEvent*> _id_genevent_map;
48 #endif // __CINT__
49 
50  ClassDef(PHGenEventListv1,1)
51 };
52 
53 #endif // PHGENEVENTLISTV1_H__
unsigned int generate_id() const
void insert(const PHGenEvent *genevent)
bool has(unsigned int id) const
PHGenEventv1 PHGenEventVersion
void print(std::ostream &out=std::cout) const
void Reset()
Clear Event.
const PHGenEvent * at(size_t i) const
size_t find(unsigned int id) const
size_t size() const
const PHGenEvent * fetch(unsigned int id) const
virtual ~PHGenEventListv1()
void identify(std::ostream &out=std::cout) const
void remove(size_t i)