|
Gaudi Framework, version v22r1 |
| Home | Generated: Mon Feb 28 2011 |

Public Member Functions | |
| Counter (const std::string &msg=" Misbalance ") | |
| ~Counter () | |
| long | increment (const std::string &object) |
| long | decrement (const std::string &object) |
| long | counts (const std::string &object) |
| void | report () const |
Private Types | |
| typedef std::map< std::string, long > | Map |
Private Attributes | |
| Map | m_map |
| std::string | m_message |
Definition at line 70 of file TupleObj.cpp.
typedef std::map<std::string,long> Tuples::Local::Counter::Map [private] |
Definition at line 97 of file TupleObj.cpp.
| Tuples::Local::Counter::Counter | ( | const std::string & | msg = " Misbalance " ) |
[inline] |
Definition at line 74 of file TupleObj.cpp.
| Tuples::Local::Counter::~Counter | ( | ) | [inline] |
Definition at line 79 of file TupleObj.cpp.
| long Tuples::Local::Counter::counts | ( | const std::string & | object ) | [inline] |
Definition at line 85 of file TupleObj.cpp.
{ return m_map[object] ; }
| long Tuples::Local::Counter::decrement | ( | const std::string & | object ) | [inline] |
Definition at line 83 of file TupleObj.cpp.
{ return --m_map[object] ; }
| long Tuples::Local::Counter::increment | ( | const std::string & | object ) | [inline] |
Definition at line 81 of file TupleObj.cpp.
{ return ++m_map[object] ; }
| void Tuples::Local::Counter::report | ( | ) | const [inline] |
Definition at line 87 of file TupleObj.cpp.
Map Tuples::Local::Counter::m_map [private] |
Definition at line 101 of file TupleObj.cpp.
std::string Tuples::Local::Counter::m_message [private] |
Definition at line 102 of file TupleObj.cpp.