CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ParameterSetReader.cc
Go to the documentation of this file.
4 
5 std::unique_ptr<edm::ParameterSet> edm::getPSetFromConfig(const std::string& config) {
6  return PyBind11ProcessDesc(config).parameterSet();
7 }
8 
9 //its really the stuff in MakePythonParameterSets that should be in the different namespace
10 //I'll do that if this setup is ok
11 std::unique_ptr<edm::ParameterSet> edm::readConfig(std::string const& config, int argc, char* argv[]) {
12  return edm::cmspybind11::readConfig(config, argc, argv);
13 }
14 
15 std::unique_ptr<edm::ParameterSet> edm::readConfig(std::string const& config) {
16  return edm::cmspybind11::readConfig(config);
17 }
18 
19 void edm::makeParameterSets(std::string const& configtext, std::unique_ptr<ParameterSet>& main) {
20  edm::cmspybind11::makeParameterSets(configtext, main);
21 }
22 
23 std::unique_ptr<edm::ParameterSet> edm::readPSetsFrom(std::string const& fileOrString) {
24  return edm::cmspybind11::readPSetsFrom(fileOrString);
25 }
std::unique_ptr< edm::ParameterSet > parameterSet() const
std::unique_ptr< edm::ParameterSet > getPSetFromConfig(const std::string &config)
std::unique_ptr< edm::ParameterSet > readConfig(std::string const &config, int argc, char *argv[])
same, but with arguments
std::unique_ptr< ParameterSet > readPSetsFrom(std::string const &fileOrString)
std::unique_ptr< edm::ParameterSet > readPSetsFrom(std::string const &fileOrString)
tuple argc
Definition: dir2webdir.py:39
tuple config
parse the configuration file
std::unique_ptr< ParameterSet > readConfig(std::string const &config)
void makeParameterSets(std::string const &configtext, std::unique_ptr< ParameterSet > &main)
essentially the same as the previous method
void makeParameterSets(std::string const &configtext, std::unique_ptr< ParameterSet > &main)
essentially the same as the previous method