![]() |
|
|
Generated: 18 Jul 2008 |
#include <GaudiSequencer.h>
Collaboration diagram for GaudiSequencer::AlgorithmEntry:

Definition at line 39 of file GaudiSequencer.h.
Public Member Functions | |
| AlgorithmEntry (Algorithm *alg) | |
| Standard constructor. | |
| virtual | ~AlgorithmEntry () |
| void | setReverse (bool flag) |
| Destructor. | |
| Algorithm * | algorithm () const |
| bool | reverse () const |
| void | setTimer (int nb) |
| int | timer () const |
Private Attributes | |
| Algorithm * | m_algorithm |
| Algorithm pointer. | |
| bool | m_reverse |
| Indicates that the flag has to be inverted. | |
| int | m_timer |
| Timer number fo rthis algorithm. | |
| GaudiSequencer::AlgorithmEntry::AlgorithmEntry | ( | Algorithm * | alg | ) | [inline] |
Standard constructor.
Definition at line 42 of file GaudiSequencer.h.
References m_algorithm, m_reverse, and m_timer.
00042 { 00043 m_algorithm = alg; 00044 m_reverse = false; 00045 m_timer = 0; 00046 }
| virtual GaudiSequencer::AlgorithmEntry::~AlgorithmEntry | ( | ) | [inline, virtual] |
| void GaudiSequencer::AlgorithmEntry::setReverse | ( | bool | flag | ) | [inline] |
Destructor.
Definition at line 49 of file GaudiSequencer.h.
References m_reverse.
00049 { m_reverse = flag; }
| Algorithm* GaudiSequencer::AlgorithmEntry::algorithm | ( | ) | const [inline] |
Definition at line 51 of file GaudiSequencer.h.
References m_algorithm.
00051 { return m_algorithm; }
| bool GaudiSequencer::AlgorithmEntry::reverse | ( | ) | const [inline] |
| void GaudiSequencer::AlgorithmEntry::setTimer | ( | int | nb | ) | [inline] |
| int GaudiSequencer::AlgorithmEntry::timer | ( | ) | const [inline] |
Algorithm pointer.
Definition at line 56 of file GaudiSequencer.h.
Referenced by algorithm(), and AlgorithmEntry().
bool GaudiSequencer::AlgorithmEntry::m_reverse [private] |
Indicates that the flag has to be inverted.
Definition at line 57 of file GaudiSequencer.h.
Referenced by AlgorithmEntry(), reverse(), and setReverse().
int GaudiSequencer::AlgorithmEntry::m_timer [private] |
Timer number fo rthis algorithm.
Definition at line 58 of file GaudiSequencer.h.
Referenced by AlgorithmEntry(), setTimer(), and timer().