Class Reference for E1039 Core & Analysis Software
SQIntMap_v1.h
Go to the documentation of this file.
1 /*
2  * SQIntMap_v1.h
3  */
4 #ifndef _H_SQIntMap_v1_H_
5 #define _H_SQIntMap_v1_H_
6 #include "SQIntMap.h"
7 
8 class SQIntMap_v1 : public SQIntMap {
9 public:
11  SQIntMap_v1(const SQIntMap_v1& map);
12  SQIntMap_v1& operator=(const SQIntMap_v1& map);
13  virtual ~SQIntMap_v1();
14 
15  void identify(std::ostream& os = std::cout) const;
16  void Reset();
17  int isValid() const {return 1;}
18  SQIntMap* Clone() const {return new SQIntMap_v1(*this);}
19 
20  bool empty() const {return _map.empty();}
21  size_t size() const {return _map.size();}
22  size_t count(unsigned int idkey) const {return _map.count(idkey);}
23  void clear() {Reset();}
24 
25  const PHObject* get(unsigned int idkey) const;
26  PHObject* get(unsigned int idkey);
27  PHObject* insert(unsigned int idkey, const PHObject *item);
28  size_t erase(unsigned int idkey) {
29  delete _map[idkey];
30  return _map.erase(idkey);
31  }
32 
33  ConstIter begin() const {return _map.begin();}
34  ConstIter find(unsigned int idkey) const {return _map.find(idkey);}
35  ConstIter end() const {return _map.end();}
36 
37  Iter begin() {return _map.begin();}
38  Iter find(unsigned int idkey) {return _map.find(idkey);}
39  Iter end() {return _map.end();}
40 
41 private:
42  ObjectMap _map;
43 
44  ClassDef(SQIntMap_v1, 1);
45 };
46 
47 #endif
size_t erase(unsigned int idkey)
Definition: SQIntMap_v1.h:28
void clear()
Definition: SQIntMap_v1.h:23
ConstIter begin() const
Definition: SQIntMap_v1.h:33
const PHObject * get(unsigned int idkey) const
Definition: SQIntMap_v1.cxx:44
virtual ~SQIntMap_v1()
Definition: SQIntMap_v1.cxx:28
Iter find(unsigned int idkey)
Definition: SQIntMap_v1.h:38
PHObject * insert(unsigned int idkey, const PHObject *item)
Definition: SQIntMap_v1.cxx:56
Iter begin()
Definition: SQIntMap_v1.h:37
ConstIter find(unsigned int idkey) const
Definition: SQIntMap_v1.h:34
void Reset()
Clear Event.
Definition: SQIntMap_v1.cxx:32
Iter end()
Definition: SQIntMap_v1.h:39
SQIntMap_v1 & operator=(const SQIntMap_v1 &map)
Definition: SQIntMap_v1.cxx:19
void identify(std::ostream &os=std::cout) const
Definition: SQIntMap_v1.cxx:39
size_t size() const
Definition: SQIntMap_v1.h:21
size_t count(unsigned int idkey) const
Definition: SQIntMap_v1.h:22
ConstIter end() const
Definition: SQIntMap_v1.h:35
bool empty() const
Definition: SQIntMap_v1.h:20
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SQIntMap_v1.h:17
SQIntMap * Clone() const
Definition: SQIntMap_v1.h:18
A general-purpose SQ interface class that holds a list of PHObjects with key = integer.
Definition: SQIntMap.h:14
ObjectMap::iterator Iter
Definition: SQIntMap.h:18
std::map< unsigned int, PHObject * > ObjectMap
Definition: SQIntMap.h:16
ObjectMap::const_iterator ConstIter
Definition: SQIntMap.h:17