The Gaudi Framework  v29r0 (ff2e7097)
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 {
13 public:
15  void addPropertyToJobOptions( const std::string& client, const std::string& name, const std::string& value )
16  {
18  }
19 
20 private:
22 };
23 
24 // Helper class to be invoked by JobOptionsSvc
26 {
27 public:
29  StatusCode evaluateConfig( const std::string& filename, const std::string& preAction, const std::string& postAction );
30 
31 private:
33 };
34 
35 #endif
PythonConfig(IJobOptionsSvc *jos)
Definition: PythonConfig.h:28
PythonAdaptor(IJobOptionsSvc *jos)
Definition: PythonConfig.h:14
Implementation of property with value of concrete type.
Definition: Property.h:319
void addPropertyToJobOptions(const std::string &client, const std::string &name, const std::string &value)
Definition: PythonConfig.h:15
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:28
SmartIF< IJobOptionsSvc > m_IJobOptionsSvc
Definition: PythonConfig.h:21
SmartIF< IJobOptionsSvc > m_IJobOptionsSvc
Definition: PythonConfig.h:32