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