Geant4
v4-10.4-release
메인 페이지
관련된 페이지
모듈
네임스페이스
클래스
파일들
파일 목록
파일 멤버
모두
클래스
네임스페이스들
파일들
함수
변수
타입정의
열거형 타입
열거형 멤버
Friends
매크로
그룹들
페이지들
source
processes
cuts
src
G4RToEConvForProton.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
//
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:577
G4RToEConvForProton::ca
G4double ca
Definition:
G4RToEConvForProton.hh:78
G4PhysicalConstants.hh
G4ParticleTable::GetParticleTable
static G4ParticleTable * GetParticleTable()
Definition:
G4ParticleTable.cc:105
MeV
static constexpr double MeV
Definition:
G4SIunits.hh:214
G4Material.hh
keV
static constexpr double keV
Definition:
G4SIunits.hh:216
mm
static constexpr double mm
Definition:
G4SIunits.hh:115
CLHEP::twopi_mc2_rcl2
static constexpr double twopi_mc2_rcl2
Definition:
PhysicalConstants.h:105
G4ios.hh
G4endl
#define G4endl
Definition:
G4ios.hh:61
G4RToEConvForProton::Reset
virtual void Reset()
Definition:
G4RToEConvForProton.cc:121
G4Material
Definition:
G4Material.hh:121
G4RToEConvForProton::ComputeLoss
virtual G4double ComputeLoss(G4double AtomicNumber, G4double KineticEnergy)
Definition:
G4RToEConvForProton.cc:81
G4RToEConvForProton.hh
G4ParticleDefinition::GetPDGMass
G4double GetPDGMass() const
Definition:
G4ParticleDefinition.hh:123
G4RToEConvForProton::Z
G4double Z
Definition:
G4RToEConvForProton.hh:73
G4RToEConvForProton::Mass
G4double Mass
Definition:
G4RToEConvForProton.hh:72
CLHEP::proton_mass_c2
static constexpr double proton_mass_c2
Definition:
PhysicalConstants.h:80
Z
Float_t Z
Definition:
advanced/microbeam/plot.C:38
G4RToEConvForProton::Convert
virtual G4double Convert(G4double rangeCut, const G4Material *material)
Definition:
G4RToEConvForProton.cc:70
G4double
double G4double
Definition:
G4Types.hh:76
G4RToEConvForProton::cc
G4double cc
Definition:
G4RToEConvForProton.hh:80
G4VRangeToEnergyConverter
Definition:
G4VRangeToEnergyConverter.hh:58
G4RToEConvForProton::taum
G4double taum
Definition:
G4RToEConvForProton.hh:76
CLHEP::electron_mass_c2
static constexpr double electron_mass_c2
Definition:
PhysicalConstants.h:79
G4SystemOfUnits.hh
G4RToEConvForProton::~G4RToEConvForProton
virtual ~G4RToEConvForProton()
Definition:
G4RToEConvForProton.cc:65
G4ParticleTable.hh
G4RToEConvForProton::ionpot
G4double ionpot
Definition:
G4RToEConvForProton.hh:77
G4RToEConvForProton::G4RToEConvForProton
G4RToEConvForProton()
Definition:
G4RToEConvForProton.cc:44
G4PhysicsLogVector.hh
G4VRangeToEnergyConverter::GetVerboseLevel
G4int GetVerboseLevel() const
Definition:
G4VRangeToEnergyConverter.hh:165
G4RToEConvForProton::cba
G4double cba
Definition:
G4RToEConvForProton.hh:79
G4cout
G4GLOB_DLL std::ostream G4cout
G4VRangeToEnergyConverter::theParticle
const G4ParticleDefinition * theParticle
Definition:
G4VRangeToEnergyConverter.hh:114
G4RToEConvForProton::tau0
G4double tau0
Definition:
G4RToEConvForProton.hh:74
G4RToEConvForProton::taul
G4double taul
Definition:
G4RToEConvForProton.hh:75
다음에 의해 생성됨 :
1.8.5