#include <boost/python.hpp>
#include "G4VPhysicsConstructor.hh"
Go to the source code of this file.
void export_G4VPhysicsConstructor |
( |
| ) |
|
Definition at line 72 of file pyG4VPhysicsConstructor.cc.
Referenced by BOOST_PYTHON_MODULE().
74 class_<CB_G4VPhysicsConstructor, boost::noncopyable>
75 (
"G4VPhysicsConstructor",
76 "base class of user physics constructor")
78 .def(init<const G4String&>())
80 .def(
"ConstructParticle",
81 pure_virtual(&G4VPhysicsConstructor::ConstructParticle))
82 .def(
"ConstructProcess",
83 pure_virtual(&G4VPhysicsConstructor::ConstructProcess))
85 .def(
"SetPhysicsName", &G4VPhysicsConstructor::SetPhysicsName,
87 .def(
"GetPhysicsName", &G4VPhysicsConstructor::GetPhysicsName,
88 return_value_policy<return_by_value>())
89 .def(
"SetVerboseLevel", &G4VPhysicsConstructor::SetVerboseLevel)
90 .def(
"GetVerboseLevel", &G4VPhysicsConstructor::GetVerboseLevel)