AlgContextAuditor.h
Go to the documentation of this file.
1 #ifndef GAUDIAUD_ALGCONTEXTAUDITOR_H
2 #define GAUDIAUD_ALGCONTEXTAUDITOR_H
3 // ============================================================================
4 // Include files
5 // ============================================================================
6 // GaudiKernel
7 // ============================================================================
8 #include "GaudiKernel/Auditor.h"
10 // ============================================================================
11 // Forward declarations
12 // ============================================================================
13 class IAlgContextSvc ;
14 // ============================================================================
22  : public Auditor
23 {
24 public:
25  // IAuditor implementation
26  void beforeInitialize ( INamedInterface* a ) override;
27  void afterInitialize ( INamedInterface* a ) override;
28  //
29  void beforeExecute ( INamedInterface* a ) override;
30  void afterExecute ( INamedInterface* a ,
31  const StatusCode& s ) override;
32  //
33  void beforeFinalize ( INamedInterface* a ) override;
34  void afterFinalize ( INamedInterface* a ) override;
35 
36 public:
39  ( const std::string& name ,
40  ISvcLocator* pSvc ) ;
41  ~AlgContextAuditor () override = default;
43  StatusCode initialize () override;
45  StatusCode finalize () override;
46 private:
48  AlgContextAuditor () = delete;
49  AlgContextAuditor ( const AlgContextAuditor& ) = delete;
50  AlgContextAuditor& operator=( const AlgContextAuditor& ) = delete;
51 private:
54 } ;
55 
56 // ============================================================================
57 // The END
58 // ============================================================================
59 #endif // GAUDIAUD_ALGCONTEXTAUDITOR_H
60 // ============================================================================
StatusCode initialize() override
standard initialization,
~AlgContextAuditor() override=default
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
Description: Register/Unregister the AlgContext of each algorithm before entering the algorithm and a...
void afterFinalize(INamedInterface *a) override
AlgContextAuditor()=delete
delete the default/copy constructor and assignment
SmartIF< IAlgContextSvc > m_svc
the pointer to Algorithm Context Service
void beforeInitialize(INamedInterface *a) override
void afterInitialize(INamedInterface *a) override
STL class.
AlgContextAuditor & operator=(const AlgContextAuditor &)=delete
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
StatusCode finalize() override
standard finalization,
IInterface compliant class extending IInterface with the name() method.
void beforeFinalize(INamedInterface *a) override
void afterExecute(INamedInterface *a, const StatusCode &s) override
string s
Definition: gaudirun.py:245
An abstract interface for Algorithm Context Service.
void beforeExecute(INamedInterface *a) override
const std::string & name() const override
Definition: Auditor.cpp:202
Base class from which all concrete auditor classes should be derived.
Definition: Auditor.h:35