8 #ifndef _H_SQSpillMap_H_
9 #define _H_SQSpillMap_H_
23 typedef std::map<unsigned int, SQSpill*>
SpillMap;
24 typedef std::map<unsigned int, SQSpill*>::const_iterator
ConstIter;
25 typedef std::map<unsigned int, SQSpill*>::iterator
Iter;
29 virtual void identify(std::ostream& os = std::cout)
const {
30 os <<
"SQSpillMap base class" << std::endl;
36 virtual bool empty()
const {
return true;}
37 virtual size_t size()
const {
return 0;}
38 virtual size_t count(
unsigned int idkey)
const {
return 0;}
44 virtual size_t erase(
unsigned int idkey) {
return 0;}
An SQ interface class to hold a list of SQSpill objects.
virtual Iter find(unsigned int idkey)
Return the iterator of the SQSpill entry having spill ID = 'idkey'.
virtual Iter end()
Return the end iterator.
virtual SQSpillMap * Clone() const
virtual size_t count(unsigned int idkey) const
Return the number of spills having spill ID = 'idkey'. Must be '0' or '1'.
virtual bool empty() const
Return 'true' if this object holds no spill.
virtual SQSpill * get(unsigned int idkey)
Return the SQSpill entry having spill ID = 'idkey'. Return '0' if no entry exists.
std::map< unsigned int, SQSpill * >::const_iterator ConstIter
virtual size_t erase(unsigned int idkey)
Erase the SQSpill entry having spill ID = 'idkey'.
virtual Iter begin()
Return the begin iterator.
virtual ConstIter find(unsigned int idkey) const
Return the const iterator of the SQSpill entry having spill ID = 'idkey'.
virtual const SQSpill * get(unsigned int idkey) const
Return the SQSpill entry having spill ID = 'idkey'. Return '0' if no entry exists.
virtual int isValid() const
isValid returns non zero if object contains vailid data
std::map< unsigned int, SQSpill * >::iterator Iter
virtual ConstIter end() const
Return the const end iterator.
virtual void Reset()
Clear Event.
virtual SQSpill * insert(const SQSpill *hit)
Insert the given SQSpill object.
virtual ConstIter begin() const
Return the const begin iterator.
std::map< unsigned int, SQSpill * > SpillMap
virtual void clear()
Clear the list.
virtual size_t size() const
Return the number of spills held.
virtual void identify(std::ostream &os=std::cout) const
An SQ interface class to hold the data of one spill.