Class Reference for E1039 Core & Analysis Software
SQSpillMap_v1.h
Go to the documentation of this file.
1 /*
2  * SQSpillMap_v1.h
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw
6  */
7 
8 #ifndef _H_SQSpillMap_v1_H_
9 #define _H_SQSpillMap_v1_H_
10 
11 #include <phool/PHObject.h>
12 #include <map>
13 #include <iostream>
14 
15 #include "SQSpill.h"
16 #include "SQSpillMap.h"
17 
18 class SQSpillMap_v1 : public SQSpillMap {
19 
20 public:
21 
23  SQSpillMap_v1(const SQSpillMap_v1& hitmap);
24  SQSpillMap_v1& operator=(const SQSpillMap_v1& hitmap);
25  virtual ~SQSpillMap_v1();
26 
27  void identify(std::ostream& os = std::cout) const;
28  void Reset();
29  int isValid() const {return 1;}
30  SQSpillMap* Clone() const {return new SQSpillMap_v1(*this);}
31 
32  bool empty() const {return _map.empty();}
33  size_t size() const {return _map.size();}
34  size_t count(unsigned int idkey) const {return _map.count(idkey);}
35  void clear() {Reset();}
36 
37  const SQSpill* get(unsigned int idkey) const;
38  SQSpill* get(unsigned int idkey);
39  SQSpill* insert(const SQSpill *hit);
40  size_t erase(unsigned int idkey) {
41  delete _map[idkey]; return _map.erase(idkey);
42  }
43 
44  ConstIter begin() const {return _map.begin();}
45  ConstIter find(unsigned int idkey) const {return _map.find(idkey);}
46  ConstIter end() const {return _map.end();}
47 
48  Iter begin() {return _map.begin();}
49  Iter find(unsigned int idkey) {return _map.find(idkey);}
50  Iter end() {return _map.end();}
51 
52 private:
53  SpillMap _map;
54 
55  ClassDef(SQSpillMap_v1, 1);
56 };
57 
58 #endif
ConstIter find(unsigned int idkey) const
Return the const iterator of the SQSpill entry having spill ID = 'idkey'.
Definition: SQSpillMap_v1.h:45
size_t count(unsigned int idkey) const
Return the number of spills having spill ID = 'idkey'. Must be '0' or '1'.
Definition: SQSpillMap_v1.h:34
size_t erase(unsigned int idkey)
Erase the SQSpill entry having spill ID = 'idkey'.
Definition: SQSpillMap_v1.h:40
Iter find(unsigned int idkey)
Return the iterator of the SQSpill entry having spill ID = 'idkey'.
Definition: SQSpillMap_v1.h:49
void identify(std::ostream &os=std::cout) const
virtual ~SQSpillMap_v1()
Iter end()
Return the end iterator.
Definition: SQSpillMap_v1.h:50
bool empty() const
Return 'true' if this object holds no spill.
Definition: SQSpillMap_v1.h:32
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SQSpillMap_v1.h:29
void Reset()
Clear Event.
ConstIter end() const
Return the const end iterator.
Definition: SQSpillMap_v1.h:46
const SQSpill * get(unsigned int idkey) const
Return the SQSpill entry having spill ID = 'idkey'. Return '0' if no entry exists.
ConstIter begin() const
Return the const begin iterator.
Definition: SQSpillMap_v1.h:44
Iter begin()
Return the begin iterator.
Definition: SQSpillMap_v1.h:48
SQSpillMap * Clone() const
Definition: SQSpillMap_v1.h:30
SQSpill * insert(const SQSpill *hit)
Insert the given SQSpill object.
size_t size() const
Return the number of spills held.
Definition: SQSpillMap_v1.h:33
SQSpillMap_v1 & operator=(const SQSpillMap_v1 &hitmap)
void clear()
Clear the list.
Definition: SQSpillMap_v1.h:35
An SQ interface class to hold a list of SQSpill objects.
Definition: SQSpillMap.h:19
std::map< unsigned int, SQSpill * >::const_iterator ConstIter
Definition: SQSpillMap.h:24
std::map< unsigned int, SQSpill * >::iterator Iter
Definition: SQSpillMap.h:25
std::map< unsigned int, SQSpill * > SpillMap
Definition: SQSpillMap.h:23
An SQ interface class to hold the data of one spill.
Definition: SQSpill.h:19