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