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

Go to the source code of this file.

Functions

void export_G4ProcessType ()
 

Function Documentation

void export_G4ProcessType ( )

Definition at line 40 of file pyG4ProcessType.cc.

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

Referenced by BOOST_PYTHON_MODULE().

41 {
42  enum_<G4ProcessType>("G4ProcessType")
43  .value("fNotDefined", fNotDefined)
44  .value("fTransportation", fTransportation)
45  .value("fElectromagnetic", fElectromagnetic)
46  .value("fOptical", fOptical)
47  .value("fHadronic", fHadronic)
48  .value("fPhotolepton_hadron", fPhotolepton_hadron)
49  .value("fDecay", fDecay)
50  .value("fGeneral", fGeneral)
51  .value("fParameterisation", fParameterisation)
52  .value("fUserDefined", fUserDefined)
53  ;
54 }
std::string value(boost::any const &)