#include <boost/python.hpp>
#include "G4UserStackingAction.hh"
#include "G4Track.hh"
Go to the source code of this file.
void export_G4UserStackingAction |
( |
| ) |
|
Definition at line 78 of file pyG4UserStackingAction.cc.
Referenced by BOOST_PYTHON_MODULE().
80 class_<CB_G4UserStackingAction, CB_G4UserStackingAction*, boost::noncopyable>
81 (
"G4UserStackingAction",
"stacking action class")
83 .def(
"ClassifyNewTrack", &G4UserStackingAction::ClassifyNewTrack,
84 &CB_G4UserStackingAction::ClassifyNewTrack)
85 .def(
"NewStage", &G4UserStackingAction::NewStage,
86 &CB_G4UserStackingAction::NewStage)
87 .def(
"PrepareNewEvent", &G4UserStackingAction::PrepareNewEvent,
88 &CB_G4UserStackingAction::PrepareNewEvent)