Class Reference for E1039 Core & Analysis Software
SQSpillMap_v1.cxx
Go to the documentation of this file.
1 /*
2  * SQSpillMap_v1.C
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw
6  */
7 
8 
9 #include "SQSpillMap_v1.h"
10 
11 #include <map>
12 #include "SQSpill.h"
13 
14 using namespace std;
15 
17 
19 : _map() {
20 }
21 
23  : _map() {
24  for (ConstIter iter = hitmap.begin();
25  iter != hitmap.end();
26  ++iter) {
27  const SQSpill *spill = iter->second;
28  _map.insert(make_pair(spill->get_spill_id(),spill->Clone()));
29  }
30 }
31 
33  Reset();
34  for (ConstIter iter = hitmap.begin();
35  iter != hitmap.end();
36  ++iter) {
37  const SQSpill *spill = iter->second;
38  _map.insert(make_pair(spill->get_spill_id(),spill->Clone()));
39  }
40  return *this;
41 }
42 
44  Reset();
45 }
46 
48  for (Iter iter = _map.begin();
49  iter != _map.end();
50  ++iter) {
51  SQSpill *hit = iter->second;
52  delete hit;
53  }
54  _map.clear();
55 }
56 
57 void SQSpillMap_v1::identify(ostream& os) const {
58  os << "SQSpillMap_v1: size = " << _map.size() << endl;
59  return;
60 }
61 
62 const SQSpill* SQSpillMap_v1::get(unsigned int id) const {
63  ConstIter iter = _map.find(id);
64  if (iter == _map.end()) return NULL;
65  return iter->second;
66 }
67 
68 SQSpill* SQSpillMap_v1::get(unsigned int id) {
69  Iter iter = _map.find(id);
70  if (iter == _map.end()) return NULL;
71  return iter->second;
72 }
73 
75  int index = spill->get_spill_id();
76  _map.insert(make_pair( index , spill->Clone() ));
77  return _map[index];
78 }
79 
80 
#define NULL
Definition: Pdb.h:9
ClassImp(SQSpillMap_v1) SQSpillMap_v1
void identify(std::ostream &os=std::cout) const
virtual ~SQSpillMap_v1()
void Reset()
Clear Event.
ConstIter end() const
Return the const end iterator.
Definition: SQSpillMap_v1.h:46
const SQSpill * get(unsigned int idkey) const
Return the SQSpill entry having spill ID = 'idkey'. Return '0' if no entry exists.
ConstIter begin() const
Return the const begin iterator.
Definition: SQSpillMap_v1.h:44
SQSpill * insert(const SQSpill *hit)
Insert the given SQSpill object.
SQSpillMap_v1 & operator=(const SQSpillMap_v1 &hitmap)
std::map< unsigned int, SQSpill * >::const_iterator ConstIter
Definition: SQSpillMap.h:24
std::map< unsigned int, SQSpill * >::iterator Iter
Definition: SQSpillMap.h:25
An SQ interface class to hold the data of one spill.
Definition: SQSpill.h:19
virtual int get_spill_id() const
Return the spill ID.
Definition: SQSpill.h:37
virtual SQSpill * Clone() const
Definition: SQSpill.h:30