Geant4_10
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 //
26 //
27 // $Id: TrackingAction.cc 73008 2013-08-15 08:43:13Z gcosmo $
28 //
29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
31 
32 #include "TrackingAction.hh"
33 
34 #include "DetectorConstruction.hh"
35 #include "RunAction.hh"
36 #include "PrimaryGeneratorAction.hh"
37 #include "EventAction.hh"
38 #include "HistoManager.hh"
39 
40 #include "G4PhysicalConstants.hh"
41 #include "G4Track.hh"
42 #include "G4Positron.hh"
43 
44 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
45 
47 :G4UserTrackingAction(),detector(det),runAct(run)
48 { }
49 
50 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
51 
53 { }
54 
55 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
56 
58 {
59  //compute leakage
60  //
61  // if not at World boundaries, return
62  if (track->GetVolume() != detector->GetPvolWorld()) return;
63 
64  //get position
65  G4double x = (track->GetPosition()).x();
66  G4double xlimit = 0.5*(detector->GetCalorThickness());
67  G4int icase = 2;
68  if (x >= xlimit) icase = 0;
69  else if (x <= -xlimit) icase = 1;
70 
71  //get particle energy
72  G4double Eleak = track->GetKineticEnergy();
73  if (track->GetDefinition() == G4Positron::Positron())
74  Eleak += 2*electron_mass_c2;
75 
76  //sum leakage
77  runAct->fillDetailedLeakage(icase,Eleak);
78 }
79 
80 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
81 
G4ParticleDefinition * GetDefinition() const
const G4ThreeVector & GetPosition() const
tuple x
Definition: test.py:50
G4VPhysicalVolume * GetPvolWorld()
int G4int
Definition: G4Types.hh:78
G4double GetKineticEnergy() const
void PreUserTrackingAction(const G4Track *)
float electron_mass_c2
Definition: hepunit.py:274
void PostUserTrackingAction(const G4Track *)
void fillDetailedLeakage(G4int, G4double)
Definition: RunAction.cc:146
static G4Positron * Positron()
Definition: G4Positron.cc:94
G4VPhysicalVolume * GetVolume() const
double G4double
Definition: G4Types.hh:76