117 static const G4double a = 20.0 , b = 230.0 , c = 440.0;
120 d1= 2.7965e-1*CLHEP::barn, d2=-1.8300e-1*CLHEP::barn,
121 d3= 6.7527 *CLHEP::barn, d4=-1.9798e+1*CLHEP::barn,
122 e1= 1.9756e-5*CLHEP::barn, e2=-1.0205e-2*CLHEP::barn,
123 e3=-7.3913e-2*CLHEP::barn, e4= 2.7079e-2*CLHEP::barn,
124 f1=-3.9178e-7*CLHEP::barn, f2= 6.8241e-5*CLHEP::barn,
125 f3= 6.0480e-5*CLHEP::barn, f4= 3.0274e-4*CLHEP::barn;
127 G4double p1Z = Z*(d1 + e1*Z + f1*Z*Z), p2Z = Z*(d2 + e2*Z + f2*Z*Z),
128 p3Z = Z*(d3 + e3*Z + f3*Z*Z), p4Z = Z*(d4 + e4*Z + f4*Z*Z);
131 if (Z < 1.5) { T0 = 40.0*keV; }
133 G4double X = max(gammaEnergy, T0) / electron_mass_c2;
134 xSection = p1Z*
G4Log(1.+2.*X)/X
135 + (p2Z + p3Z*X + p4Z*X*X)/(1. + a*X + b*X*X + c*X*X*X);
139 if (gammaEnergy < T0) {
140 X = (T0+dT0) / electron_mass_c2 ;
142 + (p2Z + p3Z*X + p4Z*X*X)/(1. + a*X + b*X*X + c*X*X*X);
143 G4double c1 = -T0*(sigma-xSection)/(xSection*dT0);
145 if (Z > 1.5) { c2 = 0.375-0.0556*
G4Log(Z); }
147 xSection *=
G4Exp(-y*(c1+c2*y));
150 if(xSection < 0.0) { xSection = 0.0; }
159 std::vector<G4DynamicParticle*>* fvect,
178 if(nShells > (
G4int)fProbabilities.size()) { fProbabilities.resize(nShells); }
181 for(i=0; i<nShells; ++i) {
185 fProbabilities[i] = totprob;
189 static const G4int nlooplim = 1000;
192 G4double bindingEnergy, ePotEnergy, eKinEnergy;
206 for(i=0; i<nShells; ++i) {
if(xprob <= fProbabilities[i]) {
break; } }
209 lv1.set(0.0,0.0,energy,energy);
217 eKinEnergy = bindingEnergy*x;
218 ePotEnergy = bindingEnergy*(1.0 + x);
221 G4double eTotMomentum = sqrt(eKinEnergy*(eKinEnergy + 2*electron_mass_c2));
224 G4double sintet = sqrt((1 - costet)*(1 + costet));
225 lv2.set(eTotMomentum*sintet*cos(phi),eTotMomentum*sintet*sin(phi),
226 eTotMomentum*costet,eKinEnergy + electron_mass_c2);
227 bst = lv2.boostVector();
230 gamEnergy0 = lv1.e();
236 G4double E0_m = gamEnergy0/electron_mass_c2;
253 if(nloop > nlooplim) {
return; }
258 if ( alpha1 >
alpha2*rndm[0] ) {
263 epsilonsq = epsilon0sq + (1.- epsilon0sq)*rndm[1];
268 sint2 = onecost*(2.-onecost);
269 greject = 1. -
epsilon*sint2/(1.+ epsilonsq);
272 }
while (greject < rndm[2]);
273 gamEnergy1 =
epsilon*gamEnergy0;
276 lv2.set(0.0,0.0,0.0,electron_mass_c2);
282 if(sint2 < 0.0) { sint2 = 0.0; }
283 costet = 1. - onecost;
284 sintet = sqrt(sint2);
285 phi = twopi * rndmEngineMod->
flat();
293 lv1.
set(gamEnergy1*v.
x(),gamEnergy1*v.
y(),gamEnergy1*v.
z(),gamEnergy1);
298 eKinEnergy = lv2.e() - electron_mass_c2 - ePotEnergy;
302 }
while ( eKinEnergy < 0.0 );
309 gamEnergy1 = lv1.e();
328 fvect->push_back(dp);
329 }
else { eKinEnergy = 0.0; }
331 G4double edep = energy - gamEnergy1 - eKinEnergy;
336 if(
nullptr != fAtomDeexcitation) {
338 if(fAtomDeexcitation->CheckDeexcitationActiveRegion(index)) {
341 const G4AtomicShell* shell = fAtomDeexcitation->GetAtomicShell(Z, as);
343 fAtomDeexcitation->GenerateParticles(fvect, shell, Z, index);
346 for (
G4int j=nbefore; j<nafter; ++j) {
347 G4double e = ((*fvect)[j])->GetKineticEnergy();
348 if(esec + e > edep) {
351 ((*fvect)[j])->SetKineticEnergy(e);
364 for (
G4int jj=nafter-1; jj>j; --jj) {
375 if(std::abs(energy - gamEnergy1 - eKinEnergy - esec - edep) > eV) {
376 G4cout <<
"### G4KleinNishinaModel dE(eV)= "
377 << (energy - gamEnergy1 - eKinEnergy - esec - edep)/eV
379 <<
" E(keV)= " << energy/keV
380 <<
" Ebind(keV)= " << bindingEnergy/keV
381 <<
" Eg(keV)= " << gamEnergy1/keV
382 <<
" Ee(keV)= " << eKinEnergy/keV
383 <<
" Esec(keV)= " << esec/keV
384 <<
" Edep(keV)= " << edep/keV
const G4ThreeVector & GetMomentumDirection() const
G4double GetKineticEnergy() const