#include <boost/python.hpp>
#include "G4TrackStatus.hh"
Go to the source code of this file.
◆ export_G4TrackStatus()
void export_G4TrackStatus |
( |
| ) |
|
Definition at line 40 of file pyG4TrackStatus.cc.
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)