Geant4
9.6.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4_9_6_p02
examples
advanced
microdosimetry
src
G4ElectronCapture.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
// $Id$
27
//
28
//---------------------------------------------------------------------------
29
//
30
// ClassName: G4ElectronCapture
31
//
32
// Description: The process to kill particles to save CPU
33
//
34
// Author: V.Ivanchenko 31 August 2010
35
//
36
//----------------------------------------------------------------------------
37
//
38
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
39
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
40
41
#include "
G4ElectronCapture.hh
"
42
#include "
G4SystemOfUnits.hh
"
43
#include "
G4ParticleDefinition.hh
"
44
#include "
G4Step.hh
"
45
#include "
G4Track.hh
"
46
#include "
G4Region.hh
"
47
#include "
G4RegionStore.hh
"
48
#include "
G4Electron.hh
"
49
50
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
51
52
G4ElectronCapture::G4ElectronCapture
(
const
G4String
& regName,
G4double
ekinlim)
53
:
G4VDiscreteProcess
(
"eCapture"
,
fElectromagnetic
), kinEnergyThreshold(ekinlim),
54
regionName(regName), region(0)
55
{
56
if
(regName ==
""
|| regName ==
"world"
) {
57
regionName =
"DefaultRegionForTheWorld"
;
58
}
59
pParticleChange
= &fParticleChange;
60
}
61
62
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
63
64
G4ElectronCapture::~G4ElectronCapture
()
65
{}
66
67
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68
69
void
G4ElectronCapture::SetKinEnergyLimit
(
G4double
val)
70
{
71
kinEnergyThreshold = val;
72
if
(
verboseLevel
> 0) {
73
G4cout
<<
"### G4ElectronCapture: Tracking cut E(MeV) = "
74
<< kinEnergyThreshold/
MeV
<<
G4endl
;
75
}
76
}
77
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
78
79
void
G4ElectronCapture::BuildPhysicsTable
(
const
G4ParticleDefinition
&)
80
{
81
region = (
G4RegionStore::GetInstance
())->GetRegion(regionName);
82
if
(region &&
verboseLevel
> 0) {
83
G4cout
<<
"### G4ElectronCapture: Tracking cut E(MeV) = "
84
<< kinEnergyThreshold/
MeV
<<
" is assigned to "
<< regionName
85
<<
G4endl
;
86
}
87
}
88
89
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
90
91
G4bool
G4ElectronCapture::IsApplicable
(
const
G4ParticleDefinition
&)
92
{
93
return
true
;
94
}
95
96
G4double
97
G4ElectronCapture::PostStepGetPhysicalInteractionLength
(
const
G4Track
& aTrack,
98
G4double
,
99
G4ForceCondition
*
condition
)
100
{
101
// condition is set to "Not Forced"
102
*condition =
NotForced
;
103
104
G4double
limit =
DBL_MAX
;
105
if
(region) {
106
if
(aTrack.
GetVolume
()->
GetLogicalVolume
()->
GetRegion
() == region &&
107
aTrack.
GetKineticEnergy
() < kinEnergyThreshold) { limit = 0.0; }
108
}
109
return
limit;
110
}
111
112
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
113
114
G4VParticleChange
*
G4ElectronCapture::PostStepDoIt
(
const
G4Track
& aTrack,
115
const
G4Step
&)
116
{
117
pParticleChange
->
Initialize
(aTrack);
118
pParticleChange
->
ProposeTrackStatus
(
fStopAndKill
);
119
pParticleChange
->
ProposeLocalEnergyDeposit
(aTrack.
GetKineticEnergy
());
120
fParticleChange.
SetProposedKineticEnergy
(0.0);
121
return
pParticleChange
;
122
}
123
124
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
125
126
G4double
G4ElectronCapture::GetMeanFreePath
(
const
G4Track
&,
G4double
,
127
G4ForceCondition
*)
128
{
129
return
DBL_MAX
;
130
}
131
132
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
133
134
Generated on Sat May 25 2013 14:32:14 for Geant4 by
1.8.4