Geant4  10.03.p03
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pyG4StepStatus.cc File Reference
#include <boost/python.hpp>
#include "G4StepStatus.hh"
Include dependency graph for pyG4StepStatus.cc:

Go to the source code of this file.

Functions

void export_G4StepStatus ()
 

Function Documentation

void export_G4StepStatus ( )

Definition at line 40 of file pyG4StepStatus.cc.

41 {
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)
51  ;
52 }
const XML_Char int const XML_Char * value
Definition: expat.h:331

Here is the caller graph for this function: