LArSoft  v06_85_00
Liquid Argon Software toolkit - http://larsoft.org/
pyG4StepStatus.cc File Reference
#include <boost/python.hpp>
#include "G4StepStatus.hh"

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.

References fhicl::detail::atom::value().

Referenced by BOOST_PYTHON_MODULE().

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 }
std::string value(boost::any const &)