Geant4-11
Functions
pyG4ApplicationState.cc File Reference
#include <boost/python.hpp>
#include "G4ApplicationState.hh"

Go to the source code of this file.

Functions

void export_G4ApplicationState ()
 

Function Documentation

◆ export_G4ApplicationState()

void export_G4ApplicationState ( )

Definition at line 41 of file pyG4ApplicationState.cc.

42{
43 enum_<G4ApplicationState>("G4ApplicationState")
44 .value("G4State_PreInit", G4State_PreInit)
45 .value("G4State_Init", G4State_Init)
46 .value("G4State_Idle", G4State_Idle)
47 .value("G4State_GeomClosed", G4State_GeomClosed)
48 .value("G4State_EventProc", G4State_EventProc)
49 .value("G4State_Quit", G4State_Quit)
50 .value("G4State_Abort", G4State_Abort)
51 ;
52}
@ G4State_EventProc
@ G4State_Init
@ G4State_Idle
@ G4State_Quit
@ G4State_Abort
@ G4State_GeomClosed
@ G4State_PreInit

References G4State_Abort, G4State_EventProc, G4State_GeomClosed, G4State_Idle, G4State_Init, G4State_PreInit, and G4State_Quit.

Referenced by BOOST_PYTHON_MODULE().