383{
386 const G4double minKinEnergy = std::min(cut, tmax);
387 const G4double maxKinEnergy = std::min(maxEnergy, tmax);
388 if(minKinEnergy >= maxKinEnergy) { return; }
389
390
391
392
393 const G4double totEnergy = kinEnergy + mass;
394 const G4double etot2 = totEnergy*totEnergy;
395 const G4double beta2 = kinEnergy*(kinEnergy + 2.0*mass)/etot2;
396
400 if( 0.0 < spin ) { fmax += 0.5*maxKinEnergy*maxKinEnergy/etot2; }
401
402 CLHEP::HepRandomEngine* rndmEngineMod = G4Random::getTheEngine();
404
405
406 do {
408 deltaKinEnergy = minKinEnergy*maxKinEnergy
409 /(minKinEnergy*(1.0 - rndm[0]) + maxKinEnergy*rndm[0]);
410
411 f = 1.0 - beta2*deltaKinEnergy/tmax;
412 if( 0.0 < spin ) {
413 f1 = 0.5*deltaKinEnergy*deltaKinEnergy/etot2;
414 f += f1;
415 }
416
417
418 } while( fmax*rndm[1] > f);
419
420
421
422
423 G4double x = formfact*deltaKinEnergy;
424 if(x > 1.e-6) {
425
428 if( 0.0 < spin ) {
429 G4double x2 = 0.5*electron_mass_c2*deltaKinEnergy/(mass*mass);
430 grej *= (1.0 + magMoment2*(x2 - f1/f)/(1.0 + x2));
431 }
432 if(grej > 1.1) {
433 G4cout <<
"### G4BetheBlochModel WARNING: grej= " << grej
435 << " Ekin(MeV)= " << kinEnergy
436 << " delEkin(MeV)= " << deltaKinEnergy
438 }
439 if(rndmEngineMod->
flat() > grej) {
return; }
440 }
441
443
446 deltaDirection =
449 mat);
450 } else {
451
453 std::sqrt(deltaKinEnergy * (deltaKinEnergy + 2.0*electron_mass_c2));
454 G4double cost = deltaKinEnergy * (totEnergy + electron_mass_c2) /
456 cost = std::min(cost, 1.0);
457 const G4double sint = std::sqrt((1.0 - cost)*(1.0 + cost));
459
460 deltaDirection.
set(sint*std::cos(phi),sint*std::sin(phi), cost) ;
462 }
463
464
465
466
467
468
469
470
471
472
473
474
475 auto delta = new G4DynamicParticle(theElectron,deltaDirection,deltaKinEnergy);
476
477 vdp->push_back(delta);
478
479
480 kinEnergy -= deltaKinEnergy;
482 finalP = finalP.
unit();
483
484 fParticleChange->SetProposedKineticEnergy(kinEnergy);
485 fParticleChange->SetProposedMomentumDirection(finalP);
486}
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cout
void set(double x, double y, double z)
Hep3Vector & rotateUz(const Hep3Vector &)
virtual void flatArray(const int size, double *vect)=0
const G4ThreeVector & GetMomentumDirection() const
G4ThreeVector GetMomentum() const
G4double GetTotalMomentum() const
const G4String & GetParticleName() const
virtual G4ThreeVector & SampleDirection(const G4DynamicParticle *dp, G4double finalTotalEnergy, G4int Z, const G4Material *)=0
G4int SelectRandomAtomNumber(const G4Material *) const