31 #include <boost/python.hpp>
37 using namespace boost::python;
44 class_<G4UserLimits, G4UserLimits*>
45 (
"G4UserLimits",
"user step limitations")
47 .def(init<G4double>())
48 .def(init<G4double, G4double>())
49 .def(init<G4double, G4double, G4double>())
50 .def(init<G4double, G4double, G4double, G4double>())
51 .def(init<G4double, G4double, G4double, G4double, G4double>())
53 .def(init<const G4String&>())
54 .def(init<const G4String&, G4double>())
55 .def(init<const G4String&, G4double, G4double>())
56 .def(init<const G4String&, G4double, G4double, G4double>())
57 .def(init<const G4String&, G4double, G4double, G4double, G4double>())
73 return_internal_reference<>())