8 #ifndef _H_SQHitMap_v1_H_
9 #define _H_SQHitMap_v1_H_
27 void identify(std::ostream& os = std::cout)
const;
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);}
37 const SQHit*
get(
unsigned int idkey)
const;
40 size_t erase(
unsigned int idkey) {
41 delete _map[idkey];
return _map.erase(idkey);
49 Iter find(
unsigned int idkey) {
return _map.find(idkey);}
SQHit * insert(const SQHit *hit)
size_t erase(unsigned int idkey)
Iter find(unsigned int idkey)
int isValid() const
isValid returns non zero if object contains vailid data
ConstIter find(unsigned int idkey) const
size_t count(unsigned int idkey) const
const SQHit * get(unsigned int idkey) const
void identify(std::ostream &os=std::cout) const
SQHitMap_v1 & operator=(const SQHitMap_v1 &hitmap)
An SQ interface class to hold a list of SQHit objects as std::map.
std::map< unsigned int, SQHit * >::iterator Iter
std::map< unsigned int, SQHit * >::const_iterator ConstIter
std::map< unsigned int, SQHit * > HitMap
An SQ interface class to hold one detector hit.