Geant4
10.00.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
pyG4UserTrackingAction.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$
27
// ====================================================================
28
// pyG4UserTrackingAction.cc
29
//
30
// 2005 Q
31
// ====================================================================
32
#include <boost/python.hpp>
33
#include "
G4UserTrackingAction.hh
"
34
#include "
G4Track.hh
"
35
36
using namespace
boost::python
;
37
38
// ====================================================================
39
// thin wrappers
40
// ====================================================================
41
struct
CB_G4UserTrackingAction
:
G4UserTrackingAction
,
42
wrapper<G4UserTrackingAction> {
43
44
// PreUserTrackingAction
45
void
PreUserTrackingAction
(
const
G4Track
* atrack) {
46
if
(
const
override
& f= get_override(
"PreUserTrackingAction"
)) {
47
f(boost::ref(atrack));
48
}
else
{
49
G4UserTrackingAction::PreUserTrackingAction
(atrack);
50
}
51
}
52
53
// PostUserTrackingAction
54
void
PostUserTrackingAction
(
const
G4Track
* atrack) {
55
if
(
const
override
& f= get_override(
"PostUserTrackingAction"
)) {
56
f(boost::ref(atrack));
57
}
else
{
58
G4UserTrackingAction::PostUserTrackingAction
(atrack);
59
}
60
}
61
62
};
63
64
65
// ====================================================================
66
// module definition
67
// ====================================================================
68
void
export_G4UserTrackingAction
()
69
{
70
class_<CB_G4UserTrackingAction, CB_G4UserTrackingAction*, boost::noncopyable>
71
(
"G4UserTrackingAction"
,
"tracking action class"
)
72
// ---
73
.def(
"PreUserTrackingAction"
,
74
&
G4UserTrackingAction::PreUserTrackingAction
,
75
&
CB_G4UserTrackingAction::PreUserTrackingAction
)
76
.def(
"PostUserTrackingAction"
,
77
&
G4UserTrackingAction::PostUserTrackingAction
,
78
&
CB_G4UserTrackingAction::PostUserTrackingAction
)
79
;
80
}
81
CB_G4UserTrackingAction::PostUserTrackingAction
void PostUserTrackingAction(const G4Track *atrack)
Definition:
pyG4UserTrackingAction.cc:54
G4Track.hh
CB_G4UserTrackingAction
Definition:
pyG4UserTrackingAction.cc:41
G4UserTrackingAction
Definition:
G4UserTrackingAction.hh:54
export_G4UserTrackingAction
void export_G4UserTrackingAction()
Definition:
pyG4UserTrackingAction.cc:68
G4UserTrackingAction.hh
CB_G4UserTrackingAction::PreUserTrackingAction
void PreUserTrackingAction(const G4Track *atrack)
Definition:
pyG4UserTrackingAction.cc:45
G4UserTrackingAction::PostUserTrackingAction
virtual void PostUserTrackingAction(const G4Track *)
Definition:
G4UserTrackingAction.hh:69
G4Track
Definition:
G4Track.hh:73
python
G4UserTrackingAction::PreUserTrackingAction
virtual void PreUserTrackingAction(const G4Track *)
Definition:
G4UserTrackingAction.hh:68
geant4.10.00.p02
environments
g4py
source
tracking
pyG4UserTrackingAction.cc
Generated on Thu Dec 31 2015 10:39:21 for Geant4 by
1.8.8