Class Reference for E1039 Core & Analysis Software
SQHitMap_v1.h
Go to the documentation of this file.
1 /*
2  * SQHitMap_v1.h
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw@nmsu.edu
6  */
7 
8 #ifndef _H_SQHitMap_v1_H_
9 #define _H_SQHitMap_v1_H_
10 
11 #include <phool/PHObject.h>
12 #include <map>
13 #include <iostream>
14 
15 #include "SQHit.h"
16 #include "SQHitMap.h"
17 
18 class SQHitMap_v1 : public SQHitMap {
19 
20 public:
21 
23  SQHitMap_v1(const SQHitMap_v1& hitmap);
24  SQHitMap_v1& operator=(const SQHitMap_v1& hitmap);
25  virtual ~SQHitMap_v1();
26 
27  void identify(std::ostream& os = std::cout) const;
28  void Reset();
29  int isValid() const {return 1;}
30  SQHitMap* Clone() const {return new SQHitMap_v1(*this);}
31 
32  bool empty() const {return _map.empty();}
33  size_t size() const {return _map.size();}
34  size_t count(unsigned int idkey) const {return _map.count(idkey);}
35  void clear() {Reset();}
36 
37  const SQHit* get(unsigned int idkey) const;
38  SQHit* get(unsigned int idkey);
39  SQHit* insert(const SQHit *hit);
40  size_t erase(unsigned int idkey) {
41  delete _map[idkey]; return _map.erase(idkey);
42  }
43 
44  ConstIter begin() const {return _map.begin();}
45  ConstIter find(unsigned int idkey) const {return _map.find(idkey);}
46  ConstIter end() const {return _map.end();}
47 
48  Iter begin() {return _map.begin();}
49  Iter find(unsigned int idkey) {return _map.find(idkey);}
50  Iter end() {return _map.end();}
51 
52 private:
53  HitMap _map;
54 
55  ClassDef(SQHitMap_v1, 1);
56 };
57 
58 #endif
SQHit * insert(const SQHit *hit)
Definition: SQHitMap_v1.cxx:74
Iter begin()
Definition: SQHitMap_v1.h:48
ConstIter end() const
Definition: SQHitMap_v1.h:46
size_t erase(unsigned int idkey)
Definition: SQHitMap_v1.h:40
Iter find(unsigned int idkey)
Definition: SQHitMap_v1.h:49
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SQHitMap_v1.h:29
ConstIter find(unsigned int idkey) const
Definition: SQHitMap_v1.h:45
Iter end()
Definition: SQHitMap_v1.h:50
void clear()
Definition: SQHitMap_v1.h:35
bool empty() const
Definition: SQHitMap_v1.h:32
ConstIter begin() const
Definition: SQHitMap_v1.h:44
size_t count(unsigned int idkey) const
Definition: SQHitMap_v1.h:34
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
SQHitMap * Clone() const
Definition: SQHitMap_v1.h:30
size_t size() const
Definition: SQHitMap_v1.h:33
void Reset()
Clear Event.
Definition: SQHitMap_v1.cxx:47
An SQ interface class to hold a list of SQHit objects as std::map.
Definition: SQHitMap.h:23
std::map< unsigned int, SQHit * >::iterator Iter
Definition: SQHitMap.h:29
std::map< unsigned int, SQHit * >::const_iterator ConstIter
Definition: SQHitMap.h:28
std::map< unsigned int, SQHit * > HitMap
Definition: SQHitMap.h:27
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20