Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
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 // ============================================================================
21 class AlgContextAuditor : public Auditor {
22 public:
23  // IAuditor implementation
24  void beforeInitialize( INamedInterface* a ) override;
25  void afterInitialize( INamedInterface* a ) override;
26  //
27  void beforeExecute( INamedInterface* a ) override;
28  void afterExecute( INamedInterface* a, const StatusCode& s ) override;
29  //
30  void beforeFinalize( INamedInterface* a ) override;
31  void afterFinalize( INamedInterface* a ) override;
32 
33 public:
37  StatusCode initialize() override;
39  StatusCode finalize() override;
40 
41 private:
43  AlgContextAuditor() = delete;
44  AlgContextAuditor( const AlgContextAuditor& ) = delete;
45  AlgContextAuditor& operator=( const AlgContextAuditor& ) = delete;
46 
47 private:
50 };
51 
52 // ============================================================================
53 // The END
54 // ============================================================================
55 #endif // GAUDIAUD_ALGCONTEXTAUDITOR_H
StatusCode initialize() override
standard initialization,
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:50
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:312
An abstract interface for Algorithm Context Service.
void beforeExecute(INamedInterface *a) override
const std::string & name() const override
Definition: Auditor.cpp:193
Base class from which all concrete auditor classes should be derived.
Definition: Auditor.h:34