Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pyG4VSensitiveDetector.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // $Id: pyG4VSensitiveDetector.cc 76884 2013-11-18 12:54:03Z gcosmo $
27 // ====================================================================
28 // pyG4VSensitiveDetector.cc
29 //
30 // 2005 Q
31 // ====================================================================
32 #include <boost/python.hpp>
33 #include "G4VSensitiveDetector.hh"
34 
35 using namespace boost::python;
36 
37 // ====================================================================
38 // thin wrappers
39 // ====================================================================
40 namespace pyG4VSensitiveDetector {
41 
43  public G4VSensitiveDetector,
44  public wrapper<G4VSensitiveDetector> {
45 
46 public:
49  : G4VSensitiveDetector(name) { }
51 
53  return get_override("ProcessHits")(&aStep, &ROhist);
54  }
55 };
56 
57 }
58 
59 using namespace pyG4VSensitiveDetector;
60 
61 // ====================================================================
62 // module definition
63 // ====================================================================
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)
const XML_Char * name
G4bool ProcessHits(G4Step *aStep, G4TouchableHistory *ROhist)
void export_G4VSensitiveDetector()
bool G4bool
Definition: G4Types.hh:79
G4VReadOutGeometry * GetROgeometry() const
void SetROgeometry(G4VReadOutGeometry *value)
G4bool Hit(G4Step *aStep)
Definition: G4Step.hh:76
G4String GetFullPathName() const
virtual void Initialize(G4HCofThisEvent *)
G4int GetNumberOfCollections() const
G4String GetCollectionName(G4int id) const
virtual void EndOfEvent(G4HCofThisEvent *)
G4String GetPathName() const