#include <G4IonCoulombCrossSection.hh>
Definition at line 69 of file G4IonCoulombCrossSection.hh.
◆ G4IonCoulombCrossSection() [1/2]
G4IonCoulombCrossSection::G4IonCoulombCrossSection |
( |
| ) |
|
|
explicit |
Definition at line 70 of file G4IonCoulombCrossSection.cc.
70 :
71 cosThetaMin(1.0),
72 cosThetaMax(-1.0),
73 alpha2(fine_structure_const*fine_structure_const)
74{
78 particle = nullptr;
79
80 G4double p0 = electron_mass_c2*classic_electr_radius;
81 coeff = twopi*p0*p0;
82
83 cosTetMinNuc=0;
84 cosTetMaxNuc=0;
85 nucXSection =0;
86
87 chargeSquare = spin = mass = 0.0;
88 tkinLab = momLab2 = invbetaLab2 = tkin = mom2 = invbeta2 = 0.0;
89
90 targetZ = targetMass = screenZ = ScreenRSquare = etag = 0.0;
91}
static G4NistManager * Instance()
static G4Pow * GetInstance()
static G4Proton * Proton()
Referenced by G4IonCoulombCrossSection(), and operator=().
◆ ~G4IonCoulombCrossSection()
G4IonCoulombCrossSection::~G4IonCoulombCrossSection |
( |
| ) |
|
|
default |
◆ G4IonCoulombCrossSection() [2/2]
◆ GetMomentum2()
G4double G4IonCoulombCrossSection::GetMomentum2 |
( |
| ) |
|
|
inline |
◆ Initialise()
Definition at line 95 of file G4IonCoulombCrossSection.cc.
97{
99 nucXSection = tkin = targetZ = mom2 = 0.0;
101 particle = p;
102 cosThetaMin = CosThetaLim;
103}
void SetupParticle(const G4ParticleDefinition *)
◆ NuclearCrossSection()
G4double G4IonCoulombCrossSection::NuclearCrossSection |
( |
| ) |
|
Definition at line 186 of file G4IonCoulombCrossSection.cc.
187{
188
189
190 G4double fac = coeff*targetZ*(targetZ)*chargeSquare*invbeta2/mom2;
191
192 nucXSection = 0.0;
193
196
197
198 if(cosTetMaxNuc < cosTetMinNuc) {
199 nucXSection = fac*(cosTetMinNuc - cosTetMaxNuc)/
200 (x1*(1.0 - cosTetMaxNuc + screenZ));
201 }
202
203 return nucXSection;
204}
◆ operator=()
◆ SampleCosineTheta()
G4double G4IonCoulombCrossSection::SampleCosineTheta |
( |
| ) |
|
Definition at line 208 of file G4IonCoulombCrossSection.cc.
209{
211 if(cosTetMaxNuc < cosTetMinNuc) {
212
213 G4double x1 = 1. - cosTetMinNuc + screenZ;
214 G4double x2 = 1. - cosTetMaxNuc + screenZ;
215 G4double dx = cosTetMinNuc - cosTetMaxNuc;
217 }
218 return z1;
219}
◆ SetupKinematic()
void G4IonCoulombCrossSection::SetupKinematic |
( |
G4double | kinEnergy, |
|
|
G4double | tmass ) |
Definition at line 107 of file G4IonCoulombCrossSection.cc.
108{
109 if(ekin != tkinLab || tmass != targetMass) {
110
111
112 tkinLab = ekin;
113 momLab2 = tkinLab*(tkinLab + 2.0*mass);
114 invbetaLab2 = 1.0 + mass*mass/momLab2;
115
119
120
121
122
123 targetMass = tmass;
124 G4double Ecm=sqrt(m12 + targetMass*targetMass + 2.0*etot*targetMass);
125 G4double mu_rel=mass*targetMass/Ecm;
126 G4double momCM= ptot*targetMass/Ecm;
127
128 mom2 = momCM*momCM;
129 invbeta2 = 1.0 + mu_rel*mu_rel/mom2;
130 tkin = momCM*sqrt(invbeta2) - mu_rel;
131
132 cosTetMinNuc = cosThetaMin;
133 cosTetMaxNuc = cosThetaMax;
134 }
135}
◆ SetupParticle()
Definition at line 147 of file G4IonCoulombCrossSection.hh.
148{
149 particle = p;
151 spin = particle->GetPDGSpin();
152 if(0.0 != spin) { spin = 0.5; }
153 G4double q = particle->GetPDGCharge()/CLHEP::eplus;
154 chargeSquare = q*q;
155 tkin = 0.0;
156}
G4double GetPDGMass() const
Referenced by Initialise().
◆ SetupTarget()
Definition at line 139 of file G4IonCoulombCrossSection.cc.
141{
142 if(Z != targetZ || e != etag) {
143 etag = e;
144 targetZ = Z;
146
147 SetScreenRSquare(iz);
148 screenZ = 0;
149 screenZ = ScreenRSquare/mom2;
150
151
152
153 G4double corr=5.*twopi*Z*std::sqrt(chargeSquare*alpha2);
155 screenZ *=0.5*(1.13 + corr*3.76*Z*Z*chargeSquare*invbeta2*alpha2);
156
157
158
159 if(1 == iz && particle == theProton && cosTetMaxNuc < 0.0) {
160 cosTetMaxNuc = 0.0;
161 }
162 }
163}
G4double G4Exp(G4double initial_x)
Exponential Function double precision.
G4double G4Log(G4double x)
The documentation for this class was generated from the following files: