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 
42  void membershipHandler( Gaudi::Details::PropertyBase& theProp );
43 
44 protected:
45  class AlgorithmEntry final
46  {
47  public:
49  AlgorithmEntry( Algorithm* alg ) : m_algorithm( alg ) {}
50 
51  void setReverse( bool flag ) { m_reverse = flag; }
52 
53  Algorithm* algorithm() const { return m_algorithm; }
54  bool reverse() const { return m_reverse; }
55  void setTimer( int nb ) { m_timer = nb; }
56  int timer() const { return m_timer; }
57  private:
58  Algorithm* m_algorithm = nullptr;
59  bool m_reverse = false;
60  int m_timer = 0;
61  };
62 
64  StatusCode decodeNames();
65 
66 public:
68  std::ostream& toControlFlowExpression(std::ostream& os) const override;
69 
70 private:
72  GaudiSequencer( const GaudiSequencer& a ) = delete;
73 
75  GaudiSequencer& operator=( const GaudiSequencer& a ) = delete;
76 
77  Gaudi::Property<std::vector<std::string>> m_names{this, "Members", {}, "list of algorithms"};
78  Gaudi::Property<bool> m_modeOR{this, "ModeOR", false, "use OR loginc instead of AND"};
79  Gaudi::Property<bool> m_ignoreFilter{this, "IgnoreFilterPassed", false, "always continue"};
80  Gaudi::Property<bool> m_measureTime{this, "MeasureTime", false, "measure time"};
81  Gaudi::Property<bool> m_returnOK{this, "ReturnOK", false, "forces the sequencer to return a good status"};
82  Gaudi::Property<bool> m_shortCircuit{this, "ShortCircuit", true, "stop processing as soon as possible"};
83  Gaudi::Property<bool> m_invert{this, "Invert", false, "invert the logic result of the sequencer"};
84 
86  ISequencerTimerTool* m_timerTool = nullptr;
87  int m_timer;
88 };
89 #endif // GAUDISEQUENCER_H
StatusCode endRun() override
Algorithm end run. This method is called at the end of the event loop.
Definition: Algorithm.cpp:495
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:314
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:444
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.