All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
GaudiSequencer::AlgorithmEntry Class Reference

#include <GaudiAlg/GaudiSequencer.h>

Collaboration diagram for GaudiSequencer::AlgorithmEntry:

Public Member Functions

 AlgorithmEntry (Algorithm *alg)
 Standard constructor. More...
 
virtual ~AlgorithmEntry ()
 
void setReverse (bool flag)
 Destructor. More...
 
Algorithmalgorithm () const
 
bool reverse () const
 
void setTimer (int nb)
 
int timer () const
 

Private Attributes

Algorithmm_algorithm
 Algorithm pointer. More...
 
bool m_reverse
 Indicates that the flag has to be inverted. More...
 
int m_timer
 Timer number fo rthis algorithm. More...
 

Detailed Description

Definition at line 48 of file GaudiSequencer.h.

Constructor & Destructor Documentation

GaudiSequencer::AlgorithmEntry::AlgorithmEntry ( Algorithm alg)
inline

Standard constructor.

Definition at line 51 of file GaudiSequencer.h.

51  {
52  m_algorithm = alg;
53  m_reverse = false;
54  m_timer = 0;
55  }
Algorithm * m_algorithm
Algorithm pointer.
bool m_reverse
Indicates that the flag has to be inverted.
int m_timer
Timer number fo rthis algorithm.
virtual GaudiSequencer::AlgorithmEntry::~AlgorithmEntry ( )
inlinevirtual

Definition at line 57 of file GaudiSequencer.h.

57 {};

Member Function Documentation

Algorithm* GaudiSequencer::AlgorithmEntry::algorithm ( ) const
inline

Definition at line 60 of file GaudiSequencer.h.

60 { return m_algorithm; }
Algorithm * m_algorithm
Algorithm pointer.
bool GaudiSequencer::AlgorithmEntry::reverse ( ) const
inline

Definition at line 61 of file GaudiSequencer.h.

61 { return m_reverse; }
bool m_reverse
Indicates that the flag has to be inverted.
void GaudiSequencer::AlgorithmEntry::setReverse ( bool  flag)
inline

Destructor.

Definition at line 58 of file GaudiSequencer.h.

58 { m_reverse = flag; }
bool m_reverse
Indicates that the flag has to be inverted.
void GaudiSequencer::AlgorithmEntry::setTimer ( int  nb)
inline

Definition at line 62 of file GaudiSequencer.h.

62 { m_timer = nb; }
int m_timer
Timer number fo rthis algorithm.
int GaudiSequencer::AlgorithmEntry::timer ( ) const
inline

Definition at line 63 of file GaudiSequencer.h.

63 { return m_timer; }
int m_timer
Timer number fo rthis algorithm.

Member Data Documentation

Algorithm* GaudiSequencer::AlgorithmEntry::m_algorithm
private

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.


The documentation for this class was generated from the following file: