The Gaudi Framework  v30r3 (a5ef0a68)
GaudiSequencer.h
Go to the documentation of this file.
1 #ifndef GAUDISEQUENCER_H
2 #define GAUDISEQUENCER_H 1
3 
4 // Include files
5 // from Gaudi
7 
8 // Forward declarations
10 
27 {
28 public:
30  GaudiSequencer( const std::string& name, ISvcLocator* pSvcLocator );
31 
32  StatusCode initialize() override;
33  StatusCode execute() override;
34 
35  bool isSequence() const override final { return true; }
36 
38  std::ostream& toControlFlowExpression( std::ostream& os ) const override;
39 
40 private:
41  class AlgorithmEntry final
42  {
43  public:
45  AlgorithmEntry( Algorithm* alg ) : m_algorithm( alg ) {}
46 
47  void setReverse( bool flag ) { m_reverse = flag; }
48 
49  Algorithm* algorithm() const { return m_algorithm; }
50  bool reverse() const { return m_reverse; }
51  void setTimer( int nb ) { m_timer = nb; }
52  int timer() const { return m_timer; }
53 
54  private:
55  Algorithm* m_algorithm = nullptr;
56  bool m_reverse = false;
57  int m_timer = 0;
58  };
59 
61  StatusCode decodeNames();
62 
64  void membershipHandler( Gaudi::Details::PropertyBase& theProp );
65 
67  GaudiSequencer( const GaudiSequencer& a ) = delete;
68  GaudiSequencer& operator=( const GaudiSequencer& a ) = delete;
69 
70  Gaudi::Property<std::vector<std::string>> m_names = {this, "Members", {}, "list of algorithms"};
71  Gaudi::Property<bool> m_sequential = {this, "Sequential", false, "execute members one at a time"};
72  Gaudi::Property<bool> m_modeOR = {this, "ModeOR", false, "use OR logic instead of AND"};
73  Gaudi::Property<bool> m_ignoreFilter = {this, "IgnoreFilterPassed", false, "always continue"};
74  Gaudi::Property<bool> m_measureTime = {this, "MeasureTime", false, "measure time"};
75  Gaudi::Property<bool> m_returnOK = {this, "ReturnOK", false, "forces the sequencer to return a good status"};
76  Gaudi::Property<bool> m_shortCircuit = {this, "ShortCircuit", true, "stop processing as soon as possible"};
77  Gaudi::Property<bool> m_invert = {this, "Invert", false, "invert the logic result of the sequencer"};
78 
80  ISequencerTimerTool* m_timerTool = nullptr;
81  int m_timer;
82 };
83 #endif // GAUDISEQUENCER_H
bool isSequence() const override final
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
Implementation of property with value of concrete type.
Definition: Property.h:381
std::ostream & toControlFlowExpression(std::ostream &os) const override
Produce string represention of the control flow expression.
Definition: Algorithm.cpp:997
StatusCode initialize() override
standard initialization method
Sequencer for executing several algorithms, stopping when one is faulty.
Header file for class GaudiAlgorithm.
void setReverse(bool flag)
Algorithm * algorithm() const
StatusCode execute() override
standard execution method
PropertyMgr & operator=(const PropertyMgr &)=delete
STL class.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:51
The useful base class for data processing algorithms.
PropertyBase base class allowing PropertyBase* collections to be "homogeneous".
Definition: Property.h:32
Base class from which all concrete algorithm classes should be derived.
Definition: Algorithm.h:78
STL class.
Implements the time measurement inside a sequencer.
AlgorithmEntry(Algorithm *alg)
Standard constructor.
int timer() const
bool reverse() const
#define GAUDI_API
Definition: Kernel.h:104
STL class.
void setTimer(int nb)
int m_timer
Timer number for the sequencer.
std::vector< AlgorithmEntry > m_entries
List of algorithms to process.