ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TrackingAction.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TrackingAction.cc
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 #include "TrackingAction.hh"
30 
31 #include "Run.hh"
32 #include "PrimaryGeneratorAction.hh"
33 #include "HistoManager.hh"
34 
35 #include "G4RunManager.hh"
36 #include "G4Positron.hh"
37 
38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
39 
42  fPrimary(prim)
43 {}
44 
45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
46 
48 {
49  G4int trackID = track->GetTrackID();
50  if (trackID == 1) fTrackLength = 0;
51 }
52 
53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
54 
56 {
57  // histograms
58  //
60 
61  G4int trackID = track->GetTrackID();
62 
63  Run* run
65 
66  //
67 
68  G4double tracklen = track->GetTrackLength();
69 
70  // *** FOR ELECTRONS
71 
72  //track length of primary particle or charged secondaries
73  //
74  if (trackID == 1 && track->GetDefinition()->GetPDGCharge() == -1)
75  {
76  run->AddTrackLength(tracklen);
77  analysisManager->FillH1(1, tracklen);
78  } ;
79 
80  //extract projected range of primary particle
81  //
82  if (trackID == 1 && track->GetDefinition()->GetPDGCharge() == -1)
83  {
84  G4double pr = (track->GetPosition())*
86  run->AddProjRange(pr);
87  analysisManager->FillH1(2, pr);
88  }
89 
90  //extract penetration range of primary particle
91  //
92  if (trackID == 1 && track->GetDefinition()->GetPDGCharge() == -1)
93  {
94  G4double pene = std::sqrt((track->GetPosition())*(track->GetPosition()));
95  run->AddPenetration(pene);
96  analysisManager->FillH1(3, pene);
97  };
98 
99  // *** FOR Geant4-DNA PROTONS, ALPHA AND CHARGED STATES AND IONS
100  // track->GetDefinition()->GetPDGMass() > 0 avoids gammas
101 
102  //track length of primary particle or charged secondaries
103  //
104 
105  if (track->GetDefinition()->GetPDGCharge() >= 0
106  && track->GetDefinition()->GetPDGMass() > 0
108  )
109  {
110  //local cumulation is required before scoring once
111  fTrackLength = fTrackLength + tracklen;
112 
113  if (track->GetKineticEnergy()==0)
114  {
116  analysisManager->FillH1(1, fTrackLength);
117  }
118  }
119 
120  //extract projected range of primary particle
121  //
122 
123  if (track->GetDefinition()->GetPDGCharge() >= 0
124  && track->GetDefinition()->GetPDGMass() > 0
126  )
127  {
128  G4double pr = (track->GetPosition())*
130 
131  if (track->GetKineticEnergy()==0)
132  {
133  run->AddProjRange(pr);
134  analysisManager->FillH1(2, pr);
135  }
136  }
137 
138  //extract penetration range of primary particle
139  //
140  if (track->GetDefinition()->GetPDGCharge() >= 0
141  && track->GetDefinition()->GetPDGMass() > 0
143  )
144  {
145  G4double pene = std::sqrt((track->GetPosition())*(track->GetPosition()));
146 
147  if (track->GetKineticEnergy()==0)
148  {
149  run->AddPenetration(pene);
150  analysisManager->FillH1(3, pene);
151  }
152  };
153 
154 }