|
Gaudi Framework, version v23r2 |
| Home | Generated: Thu Jun 28 2012 |
#include <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. | |
Definition at line 48 of file GaudiSequencer.h.
| GaudiSequencer::AlgorithmEntry::AlgorithmEntry | ( | Algorithm * | alg ) | [inline] |
Standard constructor.
Definition at line 51 of file GaudiSequencer.h.
{
m_algorithm = alg;
m_reverse = false;
m_timer = 0;
}
| virtual GaudiSequencer::AlgorithmEntry::~AlgorithmEntry | ( | ) | [inline, virtual] |
Definition at line 57 of file GaudiSequencer.h.
{};
| Algorithm* GaudiSequencer::AlgorithmEntry::algorithm | ( | ) | const [inline] |
Definition at line 60 of file GaudiSequencer.h.
{ return m_algorithm; }
| bool GaudiSequencer::AlgorithmEntry::reverse | ( | ) | const [inline] |
Definition at line 61 of file GaudiSequencer.h.
{ return m_reverse; }
| void GaudiSequencer::AlgorithmEntry::setReverse | ( | bool | flag ) | [inline] |
| void GaudiSequencer::AlgorithmEntry::setTimer | ( | int | nb ) | [inline] |
Definition at line 62 of file GaudiSequencer.h.
{ m_timer = nb; }
| int GaudiSequencer::AlgorithmEntry::timer | ( | ) | const [inline] |
Definition at line 63 of file GaudiSequencer.h.
{ return m_timer; }
Algorithm pointer.
Definition at line 65 of file GaudiSequencer.h.
bool GaudiSequencer::AlgorithmEntry::m_reverse [private] |
Indicates that the flag has to be inverted.
Definition at line 66 of file GaudiSequencer.h.
int GaudiSequencer::AlgorithmEntry::m_timer [private] |
Timer number fo rthis algorithm.
Definition at line 67 of file GaudiSequencer.h.