Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
PythonConfig.h
Go to the documentation of this file.
1 #ifndef GAUDISVC_PYTHONCONFIG_H
2 #define GAUDISVC_PYTHONCONFIG_H
5 #include "GaudiKernel/Property.h"
6 #include "GaudiKernel/SmartIF.h"
7 #include <string>
8 
9 // Class to translate between Python and C++ worlds
10 // It will be exposed to Python via Boost (see .cpp file)
12 public:
14  void addPropertyToJobOptions( const std::string& client, const std::string& name, const std::string& value ) {
16  }
17 
18 private:
20 };
21 
22 // Helper class to be invoked by JobOptionsSvc
23 class PythonConfig {
24 public:
26  StatusCode evaluateConfig( const std::string& filename, const std::string& preAction, const std::string& postAction );
27 
28 private:
30 };
31 
32 #endif
PythonConfig(IJobOptionsSvc *jos)
Definition: PythonConfig.h:25
PythonAdaptor(IJobOptionsSvc *jos)
Definition: PythonConfig.h:13
Implementation of property with value of concrete type.
Definition: Property.h:352
void addPropertyToJobOptions(const std::string &client, const std::string &name, const std::string &value)
Definition: PythonConfig.h:14
STL class.
virtual StatusCode addPropertyToCatalogue(const std::string &client, const Gaudi::Details::PropertyBase &property)=0
Add a property into the JobOptions catalog.
Main interface for the JobOptions service.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
SmartIF< IJobOptionsSvc > m_IJobOptionsSvc
Definition: PythonConfig.h:19
SmartIF< IJobOptionsSvc > m_IJobOptionsSvc
Definition: PythonConfig.h:29