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