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
SteppingAction.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file SteppingAction.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
//
26
// This example is provided by the Geant4-DNA collaboration
27
// Any report or published results obtained using the Geant4-DNA software
28
// shall cite the following Geant4-DNA collaboration publication:
29
// Med. Phys. 37 (2010) 4692-4708
30
// The Geant4-DNA web site is available at http://geant4-dna.org
31
//
32
// If you use this example, please cite the following publication:
33
// Rad. Prot. Dos. 133 (2009) 2-11
34
35
#include "
G4SystemOfUnits.hh
"
36
#include "
G4SteppingManager.hh
"
37
38
#include "SteppingAction.hh"
39
#include "RunAction.hh"
40
#include "DetectorConstruction.hh"
41
#include "Analysis.hh"
42
43
#include "
G4Alpha.hh
"
44
#include "
G4Electron.hh
"
45
46
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
47
48
SteppingAction::SteppingAction
(
RunAction
* run,
const
DetectorConstruction
* det)
49
:fRun(run),fDetector(det)
50
{}
51
52
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
53
54
SteppingAction::~SteppingAction
()
55
{}
56
57
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
58
59
void
SteppingAction::UserSteppingAction
(
const
G4Step
* aStep)
60
61
{
62
// Analysis manager
63
64
G4AnalysisManager
* man =
G4AnalysisManager::Instance
();
65
66
// Read phantom - Singleton
67
68
fMyCellParameterisation
=
CellParameterisation::Instance
();
69
70
// Material : 1 is cytoplasm, 2 is nucleus
71
72
G4int
matVoxelPRE = -1;
73
G4int
matVoxelPOST = -1;
74
75
const
G4StepPoint
* preStep = aStep->
GetPreStepPoint
();
76
const
G4StepPoint
* postStep = aStep->
GetPostStepPoint
();
77
const
G4Track
*
track
= aStep->
GetTrack
();
78
79
const
G4LogicalVolume
* preVolume =
80
preStep->
GetPhysicalVolume
()->
GetLogicalVolume
();
81
82
const
G4LogicalVolume
* postVolume =
nullptr
;
83
if
(postStep->
GetPhysicalVolume
())
84
{
85
postVolume = postStep->
GetPhysicalVolume
()->
GetLogicalVolume
();
86
}
87
const
G4ParticleDefinition
*
particle
=
88
track->
GetDynamicParticle
()->
GetDefinition
();
89
90
G4int
preReplicaNumber = preStep->
GetTouchableHandle
()->
GetReplicaNumber
();
91
G4double
edep
= aStep->
GetTotalEnergyDeposit
();
92
93
if
(preReplicaNumber>0)
94
{
95
matVoxelPRE =
fMyCellParameterisation
->
GetTissueType
(preReplicaNumber);
96
}
97
98
if
(postVolume)
99
{
100
G4int
postReplicaNumber = postStep->
GetTouchableHandle
()->
GetReplicaNumber
();
101
if
(postReplicaNumber>0)
102
{
103
matVoxelPOST =
fMyCellParameterisation
->
GetTissueType
(postReplicaNumber);
104
}
105
}
106
107
// COUNT GAS DETECTOR HITS
108
109
if
(particle ==
G4Alpha::AlphaDefinition
())
110
{
111
if
(postVolume ==
fDetector
->
GetLogicalIsobutane
() &&
112
((preVolume ==
fDetector
->
GetLogicalCollDetYoke
())
113
||
114
(preVolume ==
fDetector
->
GetLogicalCollDetGap4
())
115
||
116
(preVolume ==
fDetector
->
GetLogicalCollDetGap4
())))
117
{
118
fRun
->
AddNbOfHitsGas
();
119
}
120
121
// STOPPING POWER AND BEAM SPOT SIZE AT CELL ENTRANCE
122
if
(preVolume ==
fDetector
->
GetLogicalPolyprop
() &&
123
( (postVolume ==
fDetector
->
GetLogicalKgm
()) ||
124
(matVoxelPOST == 1)) )
125
{
126
G4double
deltaE = preStep->
GetKineticEnergy
()
127
- postStep->
GetKineticEnergy
();
128
if
(deltaE > 0.0)
129
{
130
//Fill ntupleid=1
131
man->
FillNtupleDColumn
(1,0,preStep->
GetKineticEnergy
()/
keV
);
132
man->
FillNtupleDColumn
(1,1,deltaE*
micrometer
/(
keV
*aStep->
GetStepLength
()));
133
man->
AddNtupleRow
(1);
134
}
135
136
// Average dE over step suggested by Michel Maire
137
G4ThreeVector
coord1 = preStep->
GetPosition
();
138
const
G4AffineTransform
transformation1 =
139
preStep->
GetTouchable
()->
GetHistory
()->
GetTopTransform
();
140
G4ThreeVector
localPosition1 = transformation1.
TransformPoint
(coord1);
141
142
G4ThreeVector
coord2 = postStep->
GetPosition
();
143
const
G4AffineTransform
transformation2 =
144
postStep->
GetTouchable
()->
GetHistory
()->
GetTopTransform
();
145
G4ThreeVector
localPosition2 = transformation2.
TransformPoint
(coord2);
146
147
G4ThreeVector
localPosition =
148
localPosition1 +
G4UniformRand
()*(localPosition2-localPosition1);
149
150
//Fill ntupleid=2
151
man->
FillNtupleDColumn
(2,0,localPosition.
x
()/
micrometer
);
152
man->
FillNtupleDColumn
(2,1,localPosition.
y
()/
micrometer
);
153
man->
AddNtupleRow
(2);
154
}
155
156
// ALPHA RANGE
157
if
(postStep->
GetKineticEnergy
() <
eV
&&
158
( (matVoxelPOST==1) ||
159
(postVolume ==
fDetector
->
GetLogicalKgm
()) ||
160
(matVoxelPOST==2) ) )
161
{
162
//Fill ntupleid=3
163
man->
FillNtupleDColumn
(3,0,postStep->
GetPosition
().
x
()/
micrometer
);
164
man->
FillNtupleDColumn
(3,1,postStep->
GetPosition
().
y
()/
micrometer
);
165
man->
FillNtupleDColumn
(3,2,postStep->
GetPosition
().
z
()/
micrometer
);
166
man->
AddNtupleRow
(3);
167
}
168
169
// TOTAL DOSE DEPOSIT AND DOSE DEPOSIT WITHIN A PHANTOM VOXEL
170
// FOR ALL PARTICLES
171
}
172
173
if
(matVoxelPRE == 2)
174
{
175
G4double
dose
= (edep/
joule
)/(
fRun
->
GetMassNucleus
()/
kg
);
176
fRun
->
AddDoseN
(dose);
177
fRun
->
AddDoseBox
(preReplicaNumber, edep/
eV
);
178
}
179
else
if
(matVoxelPRE == 1)
180
{
181
G4double
dose = (edep/
joule
)/(
fRun
->
GetMassCytoplasm
()/
kg
);
182
fRun
->
AddDoseC
(dose);
183
fRun
->
AddDoseBox
(preReplicaNumber, edep/
eV
);
184
}
185
186
// PROTECTION AGAINST POSSIBLE MSC LOOPS FOR e-
187
188
// if ( edep/MeV<1e-25 && particle == G4Electron::Electron())
189
// {
190
//aStep->GetTrack()->SetTrackStatus(fStopAndKill);
191
/*
192
G4cout << "*** Warning *** : msc loop for "
193
<< track->GetDefinition()->GetParticleName()
194
<< " in " <<
195
postPoint->GetTouchableHandle()->GetVolume()->GetName() << G4endl;
196
*/
197
// }
198
}
geant4
tree
geant4-10.6-release
examples
advanced
microbeam
src
SteppingAction.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:55
using
1.8.2 with
ECCE GitHub integration