Geant4  10.02.p03
pyG4TrackStatus.cc File Reference
#include <boost/python.hpp>
#include "G4TrackStatus.hh"
Include dependency graph for pyG4TrackStatus.cc:

Go to the source code of this file.

Functions

void export_G4TrackStatus ()
 

Function Documentation

◆ export_G4TrackStatus()

void export_G4TrackStatus ( )

Definition at line 40 of file pyG4TrackStatus.cc.

41 {
42  enum_<G4TrackStatus>("G4TrackStatus")
43  .value("fAlive", fAlive)
44  .value("fStopButAlive", fStopButAlive)
45  .value("fStopAndKill", fStopAndKill)
46  .value("fKillTrackAndSecondaries", fKillTrackAndSecondaries)
47  .value("fSuspend", fSuspend)
48  .value("fPostponeToNextEvent", fPostponeToNextEvent)
49  ;
50 }
Here is the caller graph for this function: