1 #ifndef __PHHEPMCGENEVENTMAP_H__
2 #define __PHHEPMCGENEVENTMAP_H__
22 typedef std::map<int, PHHepMCGenEvent*>::const_iterator
ConstIter;
23 typedef std::map<int, PHHepMCGenEvent*>::iterator
Iter;
25 typedef std::map<int, PHHepMCGenEvent*>::reverse_iterator
ReverseIter;
33 void identify(std::ostream& os = std::cout)
const;
38 bool empty()
const {
return _map.empty(); }
39 size_t size()
const {
return _map.size(); }
40 size_t count(
int idkey)
const {
return _map.count(idkey); }
58 return _map.erase(idkey);
63 Iter find(
int idkey) {
return _map.find(idkey); }
PHHepMCGenEventMap is collection of HEPMC events input into this simulation map of embedding ID -> PH...
bool empty() const
container service
PHHepMCGenEvent * insert_active_event(const PHHepMCGenEvent *event=nullptr)
insert a event of interest, e.g. jetty event from pythia
ConstReverseIter rend() const
std::map< int, PHHepMCGenEvent * >::iterator Iter
PHHepMCGenEventMap & operator=(const PHHepMCGenEventMap &eventmap)
PHHepMCGenEventMap * Clone(const char *newname="") const
HepMCGenEventMap & get_map()
const PHHepMCGenEvent * get(int idkey) const
fetch event
PHHepMCGenEvent * insert(const PHHepMCGenEvent *event)
insert a event of interest, e.g. jetty event from pythia
size_t count(int idkey) const
std::map< int, PHHepMCGenEvent * >::const_iterator ConstIter
PHHepMCGenEvent * insert_background_event(const PHHepMCGenEvent *event=nullptr)
insert a event of background, e.g. Au+Au collision background. First event has embedding ID = 0,...
ConstReverseIter rbegin() const
iterator from lowest ID to highest, i.e. signal to background
std::map< int, PHHepMCGenEvent * >::const_reverse_iterator ConstReverseIter
int isValid() const
isValid returns non zero if object contains vailid data
PHHepMCGenEvent * insert_event(const int embedding_id, const PHHepMCGenEvent *event=nullptr)
insert a event with specific embedding ID
virtual ~PHHepMCGenEventMap()
void identify(std::ostream &os=std::cout) const
const HepMCGenEventMap & get_map() const
for c++11 range-based for loop
ConstIter find(unsigned int idkey) const
find
ConstIter begin() const
iterator from lowest ID to highest, i.e. background to signal
std::map< int, PHHepMCGenEvent * >::reverse_iterator ReverseIter
std::map< int, PHHepMCGenEvent * > HepMCGenEventMap