ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
F02SteppingVerbose.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file F02SteppingVerbose.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
//
30
//
31
//
32
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
34
35
#include "
F02SteppingVerbose.hh
"
36
37
#include "
G4SteppingManager.hh
"
38
#include "
G4UnitsTable.hh
"
39
40
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
41
42
F02SteppingVerbose::F02SteppingVerbose
()
43
:
G4SteppingVerbose
()
44
{}
45
46
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
47
48
F02SteppingVerbose::~F02SteppingVerbose
()
49
{}
50
51
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
52
53
void
F02SteppingVerbose::StepInfo
()
54
{
55
CopyState
();
56
57
G4int
prec
=
G4cout
.precision(3);
58
59
if
(
verboseLevel
>= 1 ){
60
if
(
verboseLevel
>= 4 )
VerboseTrack
();
61
if
(
verboseLevel
>= 3 ){
62
G4cout
<<
G4endl
;
63
G4cout
<< std::setw( 5) <<
"#Step#"
<<
" "
64
<< std::setw( 6) <<
"X"
<<
" "
65
<< std::setw( 6) <<
"Y"
<<
" "
66
<< std::setw( 6) <<
"Z"
<<
" "
67
<< std::setw( 9) <<
"KineE"
<<
" "
68
<< std::setw( 9) <<
"dEStep"
<<
" "
69
<< std::setw(10) <<
"StepLeng"
70
<< std::setw(10) <<
"TrakLeng"
71
<< std::setw(10) <<
"NextVolu"
72
<< std::setw(10) <<
"Process"
<<
G4endl
;
73
}
74
75
G4cout
<< std::setw( 5)<<
fTrack
->
GetCurrentStepNumber
() <<
" "
76
<< std::setw( 6)<<
G4BestUnit
(
fTrack
->
GetPosition
().
x
(),
"Length"
)
77
<< std::setw( 6)<<
G4BestUnit
(
fTrack
->
GetPosition
().
y
(),
"Length"
)
78
<< std::setw( 6)<<
G4BestUnit
(
fTrack
->
GetPosition
().
z
(),
"Length"
)
79
<< std::setw( 6)<<
G4BestUnit
(
fTrack
->
GetKineticEnergy
(),
"Energy"
)
80
<< std::setw( 6)<<
G4BestUnit
(
fStep
->
GetTotalEnergyDeposit
(),
"Energy"
)
81
<< std::setw( 6)<<
G4BestUnit
(
fStep
->
GetStepLength
(),
"Length"
)
82
<< std::setw( 6) <<
G4BestUnit
(
fTrack
->
GetTrackLength
(),
"Length"
);
83
84
if
(
fTrack
->
GetNextVolume
() != 0 ) {
85
G4cout
<< std::setw(10) <<
fTrack
->
GetNextVolume
()->
GetName
();
86
}
else
{
87
G4cout
<< std::setw(10) <<
"OutOfWorld"
;
88
}
89
90
if
(
fStep
->
GetPostStepPoint
()->
GetProcessDefinedStep
() != 0){
91
G4cout
<< std::setw(10)
92
<<
fStep
->
GetPostStepPoint
()->
GetProcessDefinedStep
()
93
->
GetProcessName
();
94
}
else
{
95
G4cout
<<
" UserLimit"
;
96
}
97
98
G4cout
<<
G4endl
;
99
100
if
(
verboseLevel
== 2 ){
101
G4int
tN2ndariesTot =
fN2ndariesAtRestDoIt
+
102
fN2ndariesAlongStepDoIt
+
103
fN2ndariesPostStepDoIt
;
104
if
(tN2ndariesTot>0){
105
G4cout
<<
" :----- List of 2ndaries - "
106
<<
"#SpawnInStep="
<< std::setw(3) << tN2ndariesTot
107
<<
"(Rest="
<< std::setw(2) <<
fN2ndariesAtRestDoIt
108
<<
",Along="
<< std::setw(2) <<
fN2ndariesAlongStepDoIt
109
<<
",Post="
<< std::setw(2) << fN2ndariesPostStepDoIt
110
<<
"), "
111
<<
" ---------------"
112
<<
G4endl
;
113
G4cout
<<
" :-----------------------------"
114
<<
"----------------------------------"
115
<<
"-- EndOf2ndaries Info ---------------"
116
<<
G4endl
;
117
}
118
}
119
120
}
121
G4cout
.precision(prec);
122
}
123
124
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
125
126
void
F02SteppingVerbose::TrackingStarted
()
127
{
128
CopyState
();
129
G4int
prec
=
G4cout
.precision(3);
130
if
(
verboseLevel
> 0 ){
131
132
G4cout
<< std::setw( 5) <<
"Step#"
<<
" "
133
<< std::setw( 6) <<
"X"
<<
" "
134
<< std::setw( 6) <<
"Y"
<<
" "
135
<< std::setw( 6) <<
"Z"
<<
" "
136
<< std::setw( 9) <<
"KineE"
<<
" "
137
<< std::setw( 9) <<
"dEStep"
<<
" "
138
<< std::setw(10) <<
"StepLeng"
139
<< std::setw(10) <<
"TrakLeng"
140
<< std::setw(10) <<
"NextVolu"
141
<< std::setw(10) <<
"Process"
<<
G4endl
;
142
143
G4cout
<< std::setw( 5)<<
fTrack
->
GetCurrentStepNumber
() <<
" "
144
<< std::setw( 6)<<
G4BestUnit
(
fTrack
->
GetPosition
().
x
(),
"Length"
)
145
<< std::setw( 6)<<
G4BestUnit
(
fTrack
->
GetPosition
().
y
(),
"Length"
)
146
<< std::setw( 6)<<
G4BestUnit
(
fTrack
->
GetPosition
().
z
(),
"Length"
)
147
<< std::setw( 6)<<
G4BestUnit
(
fTrack
->
GetKineticEnergy
(),
"Energy"
)
148
<< std::setw( 6)<<
G4BestUnit
(
fStep
->
GetTotalEnergyDeposit
(),
"Energy"
)
149
<< std::setw( 6)<<
G4BestUnit
(
fStep
->
GetStepLength
(),
"Length"
)
150
<< std::setw( 6) <<
G4BestUnit
(
fTrack
->
GetTrackLength
(),
"Length"
);
151
152
if
(
fTrack
->
GetNextVolume
()){
153
G4cout
<< std::setw(10) <<
fTrack
->
GetNextVolume
()->
GetName
() <<
" "
;
154
}
else
{
155
G4cout
<< std::setw(10) <<
"OutOfWorld"
<<
" "
;
156
}
157
G4cout
<< std::setw(10) <<
"initStep"
<<
G4endl
;
158
}
159
G4cout
.precision(prec);
160
}
161
162
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
geant4
tree
geant4-10.6-release
examples
extended
field
field02
src
F02SteppingVerbose.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:05
using
1.8.2 with
ECCE GitHub integration