Geant4  10.03
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 
47 { }
48 
49 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
50 
52 {
53  //count secondary particles
54  if (track->GetTrackID() == 1) return;
55  G4int iabs = track->GetTouchableHandle()->GetCopyNumber();
57  G4double energy = track->GetKineticEnergy();
58  Run* run = static_cast<Run*>(
60  if(iabs > 0) run->ParticleCount(iabs,name,energy);
61 }
62 
63 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
64 
66 {
67  // get Run
68  Run* run
69  = static_cast<Run*>(
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 
G4ParticleDefinition * GetDefinition() const
G4StepStatus GetStepStatus() const
const char * name(G4int ptype)
G4int GetCopyNumber(G4int depth=0) const
const G4Step * GetStep() const
int G4int
Definition: G4Types.hh:78
const G4String & GetParticleName() const
G4StepStatus
Definition: G4StepStatus.hh:49
G4double GetKineticEnergy() const
void PreUserTrackingAction(const G4Track *)
const G4ParticleDefinition * GetParticleDefinition() const
G4int GetTrackID() const
void PostUserTrackingAction(const G4Track *)
const G4TouchableHandle & GetTouchableHandle() const
static G4RunManager * GetRunManager()
Definition: G4RunManager.cc:79
const G4ThreeVector & GetMomentumDirection() const
G4double energy(const ThreeVector &p, const G4double m)
void AddTrackStatus(G4int i)
Definition: Run.cc:128
G4StepPoint * GetPostStepPoint() const
double G4double
Definition: G4Types.hh:76
Definition: Run.hh:46
G4Run * GetNonConstCurrentRun() const
void ParticleCount(G4String, G4double)
Definition: Run.cc:114