LDMX Software
Python.h
1#ifndef FRAMEWORK_CONFIGUREPYTHON_H
2#define FRAMEWORK_CONFIGUREPYTHON_H
3
4#include "Framework/Configure/Parameters.h"
5
15namespace framework::config {
16
39Parameters run(const std::string& root_object, const std::string& pythonScript,
40 char* args[], int nargs);
41
42} // namespace framework::config
43
44#endif // FRAMEWORK_CONFIGURE_PYTHON_H
python execution and parameter extraction
Definition Parameters.h:19
Parameters run(const std::string &root_object, const std::string &pythonScript, char *args[], int nargs)
run the python script and extract the parameters
Definition Python.cxx:292