The Gaudi Framework  v36r16 (ea80daf8)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GaudiSequencer::AlgorithmEntry Class Referencefinal
Collaboration diagram for GaudiSequencer::AlgorithmEntry:

Public Member Functions

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

Private Attributes

Gaudi::Algorithmm_algorithm = nullptr
 Algorithm pointer. More...
 
bool m_reverse = false
 Indicates that the flag has to be inverted. More...
 
int m_timer = 0
 Timer number for this algorithm. More...
 

Detailed Description

Definition at line 51 of file GaudiSequencer.h.

Constructor & Destructor Documentation

◆ AlgorithmEntry()

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

Standard constructor.

Definition at line 54 of file GaudiSequencer.h.

54 : m_algorithm( alg ) {}

Member Function Documentation

◆ algorithm()

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

Definition at line 58 of file GaudiSequencer.h.

58 { return m_algorithm; }

◆ reverse()

bool GaudiSequencer::AlgorithmEntry::reverse ( ) const
inline

Definition at line 59 of file GaudiSequencer.h.

59 { return m_reverse; }

◆ setReverse()

void GaudiSequencer::AlgorithmEntry::setReverse ( bool  flag)
inline

Definition at line 56 of file GaudiSequencer.h.

56 { m_reverse = flag; }

◆ setTimer()

void GaudiSequencer::AlgorithmEntry::setTimer ( int  nb)
inline

Definition at line 60 of file GaudiSequencer.h.

60 { m_timer = nb; }

◆ timer()

int GaudiSequencer::AlgorithmEntry::timer ( ) const
inline

Definition at line 61 of file GaudiSequencer.h.

61 { return m_timer; }

Member Data Documentation

◆ m_algorithm

Gaudi::Algorithm* GaudiSequencer::AlgorithmEntry::m_algorithm = nullptr
private

Algorithm pointer.

Definition at line 64 of file GaudiSequencer.h.

◆ m_reverse

bool GaudiSequencer::AlgorithmEntry::m_reverse = false
private

Indicates that the flag has to be inverted.

Definition at line 65 of file GaudiSequencer.h.

◆ m_timer

int GaudiSequencer::AlgorithmEntry::m_timer = 0
private

Timer number for this algorithm.

Definition at line 66 of file GaudiSequencer.h.


The documentation for this class was generated from the following file:
GaudiSequencer::AlgorithmEntry::m_reverse
bool m_reverse
Indicates that the flag has to be inverted.
Definition: GaudiSequencer.h:65
basic.alg
alg
Definition: basic.py:15
GaudiSequencer::AlgorithmEntry::m_timer
int m_timer
Timer number for this algorithm.
Definition: GaudiSequencer.h:66
GaudiSequencer::AlgorithmEntry::m_algorithm
Gaudi::Algorithm * m_algorithm
Algorithm pointer.
Definition: GaudiSequencer.h:64