The Gaudi Framework  v28r3 (cc1cf868)
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  ~GaudiSequencer() override = default;
33 
34  StatusCode initialize() override;
35  StatusCode execute() override;
36  StatusCode finalize() override;
37 
38  StatusCode beginRun() override;
39  StatusCode endRun() override;
40 
41  bool isSequence() const override final { return true; }
42 
44  void membershipHandler( Gaudi::Details::PropertyBase& theProp );
45 
46 protected:
47  class AlgorithmEntry final
48  {
49  public:
51  AlgorithmEntry( Algorithm* alg ) : m_algorithm( alg ) {}
52 
53  void setReverse( bool flag ) { m_reverse = flag; }
54 
55  Algorithm* algorithm() const { return m_algorithm; }
56  bool reverse() const { return m_reverse; }
57  void setTimer( int nb ) { m_timer = nb; }
58  int timer() const { return m_timer; }
59  private:
60  Algorithm* m_algorithm = nullptr;
61  bool m_reverse = false;
62  int m_timer = 0;
63  };
64 
66  StatusCode decodeNames();
67 
68 public:
70  std::ostream& toControlFlowExpression(std::ostream& os) const override;
71 
72 private:
74  GaudiSequencer( const GaudiSequencer& a ) = delete;
75 
77  GaudiSequencer& operator=( const GaudiSequencer& a ) = delete;
78 
79  Gaudi::Property<std::vector<std::string>> m_names{this, "Members", {}, "list of algorithms"};
80  Gaudi::Property<bool> m_sequential{this, "Sequential", false, "execute members one at a time"};
81  Gaudi::Property<bool> m_modeOR{this, "ModeOR", false, "use OR logic instead of AND"};
82  Gaudi::Property<bool> m_ignoreFilter{this, "IgnoreFilterPassed", false, "always continue"};
83  Gaudi::Property<bool> m_measureTime{this, "MeasureTime", false, "measure time"};
84  Gaudi::Property<bool> m_returnOK{this, "ReturnOK", false, "forces the sequencer to return a good status"};
85  Gaudi::Property<bool> m_shortCircuit{this, "ShortCircuit", true, "stop processing as soon as possible"};
86  Gaudi::Property<bool> m_invert{this, "Invert", false, "invert the logic result of the sequencer"};
87 
89  ISequencerTimerTool* m_timerTool = nullptr;
90  int m_timer;
91 };
92 #endif // GAUDISEQUENCER_H
StatusCode endRun() override
Algorithm end run. This method is called at the end of the event loop.
Definition: Algorithm.cpp:517
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:319
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:26
StatusCode beginRun() override
Algorithm begin run.
Definition: Algorithm.cpp:469
StatusCode finalize() override
standard finalization method
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:107
STL class.
void setTimer(int nb)
int m_timer
Timer number for the sequencer.
std::vector< AlgorithmEntry > m_entries
List of algorithms to process.