1 #ifndef FWCore_PythonParameterSet_PythonModule_h
2 #define FWCore_PythonParameterSet_PythonModule_h
29 PyErr_SetString(PyExc_RuntimeError, ex.
message().c_str());
35 boost::python::register_exception_translator<cms::Exception>(translator);
37 boost::python::class_<edm::InputTag>(
"InputTag", boost::python::init<std::string>())
38 .def(boost::python::init<std::string, std::string, std::string>())
39 .def(boost::python::init<std::string, std::string>())
40 .def(
"label", &
edm::InputTag::label, boost::python::return_value_policy<boost::python::copy_const_reference>())
41 .def(
"instance", &
edm::InputTag::instance, boost::python::return_value_policy<boost::python::copy_const_reference>())
42 .def(
"process", &
edm::InputTag::process, boost::python::return_value_policy<boost::python::copy_const_reference>())
45 boost::python::class_<edm::ESInputTag>(
"ESInputTag", boost::python::init<std::string>())
46 .def(boost::python::init<std::string, std::string>())
47 .def(
"module", &
edm::ESInputTag::module, boost::python::return_value_policy<boost::python::copy_const_reference>())
48 .def(
"data", &
edm::ESInputTag::data, boost::python::return_value_policy<boost::python::copy_const_reference>())
51 boost::python::class_<edm::EventID>(
"EventID", boost::python::init<unsigned int, unsigned int, unsigned int>())
57 boost::python::class_<edm::LuminosityBlockID>(
"LuminosityBlockID", boost::python::init<unsigned int, unsigned int>())
62 boost::python::class_<edm::FileInPath>(
"FileInPath", boost::python::init<std::string>())
67 boost::python::class_<edm::LuminosityBlockRange>(
"LuminosityBlockRange", boost::python::init<unsigned int, unsigned int, unsigned int, unsigned int>())
74 boost::python::class_<edm::EventRange>(
"EventRange", boost::python::init<unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int>())
83 boost::python::class_<PythonParameterSet>(
"ParameterSet")
84 .
def(
"addInt32", &PythonParameterSet::addParameter<int>)
85 .def(
"getInt32", &PythonParameterSet::getParameter<int>)
86 .def(
"addVInt32", &PythonParameterSet::addParameters<int>)
87 .def(
"getVInt32", &PythonParameterSet::getParameters<int>)
88 .def(
"addUInt32", &PythonParameterSet::addParameter<unsigned int>)
89 .def(
"getUInt32", &PythonParameterSet::getParameter<unsigned int>)
90 .def(
"addVUInt32", &PythonParameterSet::addParameters<unsigned int>)
91 .def(
"getVUInt32", &PythonParameterSet::getParameters<unsigned int>)
92 .def(
"addInt64", &PythonParameterSet::addParameter<long long>)
93 .def(
"getInt64", &PythonParameterSet::getParameter<long long>)
94 .def(
"addUInt64", &PythonParameterSet::addParameter<unsigned long long>)
95 .def(
"getUInt64", &PythonParameterSet::getParameter<unsigned long long>)
96 .def(
"addVInt64", &PythonParameterSet::addParameters<long long>)
97 .def(
"getVInt64", &PythonParameterSet::getParameters<long long>)
98 .def(
"addVUInt64", &PythonParameterSet::addParameters<unsigned long long>)
99 .def(
"getVUInt64", &PythonParameterSet::getParameters<unsigned long long>)
100 .def(
"addDouble", &PythonParameterSet::addParameter<double>)
101 .def(
"getDouble", &PythonParameterSet::getParameter<double>)
102 .def(
"addVDouble", &PythonParameterSet::addParameters<double>)
103 .def(
"getVDouble", &PythonParameterSet::getParameters<double>)
104 .def(
"addBool", &PythonParameterSet::addParameter<bool>)
105 .def(
"getBool", &PythonParameterSet::getParameter<bool>)
106 .def(
"addString", &PythonParameterSet::addParameter<std::string>)
107 .def(
"getString", &PythonParameterSet::getParameter<std::string>)
108 .def(
"addVString", &PythonParameterSet::addParameters<std::string>)
109 .def(
"getVString", &PythonParameterSet::getParameters<std::string>)
110 .def(
"addInputTag", &PythonParameterSet::addParameter<edm::InputTag>)
111 .def(
"getInputTag", &PythonParameterSet::getParameter<edm::InputTag>)
112 .def(
"addVInputTag", &PythonParameterSet::addParameters<edm::InputTag>)
113 .def(
"getVInputTag", &PythonParameterSet::getParameters<edm::InputTag>)
114 .def(
"addESInputTag", &PythonParameterSet::addParameter<edm::ESInputTag>)
115 .def(
"getESInputTag", &PythonParameterSet::getParameter<edm::ESInputTag>)
116 .def(
"addVESInputTag", &PythonParameterSet::addParameters<edm::ESInputTag>)
117 .def(
"getVESInputTag", &PythonParameterSet::getParameters<edm::ESInputTag>)
118 .def(
"addEventID", &PythonParameterSet::addParameter<edm::EventID>)
119 .def(
"getEventID", &PythonParameterSet::getParameter<edm::EventID>)
120 .def(
"addVEventID", &PythonParameterSet::addParameters<edm::EventID>)
121 .def(
"getVEventID", &PythonParameterSet::getParameters<edm::EventID>)
122 .def(
"addLuminosityBlockID", &PythonParameterSet::addParameter<edm::LuminosityBlockID>)
123 .def(
"getLuminosityBlockID", &PythonParameterSet::getParameter<edm::LuminosityBlockID>)
124 .def(
"addVLuminosityBlockID", &PythonParameterSet::addParameters<edm::LuminosityBlockID>)
125 .def(
"getVLuminosityBlockID", &PythonParameterSet::getParameters<edm::LuminosityBlockID>)
126 .def(
"addLuminosityBlockRange", &PythonParameterSet::addParameter<edm::LuminosityBlockRange>)
127 .def(
"getLuminosityBlockRange", &PythonParameterSet::getParameter<edm::LuminosityBlockRange>)
128 .def(
"addVLuminosityBlockRange", &PythonParameterSet::addParameters<edm::LuminosityBlockRange>)
129 .def(
"getVLuminosityBlockRange", &PythonParameterSet::getParameters<edm::LuminosityBlockRange>)
130 .def(
"addEventRange", &PythonParameterSet::addParameter<edm::EventRange>)
131 .def(
"getEventRange", &PythonParameterSet::getParameter<edm::EventRange>)
132 .def(
"addVEventRange", &PythonParameterSet::addParameters<edm::EventRange>)
133 .def(
"getVEventRange", &PythonParameterSet::getParameters<edm::EventRange>)
138 .def(
"addFileInPath", &PythonParameterSet::addParameter<edm::FileInPath>)
139 .def(
"getFileInPath", &PythonParameterSet::getParameter<edm::FileInPath>)
151 boost::python::class_<PythonProcessDesc>(
"ProcessDesc", boost::python::init<>())
152 .def(boost::python::init<std::string>())
EventNumber_t event() const
edm::EventID newEventID(unsigned int run, unsigned int lumi, unsigned int event)
PythonParameterSet getPSet(bool tracked, std::string const &name) const
LumiNumber_t startLumi() const
PythonParameterSet newPSet() const
std::string message() const
RunNumber_t startRun() const
std::string relativePath() const
LuminosityBlockNumber_t luminosityBlock() const
LuminosityBlockNumber_t startLumi() const
BOOST_PYTHON_MODULE(pluginBeamSpotObjectsPyInterface)
RunNumber_t endRun() const
EventNumber_t endEvent() const
boost::python::list getVPSet(bool tracked, std::string const &name)
edm::LuminosityBlockID newLuminosityBlockID(unsigned int run, unsigned int lumi)
edm::ESInputTag newESInputTag(std::string const &module, std::string const &data)
edm::EventRange newEventRange(unsigned int start, unsigned int startLumi, unsigned int startSub, unsigned int end, unsigned int endLumi, unsigned int endSub)
void addPSet(bool tracked, std::string const &name, PythonParameterSet const &ppset)
LumiNumber_t endLumi() const
edm::LuminosityBlockRange newLuminosityBlockRange(unsigned int start, unsigned int startSub, unsigned int end, unsigned int endSub)
RunNumber_t startRun() const
edm::InputTag newInputTag(std::string const &label, std::string const &instance, std::string const &process)
EventNumber_t startEvent() const
LuminosityBlockNumber_t luminosityBlock() const
void addNewFileInPath(bool tracked, std::string const &name, std::string const &value)
void addVPSet(bool tracked, std::string const &name, boost::python::list value)
RunNumber_t endRun() const
LuminosityBlockNumber_t endLumi() const
std::string fullPath() const
PythonParameterSet newPSet() const