Geant4  10.03.p03
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pymodG4digits_hits.cc File Reference
#include <boost/python.hpp>
Include dependency graph for pymodG4digits_hits.cc:

Go to the source code of this file.

Functions

void export_G4VSensitiveDetector ()
 
 BOOST_PYTHON_MODULE (G4digits_hits)
 

Function Documentation

BOOST_PYTHON_MODULE ( G4digits_hits  )

Definition at line 42 of file pymodG4digits_hits.cc.

43 {
45 }
void export_G4VSensitiveDetector()

Here is the call graph for this function:

void export_G4VSensitiveDetector ( )

Definition at line 64 of file pyG4VSensitiveDetector.cc.

65 {
66  class_<CB_G4VSensitiveDetector, boost::noncopyable>
67  ("G4VSensitiveDetector", "base class of senstive detector")
68  // ---
69  .def(init<const G4String&>())
70  // ---
71  .def("Initialize", &G4VSensitiveDetector::Initialize)
72  .def("EndOfEvent", &G4VSensitiveDetector::EndOfEvent)
73  .def("clear", &G4VSensitiveDetector::clear)
74  .def("DrawAll", &G4VSensitiveDetector::DrawAll)
75  .def("PrintAll", &G4VSensitiveDetector::PrintAll)
76  .def("Hit", &G4VSensitiveDetector::Hit)
77  .def("ProcessHits", pure_virtual(&CB_G4VSensitiveDetector::ProcessHits))
78  // ---
79  .def("SetROgeometry", &G4VSensitiveDetector::SetROgeometry)
80  .def("GetNumberOfCollections",
82  .def("GetCollectionName", &G4VSensitiveDetector::GetCollectionName)
83  .def("SetVerboseLevel", &G4VSensitiveDetector::SetVerboseLevel)
84  .def("Activate", &G4VSensitiveDetector::Activate)
85  .def("isActive", &G4VSensitiveDetector::isActive)
86  .def("GetName", &G4VSensitiveDetector::GetName)
87  .def("GetPathName", &G4VSensitiveDetector::GetPathName)
88  .def("GetFullPathName", &G4VSensitiveDetector::GetFullPathName)
89  .def("GetROgeometry", &G4VSensitiveDetector::GetROgeometry,
90  return_internal_reference<>())
91  ;
92 }
void Activate(G4bool activeFlag)
G4VReadOutGeometry * GetROgeometry() const
void SetROgeometry(G4VReadOutGeometry *value)
G4bool Hit(G4Step *aStep)
G4String GetFullPathName() const
virtual void Initialize(G4HCofThisEvent *)
G4int GetNumberOfCollections() const
G4String GetCollectionName(G4int id) const
virtual void EndOfEvent(G4HCofThisEvent *)
G4String GetPathName() const

Here is the call graph for this function:

Here is the caller graph for this function: