471{
474 const G4double tmin = std::min(cutEnergy, kinEnergy);
475 const G4double tmax = std::min(maxEnergy, kinEnergy);
476 if (tmin >= tmax) {
477 return;
478 }
479
481 const G4Element* elm =
SelectTargetAtom(couple, fPrimaryParticle, kinEnergy,
482 logKinEnergy, tmin, tmax);
483 fCurrentIZ = std::max(std::min(elm->
GetZasInt(), gMaxZet-1), 1);
484
485 const G4double totMomentum = std::sqrt(kinEnergy*(kinEnergy + twoMass));
486
487
488
489
490
491
492
493 const G4double gammaEnergy = !fIsUseSamplingTables
494 ? SampleEnergyTransfer(kinEnergy, logKinEnergy, tmin, tmax)
495 : gSBSamplingTable->SampleEnergyTransfer(kinEnergy, logKinEnergy, tmin,
496 fDensityCorr, fCurrentIZ, couple->GetIndex(), fIsElectron);
497
498 if (gammaEnergy <= 0.) {
499 return;
500 }
501
502
503
505 fPrimaryTotalEnergy-gammaEnergy, fCurrentIZ, couple->
GetMaterial());
506
507 auto gamma = new G4DynamicParticle(fGammaParticle, gamDir, gammaEnergy);
508 vdp->push_back(gamma);
509
510
513 const G4double finalE = kinEnergy - gammaEnergy;
514
515
516
517
518
519
520
521
522
523
527 auto el = new G4DynamicParticle(
528 const_cast<G4ParticleDefinition*>(fPrimaryParticle), dir, finalE);
529 vdp->push_back(el);
530 } else {
533 }
534}
CLHEP::Hep3Vector G4ThreeVector
const G4ThreeVector & GetMomentumDirection() const
G4double GetLogKineticEnergy() const
G4double GetKineticEnergy() const
const G4Material * GetMaterial() const
virtual G4ThreeVector & SampleDirection(const G4DynamicParticle *dp, G4double finalTotalEnergy, G4int Z, const G4Material *)=0
G4VEmAngularDistribution * GetAngularDistribution()
const G4Element * SelectTargetAtom(const G4MaterialCutsCouple *, const G4ParticleDefinition *, G4double kineticEnergy, G4double logKineticEnergy, G4double cutEnergy=0.0, G4double maxEnergy=DBL_MAX)
G4double SecondaryThreshold() const