31 #include <boost/python.hpp> 32 #include "G4Version.hh" 33 #include "G4ProductionCutsTable.hh" 34 #include "G4Material.hh" 43 class_<G4ProductionCutsTable, boost::noncopyable>
44 (
"G4ProductionCutsTable",
"production cuts table", no_init)
45 .def(
"GetProductionCutsTable",
46 &G4ProductionCutsTable::GetProductionCutsTable,
47 return_value_policy<reference_existing_object>())
48 .staticmethod(
"GetProductionCutsTable")
53 .def(
"GetLowEdgeEnergy", &G4ProductionCutsTable::GetLowEdgeEnergy)
54 .def(
"GetHighEdgeEnergy", &G4ProductionCutsTable::GetHighEdgeEnergy)
55 .def(
"SetEnergyRange", &G4ProductionCutsTable::SetEnergyRange)
56 .def(
"DumpCouples", &G4ProductionCutsTable::DumpCouples)
57 .def(
"IsModified", &G4ProductionCutsTable::IsModified)
59 #if G4VERSION_NUMBER >= 830 60 .def(
"ConvertRangeToEnergy", &G4ProductionCutsTable::ConvertRangeToEnergy)
63 .def(
"SetVerboseLevel", &G4ProductionCutsTable::SetVerboseLevel)
64 .def(
"GetVerboseLevel", &G4ProductionCutsTable::GetVerboseLevel)
void export_G4ProductionCutsTable()