Geant4-11
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
w
y
Enumerations
a
b
c
d
e
f
g
l
m
p
r
s
t
v
y
z
Enumerator
a
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Related Functions
:
a
b
c
d
g
h
i
o
q
r
s
t
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
x
z
Enumerations
b
c
d
e
f
g
i
j
l
m
n
p
r
s
t
w
x
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
source
event
src
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
35
void
G4SmartTrackStack::dumpStatistics
()
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
47
G4SmartTrackStack::G4SmartTrackStack
()
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
57
G4SmartTrackStack::~G4SmartTrackStack
()
58
{
59
for
(
G4int
i=0; i<
nTurn
; ++i)
60
{
61
delete
stacks
[i];
62
}
63
}
64
65
void
G4SmartTrackStack::TransferTo
(
G4TrackStack
* aStack)
66
{
67
for
(
G4int
i=0; i<
nTurn
; ++i)
68
{
69
stacks
[i]->
TransferTo
(aStack);
70
}
71
nTracks
= 0;
72
}
73
74
G4StackedTrack
G4SmartTrackStack::PopFromStack
()
75
{
76
G4StackedTrack
aStackedTrack;
77
78
if
(
nTracks
)
79
{
80
while
(
true
)
81
{
82
if
(
stacks
[
fTurn
]->
GetNTrack
())
83
{
84
aStackedTrack =
stacks
[
fTurn
]->
PopFromStack
();
85
energies
[
fTurn
] -= aStackedTrack.
GetTrack
()->
GetDynamicParticle
()->
GetTotalEnergy
();
86
--
nTracks
;
87
break
;
88
}
89
else
90
{
91
fTurn
= (
fTurn
+1) %
nTurn
;
92
}
93
}
94
}
95
96
return
aStackedTrack;
97
}
98
99
enum
100
{
101
electronCode
= 11,
positronCode
= -11,
gammaCode
= 22,
neutronCode
= 2112
102
};
103
104
void
G4SmartTrackStack::PushToStack
(
const
G4StackedTrack
& aStackedTrack )
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
();
130
G4int
dy2 =
stacks
[
fTurn
]->
GetNTrack
() -
stacks
[
fTurn
]->
GetSafetyValue2
();
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
139
if
(
nTracks
>
maxNTracks
)
maxNTracks
=
nTracks
;
140
}
141
142
void
G4SmartTrackStack::clear
()
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
153
void
G4SmartTrackStack::clearAndDestroy
()
154
{
155
for
(
G4int
i = 0; i <
nTurn
; ++i)
156
{
157
stacks
[i]->
clearAndDestroy
();
158
energies
[i] = 0.0;
159
fTurn
= 0;
160
}
161
nTracks
= 0;
162
}
electronCode
@ electronCode
Definition:
G4SmartTrackStack.cc:101
neutronCode
@ neutronCode
Definition:
G4SmartTrackStack.cc:101
gammaCode
@ gammaCode
Definition:
G4SmartTrackStack.cc:101
positronCode
@ positronCode
Definition:
G4SmartTrackStack.cc:101
G4SmartTrackStack.hh
G4Track.hh
G4int
int G4int
Definition:
G4Types.hh:85
G4VTrajectory.hh
G4cerr
G4GLOB_DLL std::ostream G4cerr
G4endl
#define G4endl
Definition:
G4ios.hh:57
G4DynamicParticle::GetTotalEnergy
G4double GetTotalEnergy() const
G4DynamicParticle::GetPDGcode
G4int GetPDGcode() const
G4SmartTrackStack::TransferTo
void TransferTo(G4TrackStack *aStack)
Definition:
G4SmartTrackStack.cc:65
G4SmartTrackStack::energies
G4double energies[5]
Definition:
G4SmartTrackStack.hh:79
G4SmartTrackStack::stacks
G4TrackStack * stacks[5]
Definition:
G4SmartTrackStack.hh:80
G4SmartTrackStack::clearAndDestroy
void clearAndDestroy()
Definition:
G4SmartTrackStack.cc:153
G4SmartTrackStack::PushToStack
void PushToStack(const G4StackedTrack &aStackedTrack)
Definition:
G4SmartTrackStack.cc:104
G4SmartTrackStack::clear
void clear()
Definition:
G4SmartTrackStack.cc:142
G4SmartTrackStack::nTurn
G4int nTurn
Definition:
G4SmartTrackStack.hh:78
G4SmartTrackStack::maxNTracks
G4int maxNTracks
Definition:
G4SmartTrackStack.hh:86
G4SmartTrackStack::~G4SmartTrackStack
~G4SmartTrackStack()
Definition:
G4SmartTrackStack.cc:57
G4SmartTrackStack::dumpStatistics
void dumpStatistics()
Definition:
G4SmartTrackStack.cc:35
G4SmartTrackStack::G4SmartTrackStack
G4SmartTrackStack()
Definition:
G4SmartTrackStack.cc:47
G4SmartTrackStack::GetNTrack
G4int GetNTrack() const
Definition:
G4SmartTrackStack.hh:61
G4SmartTrackStack::nTracks
G4int nTracks
Definition:
G4SmartTrackStack.hh:87
G4SmartTrackStack::fTurn
G4int fTurn
Definition:
G4SmartTrackStack.hh:77
G4SmartTrackStack::PopFromStack
G4StackedTrack PopFromStack()
Definition:
G4SmartTrackStack.cc:74
G4StackedTrack
Definition:
G4StackedTrack.hh:40
G4StackedTrack::GetTrack
G4Track * GetTrack() const
Definition:
G4StackedTrack.hh:48
G4TrackStack
Definition:
G4TrackStack.hh:45
G4TrackStack::PushToStack
void PushToStack(const G4StackedTrack &aStackedTrack)
Definition:
G4TrackStack.hh:59
G4TrackStack::clearAndDestroy
void clearAndDestroy()
Definition:
G4TrackStack.cc:41
G4TrackStack::GetSafetyValue2
G4int GetSafetyValue2() const
Definition:
G4TrackStack.hh:71
G4TrackStack::TransferTo
void TransferTo(G4TrackStack *aStack)
Definition:
G4TrackStack.cc:51
G4TrackStack::getTotalEnergy
G4double getTotalEnergy(void) const
Definition:
G4TrackStack.cc:68
G4TrackStack::GetNTrack
std::size_t GetNTrack() const
Definition:
G4TrackStack.hh:68
G4TrackStack::PopFromStack
G4StackedTrack PopFromStack()
Definition:
G4TrackStack.hh:61
G4TrackStack::GetSafetyValue1
G4int GetSafetyValue1() const
Definition:
G4TrackStack.hh:70
G4Track::GetDynamicParticle
const G4DynamicParticle * GetDynamicParticle() const
G4Track::GetParentID
G4int GetParentID() const
code
Definition:
inftrees.h:24
Generated by
1.9.3