1 #ifndef GAUDISEQUENCER_H
2 #define GAUDISEQUENCER_H 1
6 #include "GaudiAlg/GaudiAlgorithm.h"
41 void membershipHandler(
Property& theProp );
45 class AlgorithmEntry final {
48 AlgorithmEntry(
Algorithm* alg ) : m_algorithm(alg) { }
50 void setReverse(
bool flag ) { m_reverse = flag; }
52 Algorithm* algorithm()
const {
return m_algorithm; }
53 bool reverse()
const {
return m_reverse; }
54 void setTimer(
int nb ) { m_timer = nb; }
55 int timer()
const {
return m_timer; }
58 bool m_reverse =
false;
74 std::vector<AlgorithmEntry> m_entries;
86 #endif // GAUDISEQUENCER_H
GaudiAlgorithm & operator=(const GaudiAlgorithm &)=delete
reverse_wrapper< T > reverse(T &&iterable)
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
StatusCode initialize() override
standard initialization method
Sequencer for executing several algorithms, stopping when one is faulty.
StatusCode execute() override
standard execution method
This class is used for returning status codes from appropriate routines.
StatusCode finalize() override
standard finalization method
The useful base class for data processing algorithms.
Base class from which all concrete algorithm classes should be derived.
Property base class allowing Property* collections to be "homogeneous".