#include <boost/python.hpp>
#include "G4StepStatus.hh"
Go to the source code of this file.
◆ export_G4StepStatus()
void export_G4StepStatus |
( |
| ) |
|
Definition at line 40 of file pyG4StepStatus.cc.
42 enum_<G4StepStatus>(
"G4StepStatus")
43 .value(
"fWorldBoundary", fWorldBoundary)
44 .value(
"fGeomBoundary", fGeomBoundary)
45 .value(
"fAtRestDoItProc", fAtRestDoItProc)
46 .value(
"fAlongStepDoItProc", fAlongStepDoItProc)
47 .value(
"fPostStepDoItProc", fPostStepDoItProc)
48 .value(
"fUserDefinedLimit", fUserDefinedLimit)
49 .value(
"fExclusivelyForcedProc", fExclusivelyForcedProc)
50 .value(
"fUndefined", fUndefined)