274{
277 G4double maxKinEnergy = std::min(maxEnergy, tmax);
278 if(minKinEnergy >= maxKinEnergy) { return; }
279
280 G4double totEnergy = kineticEnergy + mass;
281 G4double etot2 = totEnergy*totEnergy;
282 G4double beta2 = kineticEnergy*(kineticEnergy + 2.0*mass)/etot2;
283
285 G4bool radC = (tmax > limitKinEnergy && kineticEnergy > limitRadCorrection);
286 if(radC) {
288 grej += alphaprime*
a0*
a0;
289 }
290
292
293
294 do {
296 tkin = minKinEnergy*maxKinEnergy/(minKinEnergy*(1.0 - q) + maxKinEnergy*q);
297 f = 1.0 - beta2*tkin/tmax + 0.5*tkin*tkin/etot2;
298
299 if(radC && tkin > limitKinEnergy) {
301 G4double a3 =
G4Log(4.0*totEnergy*(totEnergy - tkin)/massSquare);
302 f *= (1. + alphaprime*a1*(a3 - a1));
303 }
304
305 if(f > grej) {
306 G4cout <<
"G4MuBetheBlochModel::SampleSecondary Warning! "
307 << "Majorant " << grej << " < "
308 << f << " for edelta= " << tkin
309 << " tmin= " << minKinEnergy << " max= " << maxKinEnergy
311 }
312
314
316
321 } else {
322
323 G4double deltaMom = std::sqrt(tkin * (tkin + 2.0*CLHEP::electron_mass_c2));
324 G4double totalMom = totEnergy*std::sqrt(beta2);
325 G4double cost = tkin * (totEnergy + CLHEP::electron_mass_c2) /
326 (deltaMom * totalMom);
327 cost = std::min(cost, 1.0);
328 const G4double sint = std::sqrt((1.0 - cost)*(1.0 + cost));
330
331 deltaDirection.
set(sint*std::cos(phi),sint*std::sin(phi), cost) ;
333 }
334
335 auto delta = new G4DynamicParticle(theElectron, deltaDirection, tkin);
336 vdp->push_back(delta);
337
338
339 kineticEnergy -= tkin;
342 fParticleChange->SetProposedKineticEnergy(kineticEnergy);
343 fParticleChange->SetProposedMomentumDirection(dir);
344}
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cout
void set(double x, double y, double z)
Hep3Vector & rotateUz(const Hep3Vector &)
const G4ThreeVector & GetMomentumDirection() const
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
G4ThreeVector GetMomentum() const
virtual G4ThreeVector & SampleDirection(const G4DynamicParticle *dp, G4double finalTotalEnergy, G4int Z, const G4Material *)=0
G4int SelectRandomAtomNumber(const G4Material *) const