Geant4.10
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4.10.00.p01
source
processes
cuts
src
G4RToEConvForProton.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
//
27
// $Id: G4RToEConvForProton.cc 70745 2013-06-05 10:54:00Z gcosmo $
28
//
29
//
30
// --------------------------------------------------------------
31
// GEANT 4 class implementation file/ History:
32
// 5 Oct. 2002, H.Kuirashige : Structure created based on object model
33
// --------------------------------------------------------------
34
35
#include "
G4RToEConvForProton.hh
"
36
#include "
G4ParticleTable.hh
"
37
#include "
G4Material.hh
"
38
#include "
G4PhysicsLogVector.hh
"
39
40
#include "
G4ios.hh
"
41
#include "
G4PhysicalConstants.hh
"
42
#include "
G4SystemOfUnits.hh
"
43
44
G4RToEConvForProton::G4RToEConvForProton
()
45
:
G4VRangeToEnergyConverter
(),
46
Mass(0.0),
47
Z(-1.),
48
tau0(0.0), taul(0.0), taum(0.0),
49
ionpot(0.0),
50
ca(0.0), cba(0.0), cc(0.0)
51
{
52
theParticle
=
G4ParticleTable::GetParticleTable
()->
FindParticle
(
"proton"
);
53
if
(
theParticle
==0) {
54
#ifdef G4VERBOSE
55
if
(
GetVerboseLevel
()>0) {
56
G4cout
<<
" G4RToEConvForProton::G4RToEConvForProton() "
;
57
G4cout
<<
" proton is not defined !!"
<<
G4endl
;
58
}
59
#endif
60
}
else
{
61
Mass
=
theParticle
->
GetPDGMass
();
62
}
63
}
64
65
G4RToEConvForProton::~G4RToEConvForProton
()
66
{
67
}
68
69
70
G4double
G4RToEConvForProton::Convert
(
G4double
rangeCut,
const
G4Material
* )
71
{
72
// Simple formula
73
// range = Ekin/(100*keV)*(1*mm);
74
return
(rangeCut/(1.0*
mm
)) * (100.0*
keV
);
75
}
76
77
78
// **********************************************************************
79
// ************************* ComputeLoss ********************************
80
// **********************************************************************
81
G4double
G4RToEConvForProton::ComputeLoss
(
G4double
AtomicNumber,
82
G4double
KineticEnergy)
83
{
84
// calculate dE/dx
85
const
G4double
z2Particle = 1.0;
86
87
if
( std::fabs(AtomicNumber-
Z
)>0.1 ){
88
// recalculate constants
89
Z
= AtomicNumber;
90
G4double
Z13 = std::exp(std::log(
Z
)/3.);
91
tau0
= 0.1*Z13*
MeV
/
proton_mass_c2
;
92
taum
= 0.035*Z13*
MeV
/
proton_mass_c2
;
93
taul
= 2.*
MeV
/
proton_mass_c2
;
94
ionpot
= 1.6e-5*
MeV
*std::exp(0.9*std::log(
Z
));
95
cc
= (
taul
+1.)*(
taul
+1.)*std::log(2.*
electron_mass_c2
*
taul
*(
taul
+2.)/
ionpot
)/(
taul
*(
taul
+2.))-1.;
96
cc
= 2.*
twopi_mc2_rcl2
*
Z
*
cc
*std::sqrt(
taul
);
97
ca
=
cc
/((1.-0.5*std::sqrt(
tau0
/
taum
))*
tau0
);
98
cba
= -0.5/std::sqrt(
taum
);
99
}
100
101
G4double
tau = KineticEnergy/
Mass
;
102
G4double
dEdx;
103
if
( tau <=
tau0
) {
104
dEdx =
ca
*(std::sqrt(tau)+
cba
*tau);
105
}
else
{
106
if
( tau <=
taul
) {
107
dEdx =
cc
/std::sqrt(tau);
108
}
else
{
109
dEdx = (tau+1.)*(tau+1.)*
110
std::log(2.*
electron_mass_c2
*tau*(tau+2.)/
ionpot
)/(tau*(tau+2.))-1.;
111
dEdx = 2.*
twopi_mc2_rcl2
*
Z
*dEdx;
112
}
113
}
114
return
dEdx*z2Particle ;
115
}
116
117
118
// **********************************************************************
119
// ************************* Reset ********************************
120
// **********************************************************************
121
void
G4RToEConvForProton::Reset
()
122
{
123
// do nothing because loss tables and range vectors are not used
124
return
;
125
}
G4ParticleTable::FindParticle
G4ParticleDefinition * FindParticle(G4int PDGEncoding)
Definition:
G4ParticleTable.cc:620
G4VRangeToEnergyConverter::GetVerboseLevel
G4int GetVerboseLevel() const
Definition:
G4VRangeToEnergyConverter.hh:165
G4RToEConvForProton::cc
G4double cc
Definition:
G4RToEConvForProton.hh:80
G4RToEConvForProton::taum
G4double taum
Definition:
G4RToEConvForProton.hh:76
python.hepunit.MeV
MeV
Definition:
hepunit.py:117
G4Material
Definition:
G4Material.hh:118
python.hepunit.twopi_mc2_rcl2
twopi_mc2_rcl2
Definition:
hepunit.py:294
G4PhysicsLogVector.hh
G4RToEConvForProton::cba
G4double cba
Definition:
G4RToEConvForProton.hh:79
G4RToEConvForProton::Convert
virtual G4double Convert(G4double rangeCut, const G4Material *material)
Definition:
G4RToEConvForProton.cc:70
G4RToEConvForProton::tau0
G4double tau0
Definition:
G4RToEConvForProton.hh:74
G4cout
G4GLOB_DLL std::ostream G4cout
G4ParticleTable.hh
G4RToEConvForProton::Mass
G4double Mass
Definition:
G4RToEConvForProton.hh:72
G4Material.hh
G4RToEConvForProton::~G4RToEConvForProton
virtual ~G4RToEConvForProton()
Definition:
G4RToEConvForProton.cc:65
python.hepunit.proton_mass_c2
float proton_mass_c2
Definition:
hepunit.py:275
python.hepunit.electron_mass_c2
float electron_mass_c2
Definition:
hepunit.py:274
G4RToEConvForProton::G4RToEConvForProton
G4RToEConvForProton()
Definition:
G4RToEConvForProton.cc:44
python.hepunit.mm
mm
Definition:
hepunit.py:46
G4RToEConvForProton::taul
G4double taul
Definition:
G4RToEConvForProton.hh:75
G4PhysicalConstants.hh
G4RToEConvForProton::Z
G4double Z
Definition:
G4RToEConvForProton.hh:73
G4ParticleDefinition::GetPDGMass
G4double GetPDGMass() const
Definition:
G4ParticleDefinition.hh:161
G4ParticleTable::GetParticleTable
static G4ParticleTable * GetParticleTable()
Definition:
G4ParticleTable.cc:95
G4ios.hh
G4endl
#define G4endl
Definition:
G4ios.hh:61
python.hepunit.keV
keV
Definition:
hepunit.py:119
G4double
double G4double
Definition:
G4Types.hh:76
G4SystemOfUnits.hh
G4RToEConvForProton::ionpot
G4double ionpot
Definition:
G4RToEConvForProton.hh:77
G4RToEConvForProton.hh
G4RToEConvForProton::Reset
virtual void Reset()
Definition:
G4RToEConvForProton.cc:121
G4RToEConvForProton::ComputeLoss
virtual G4double ComputeLoss(G4double AtomicNumber, G4double KineticEnergy)
Definition:
G4RToEConvForProton.cc:81
G4RToEConvForProton::ca
G4double ca
Definition:
G4RToEConvForProton.hh:78
G4VRangeToEnergyConverter
Definition:
G4VRangeToEnergyConverter.hh:58
G4VRangeToEnergyConverter::theParticle
const G4ParticleDefinition * theParticle
Definition:
G4VRangeToEnergyConverter.hh:114
Generated on Wed Apr 30 2014 15:55:04 for Geant4.10 by
1.8.7