Class Reference for E1039 Core & Analysis Software
SQStringMap_v1.cxx
Go to the documentation of this file.
1 /*
2  * SQStringMap_v1.C
3  */
4 #include "SQStringMap_v1.h"
5 using namespace std;
6 
8 
10 {}
11 
13 {
14  for (ConstIter iter = map.begin(); iter != map.end(); ++iter) {
15  _map.insert(make_pair(iter->first, iter->second->clone()));
16  }
17 }
18 
20 {
21  Reset();
22  for (ConstIter iter = map.begin(); iter != map.end(); ++iter) {
23  _map.insert(make_pair(iter->first, iter->second->clone()));
24  }
25  return *this;
26 }
27 
29  Reset();
30 }
31 
33  for (Iter iter = _map.begin(); iter != _map.end(); ++iter) {
34  delete iter->second;
35  }
36  _map.clear();
37 }
38 
39 void SQStringMap_v1::identify(ostream& os) const {
40  os << "SQStringMap_v1: size = " << _map.size() << endl;
41  return;
42 }
43 
44 const PHObject* SQStringMap_v1::get(std::string key) const {
45  ConstIter iter = _map.find(key);
46  if (iter == _map.end()) return NULL;
47  return iter->second;
48 }
49 
50 PHObject* SQStringMap_v1::get(std::string key) {
51  Iter iter = _map.find(key);
52  if (iter == _map.end()) return NULL;
53  return iter->second;
54 }
55 
56 PHObject* SQStringMap_v1::insert(const std::string key, const PHObject *item) {
57  _map.insert(make_pair(key, item->clone() ));
58  return _map[key];
59 }
#define NULL
Definition: Pdb.h:9
ClassImp(SQStringMap_v1) SQStringMap_v1
virtual PHObject * clone() const
Virtual copy constructor.
Definition: PHObject.cc:14
ConstIter end() const
ConstIter begin() const
void identify(std::ostream &os=std::cout) 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.
ObjectMap::iterator Iter
Definition: SQStringMap.h:18
ObjectMap::const_iterator ConstIter
Definition: SQStringMap.h:17