8 #ifndef _H_SQSpillMap_v1_H_
9 #define _H_SQSpillMap_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);}
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);}
ConstIter find(unsigned int idkey) const
Return the const iterator of the SQSpill entry having spill ID = 'idkey'.
size_t count(unsigned int idkey) const
Return the number of spills having spill ID = 'idkey'. Must be '0' or '1'.
size_t erase(unsigned int idkey)
Erase the SQSpill entry having spill ID = 'idkey'.
Iter find(unsigned int idkey)
Return the iterator of the SQSpill entry having spill ID = 'idkey'.
void identify(std::ostream &os=std::cout) const
Iter end()
Return the end iterator.
bool empty() const
Return 'true' if this object holds no spill.
int isValid() const
isValid returns non zero if object contains vailid data
ConstIter end() const
Return the const end iterator.
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.
Iter begin()
Return the begin iterator.
SQSpillMap * Clone() const
SQSpill * insert(const SQSpill *hit)
Insert the given SQSpill object.
size_t size() const
Return the number of spills held.
SQSpillMap_v1 & operator=(const SQSpillMap_v1 &hitmap)
void clear()
Clear the list.
An SQ interface class to hold a list of SQSpill objects.
std::map< unsigned int, SQSpill * >::const_iterator ConstIter
std::map< unsigned int, SQSpill * >::iterator Iter
std::map< unsigned int, SQSpill * > SpillMap
An SQ interface class to hold the data of one spill.