Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
PythonScriptingSvc.h
Go to the documentation of this file.
1 #ifndef GAUDIPYTHON_PYTHONSCRIPTINGSVC_H
2 #define GAUDIPYTHON_PYTHONSCRIPTINGSVC_H
3 
4 // Include Files
5 #include "GaudiKernel/IRunable.h"
6 #include "GaudiKernel/Service.h"
7 
15 class PythonScriptingSvc : public extends<Service, IRunable> {
16 
17 public:
20 
22  StatusCode initialize() override;
23 
25  StatusCode finalize() override;
26 
28  StatusCode run() override;
29 
31  ~PythonScriptingSvc() override;
32 
33 private:
36 };
37 
38 #endif // GAUDIPYTHON_PYTHONSCRIPTINGSVC_H
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
const std::string & name() const override
Retrieve name of the service.
Definition: Service.cpp:274
~PythonScriptingSvc() override
Destructor.
StatusCode run() override
Run the service by taking full control. [IRunable::run()].
StatusCode finalize() override
Finalize the service. [IService::finalize()].
STL class.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
std::string m_startupScript
Startup script.
This service handles scripting implemented using Python.
Base class used to extend a class implementing other interfaces.
Definition: extends.h:10
StatusCode initialize() override
Initialize the service. [IService::initialize()].
PythonScriptingSvc(const std::string &name, ISvcLocator *svc)
Standard Constructor.