Class Reference for E1039 Core & Analysis Software
SQIntMap_v1.cxx
Go to the documentation of this file.
1 /*
2  * SQIntMap_v1.C
3  */
4 #include "SQIntMap_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 SQIntMap_v1::identify(ostream& os) const {
40  os << "SQIntMap_v1: size = " << _map.size() << endl;
41  return;
42 }
43 
44 const PHObject* SQIntMap_v1::get(unsigned int id) const {
45  ConstIter iter = _map.find(id);
46  if (iter == _map.end()) return NULL;
47  return iter->second;
48 }
49 
50 PHObject* SQIntMap_v1::get(unsigned int id) {
51  Iter iter = _map.find(id);
52  if (iter == _map.end()) return NULL;
53  return iter->second;
54 }
55 
56 PHObject* SQIntMap_v1::insert(const unsigned int id, const PHObject *item) {
57  _map.insert(make_pair(id, item->clone() ));
58  return _map[id];
59 }
#define NULL
Definition: Pdb.h:9
ClassImp(SQIntMap_v1) SQIntMap_v1
Definition: SQIntMap_v1.cxx:7
virtual PHObject * clone() const
Virtual copy constructor.
Definition: PHObject.cc:14
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
PHObject * insert(unsigned int idkey, const PHObject *item)
Definition: SQIntMap_v1.cxx:56
void Reset()
Clear Event.
Definition: SQIntMap_v1.cxx:32
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
ConstIter end() const
Definition: SQIntMap_v1.h:35
ObjectMap::iterator Iter
Definition: SQIntMap.h:18
ObjectMap::const_iterator ConstIter
Definition: SQIntMap.h:17