#include <boost/python.hpp>
#include "G4Timer.hh"
Go to the source code of this file.
Definition at line 39 of file pyG4Timer.cc.
Referenced by BOOST_PYTHON_MODULE().
41 class_<G4Timer>(
"G4Timer",
"Timer")
43 .def(
"Start", &G4Timer::Start)
44 .def(
"Stop", &G4Timer::Stop)
45 .def(
"IsValid", &G4Timer::IsValid)
46 .def(
"GetRealElapsed", &G4Timer::GetRealElapsed)
47 .def(
"GetSystemElapsed", &G4Timer::GetSystemElapsed)
48 .def(
"GetUserElapsed", &G4Timer::GetUserElapsed)