17typedef PyLine_<TBeamline<FlaggedElmPtr> >
PyLine;
61 void append(boost::python::object element);
70 boost::python::class_<PyLine>
make_class(
const char* className);
76 std::vector<boost::python::object>
line;
86 index = line.size()+index;
96 if (objectPtr == NULL) {
97 throw OpalException(
"PyLine_<TBeamline<FlaggedElmPtr> >::register",
98 "Trying to register something that was not a Opal Object");
105 boost::python::docstring_options docop(
true,
true,
false);
106 auto pyclass = boost::python::class_<PyLine>(className);
115 }
catch (std::exception& exc) {
126 line.at(i) = pyelement;
127 }
catch (std::exception& exc) {
128 throw OpalException(
"PyLine::setElement",
"Failed to set element");
130 boost::python::object pyopalelement = pyelement.attr(
"get_opal_element")();
132 boost::python::extract<PyOpal::PyOpalObjectNS::PyOpalObject<OpalElement>& >(pyopalelement);
134 for (
BL::iterator it = object_m->begin(); it != object_m->end(); ++it) {
137 std::shared_ptr<OpalElement> opalElementShared = cpyelement.
getOpalShared();
138 OpalElement* opalElement = opalElementShared.get();
140 throw OpalException(
"PyLine::setElement",
"Failed to extract element");
145 throw OpalException(
"PyLine::setElement",
"Failed to cast element");
150 object_m->insert(new_it, felmptr);
162 line.push_back(boost::python::object());
164 object_m->push_back(felmptr);
166 setElement(i, pyelement);
PyLine_< TBeamline< FlaggedElmPtr > > PyLine
std::string::iterator iterator
int wrangleIndex(int index)
void append(boost::python::object element)
void setElement(int i, boost::python::object element)
std::vector< boost::python::object > line
boost::python::class_< PyLine > make_class(const char *className)
boost::python::object getElement(int i)
std::shared_ptr< C > getOpalShared()
ElementBase * getElement() const
Return the embedded CLASSIC element.
void setElement(ElementBase *)
Assign new CLASSIC element.
The base class for all OPAL objects.
static OpalData * getInstance()
void define(Object *newObject)
Define a new object.
A section of a beam line.
A section of a beam line.
virtual void update()
Update the embedded CLASSIC element.
The base class for all OPAL exceptions.