Geant4-11
Functions
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

◆ export_G4ProcessType()

void export_G4ProcessType ( )

Definition at line 39 of file pyG4ProcessType.cc.

40{
41 enum_<G4ProcessType>("G4ProcessType")
42 .value("fNotDefined", fNotDefined)
43 .value("fTransportation", fTransportation)
44 .value("fElectromagnetic", fElectromagnetic)
45 .value("fOptical", fOptical)
46 .value("fHadronic", fHadronic)
47 .value("fPhotolepton_hadron", fPhotolepton_hadron)
48 .value("fDecay", fDecay)
49 .value("fGeneral", fGeneral)
50 .value("fParameterisation", fParameterisation)
51 .value("fUserDefined", fUserDefined)
52 ;
53}
@ fOptical
@ fParameterisation
@ fGeneral
@ fDecay
@ fElectromagnetic
@ fHadronic
@ fUserDefined
@ fTransportation
@ fPhotolepton_hadron
@ fNotDefined

References fDecay, fElectromagnetic, fGeneral, fHadronic, fNotDefined, fOptical, fParameterisation, fPhotolepton_hadron, fTransportation, and fUserDefined.

Referenced by BOOST_PYTHON_MODULE().