Geant4
10.03.p03
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
TrackingAction.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
//
28
//
29
// $Id: TrackingAction.cc 74997 2013-10-25 10:52:13Z gcosmo $
30
//
31
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33
34
#include "TrackingAction.hh"
35
36
#include "Run.hh"
37
#include "HistoManager.hh"
38
39
#include "
G4Track.hh
"
40
#include "
G4StepStatus.hh
"
41
#include "
G4RunManager.hh
"
42
43
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
44
45
TrackingAction::TrackingAction
()
46
:
G4UserTrackingAction
()
47
{ }
48
49
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
50
51
void
TrackingAction::PreUserTrackingAction
(
const
G4Track
* track)
52
{
53
//count secondary particles
54
if
(track->
GetTrackID
() == 1)
return
;
55
G4int
iabs = track->
GetTouchableHandle
()->
GetCopyNumber
();
56
G4String
name
= track->
GetDefinition
()->
GetParticleName
();
57
G4double
energy
= track->
GetKineticEnergy
();
58
Run
* run =
static_cast<
Run
*
>
(
59
G4RunManager::GetRunManager
()->
GetNonConstCurrentRun
());
60
if
(iabs > 0) run->
ParticleCount
(iabs,name,energy);
61
}
62
63
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
64
65
void
TrackingAction::PostUserTrackingAction
(
const
G4Track
* track)
66
{
67
// get Run
68
Run
* run
69
=
static_cast<
Run
*
>
(
70
G4RunManager::GetRunManager
()->
GetNonConstCurrentRun
());
71
72
// where are we ?
73
G4StepStatus
status = track->
GetStep
()->
GetPostStepPoint
()->
GetStepStatus
();
74
75
//status of primary particle : absorbed, transmited, reflected ?
76
if
(track->
GetTrackID
() == 1) {
77
G4int
flag = 0;
78
if
(status ==
fWorldBoundary
) {
79
if
(track->
GetMomentumDirection
().
x
() > 0.) flag = 1;
80
else
flag = 2;
81
}
82
run->
AddTrackStatus
(flag);
83
}
84
85
// keep only emerging particles
86
if
(status !=
fWorldBoundary
)
return
;
87
88
// count particles
89
const
G4ParticleDefinition
* particle = track->
GetParticleDefinition
();
90
G4String
name = particle->
GetParticleName
();
91
G4double
energy = track->
GetKineticEnergy
();
92
run->
ParticleCount
(0,name,energy);
93
95
}
96
97
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
98
G4Track::GetDefinition
G4ParticleDefinition * GetDefinition() const
name
const XML_Char * name
Definition:
expat.h:151
fWorldBoundary
Definition:
G4StepStatus.hh:52
G4RunManager.hh
CLHEP::Hep3Vector::x
double x() const
G4Track.hh
G4StepPoint::GetStepStatus
G4StepStatus GetStepStatus() const
G4UserTrackingAction
Definition:
G4UserTrackingAction.hh:54
G4ParticleDefinition
Definition:
G4ParticleDefinition.hh:72
G4VTouchable::GetCopyNumber
G4int GetCopyNumber(G4int depth=0) const
G4Track::GetStep
const G4Step * GetStep() const
G4int
int G4int
Definition:
G4Types.hh:78
G4ParticleDefinition::GetParticleName
const G4String & GetParticleName() const
Definition:
G4ParticleDefinition.hh:120
G4StepStatus
G4StepStatus
Definition:
G4StepStatus.hh:49
G4Track::GetKineticEnergy
G4double GetKineticEnergy() const
TrackingAction::PreUserTrackingAction
void PreUserTrackingAction(const G4Track *)
Definition:
TrackingAction.cc:53
G4Track::GetParticleDefinition
const G4ParticleDefinition * GetParticleDefinition() const
TrackingAction::TrackingAction
TrackingAction()
Definition:
TrackingAction.cc:42
G4Track::GetTrackID
G4int GetTrackID() const
TrackingAction::PostUserTrackingAction
void PostUserTrackingAction(const G4Track *)
Definition:
TrackingAction.cc:58
G4Track::GetTouchableHandle
const G4TouchableHandle & GetTouchableHandle() const
G4RunManager::GetRunManager
static G4RunManager * GetRunManager()
Definition:
G4RunManager.cc:79
G4Track::GetMomentumDirection
const G4ThreeVector & GetMomentumDirection() const
G4INCL::KinematicsUtils::energy
G4double energy(const ThreeVector &p, const G4double m)
Definition:
G4INCLKinematicsUtils.cc:157
Run::AddTrackStatus
void AddTrackStatus(G4int i)
Definition:
Run.cc:128
G4Step::GetPostStepPoint
G4StepPoint * GetPostStepPoint() const
G4Track
Definition:
G4Track.hh:76
G4StepStatus.hh
G4double
double G4double
Definition:
G4Types.hh:76
Run
Definition:
Run.hh:46
G4RunManager::GetNonConstCurrentRun
G4Run * GetNonConstCurrentRun() const
Definition:
G4RunManager.hh:528
G4String
Definition:
G4String.hh:45
Run::ParticleCount
void ParticleCount(G4String, G4double)
Definition:
Run.cc:114
source
geant4.10.03.p03
examples
extended
hadronic
Hadr07
src
TrackingAction.cc
Generated on Tue Nov 28 2017 21:43:44 for Geant4 by
1.8.5