Geant4-11
G4SmartTrackStack.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// G4SmartTrackStack class implementation
27//
28// Author: S.Kamperis - 4 October 2012
29// --------------------------------------------------------------------
30
31#include "G4SmartTrackStack.hh"
32#include "G4VTrajectory.hh"
33#include "G4Track.hh"
34
36{
37 // Print to stderr so that we can split stats output from normal
38 // output of Geant4 which is typically being printed to stdout
39 for (G4int i=0; i<nTurn; ++i)
40 {
41 G4cerr << stacks[i]->GetNTrack() << " ";
42 G4cerr << stacks[i]->getTotalEnergy() << " ";
43 }
44 G4cerr << G4endl;
45}
46
48 : fTurn(0), nTurn(5), maxNTracks(0), nTracks(0)
49{
50 for(G4int i=0; i<nTurn; ++i)
51 {
52 stacks[i] = new G4TrackStack(5000);
53 energies[i] = 0.;
54 }
55}
56
58{
59 for (G4int i=0; i<nTurn; ++i)
60 {
61 delete stacks[i];
62 }
63}
64
66{
67 for (G4int i=0; i<nTurn; ++i)
68 {
69 stacks[i]->TransferTo(aStack);
70 }
71 nTracks = 0;
72}
73
75{
76 G4StackedTrack aStackedTrack;
77
78 if (nTracks)
79 {
80 while (true)
81 {
82 if (stacks[fTurn]->GetNTrack())
83 {
84 aStackedTrack = stacks[fTurn]->PopFromStack();
86 --nTracks;
87 break;
88 }
89 else
90 {
91 fTurn = (fTurn+1) % nTurn;
92 }
93 }
94 }
95
96 return aStackedTrack;
97}
98
99enum
100{
103
105{
106
107 G4int iDest = 0;
108 if (aStackedTrack.GetTrack()->GetParentID())
109 {
110 G4int code = aStackedTrack.GetTrack()->GetDynamicParticle()->GetPDGcode();
111 if (code == electronCode)
112 iDest = 2;
113 else if (code == gammaCode)
114 iDest = 3;
115 else if (code == positronCode)
116 iDest = 4;
117 else if (code == neutronCode)
118 iDest = 1;
119 }
120 else
121 {
122 // We have a primary track, which should go first.
123 fTurn = 0; // reseting the turn
124 }
125 stacks[iDest]->PushToStack(aStackedTrack);
126 energies[iDest] += aStackedTrack.GetTrack()->GetDynamicParticle()->GetTotalEnergy();
127 ++nTracks;
128
129 G4int dy1 = stacks[iDest]->GetNTrack() - stacks[iDest]->GetSafetyValue1();
131
132 if (dy1 > 0 || dy1 > dy2 ||
133 (iDest == 2 &&
134 stacks[iDest]->GetNTrack() < 50 && energies[iDest] < energies[fTurn]))
135 {
136 fTurn = iDest;
137 }
138
140}
141
143{
144 for (G4int i = 0; i < nTurn; ++i)
145 {
146 stacks[i]->clear();
147 energies[i] = 0.0;
148 fTurn = 0;
149 }
150 nTracks = 0;
151}
152
154{
155 for (G4int i = 0; i < nTurn; ++i)
156 {
158 energies[i] = 0.0;
159 fTurn = 0;
160 }
161 nTracks = 0;
162}
@ electronCode
@ neutronCode
@ gammaCode
@ positronCode
int G4int
Definition: G4Types.hh:85
G4GLOB_DLL std::ostream G4cerr
#define G4endl
Definition: G4ios.hh:57
G4double GetTotalEnergy() const
G4int GetPDGcode() const
void TransferTo(G4TrackStack *aStack)
G4TrackStack * stacks[5]
void PushToStack(const G4StackedTrack &aStackedTrack)
G4int GetNTrack() const
G4StackedTrack PopFromStack()
G4Track * GetTrack() const
void PushToStack(const G4StackedTrack &aStackedTrack)
Definition: G4TrackStack.hh:59
void clearAndDestroy()
Definition: G4TrackStack.cc:41
G4int GetSafetyValue2() const
Definition: G4TrackStack.hh:71
void TransferTo(G4TrackStack *aStack)
Definition: G4TrackStack.cc:51
G4double getTotalEnergy(void) const
Definition: G4TrackStack.cc:68
std::size_t GetNTrack() const
Definition: G4TrackStack.hh:68
G4StackedTrack PopFromStack()
Definition: G4TrackStack.hh:61
G4int GetSafetyValue1() const
Definition: G4TrackStack.hh:70
const G4DynamicParticle * GetDynamicParticle() const
G4int GetParentID() const
Definition: inftrees.h:24