Class Reference for E1039 Core & Analysis Software
SQHitMap_v1.cxx
Go to the documentation of this file.
1 /*
2  * SQHitMap_v1.C
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw
6  */
7 
8 
9 #include "SQHitMap_v1.h"
10 
11 #include <map>
12 #include "SQHit.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 SQHit *hit = iter->second;
28  _map.insert(make_pair(hit->get_hit_id(),hit->Clone()));
29  }
30 }
31 
33  Reset();
34  for (ConstIter iter = hitmap.begin();
35  iter != hitmap.end();
36  ++iter) {
37  const SQHit *hit = iter->second;
38  _map.insert(make_pair(hit->get_hit_id(),hit->Clone()));
39  }
40  return *this;
41 }
42 
44  Reset();
45 }
46 
48  for (Iter iter = _map.begin();
49  iter != _map.end();
50  ++iter) {
51  SQHit *hit = iter->second;
52  delete hit;
53  }
54  _map.clear();
55 }
56 
57 void SQHitMap_v1::identify(ostream& os) const {
58  os << "SQHitMap_v1: size = " << _map.size() << endl;
59  return;
60 }
61 
62 const SQHit* SQHitMap_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 SQHit* SQHitMap_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 = hit->get_hit_id();
76  _map.insert(make_pair( index , hit->Clone() ));
77  return _map[index];
78 }
79 
80 
#define NULL
Definition: Pdb.h:9
ClassImp(SQHitMap_v1) SQHitMap_v1
Definition: SQHitMap_v1.cxx:16
SQHit * insert(const SQHit *hit)
Definition: SQHitMap_v1.cxx:74
ConstIter end() const
Definition: SQHitMap_v1.h:46
ConstIter begin() const
Definition: SQHitMap_v1.h:44
const SQHit * get(unsigned int idkey) const
Definition: SQHitMap_v1.cxx:62
void identify(std::ostream &os=std::cout) const
Definition: SQHitMap_v1.cxx:57
virtual ~SQHitMap_v1()
Definition: SQHitMap_v1.cxx:43
SQHitMap_v1 & operator=(const SQHitMap_v1 &hitmap)
Definition: SQHitMap_v1.cxx:32
void Reset()
Clear Event.
Definition: SQHitMap_v1.cxx:47
std::map< unsigned int, SQHit * >::iterator Iter
Definition: SQHitMap.h:29
std::map< unsigned int, SQHit * >::const_iterator ConstIter
Definition: SQHitMap.h:28
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual int get_hit_id() const
Return the ID of this hit.
Definition: SQHit.h:39
virtual SQHit * Clone() const
Definition: SQHit.h:35