68G4double G4MuBetheBlochModel::xgi[]={ 0.0199, 0.1017, 0.2372, 0.4083, 0.5917,
69 0.7628, 0.8983, 0.9801 };
71G4double G4MuBetheBlochModel::wgi[]={ 0.0506, 0.1112, 0.1569, 0.1813, 0.1813,
72 0.1569, 0.1112, 0.0506 };
82 limitKinEnergy(100.*keV),
83 logLimitKinEnergy(
G4Log(limitKinEnergy)),
84 twoln10(2.0*
G4Log(10.0)),
87 alphaprime(fine_structure_const/twopi)
91 fParticleChange =
nullptr;
95 mass = massSquare = ratio = 1.0;
97 if(p) { SetParticle(p); }
114 G4double tmax = 2.0*electron_mass_c2*tau*(tau + 2.) /
115 (1. + 2.0*(tau + 1.)*ratio + ratio*ratio);
124 if(p) { SetParticle(p); }
138 G4double maxEnergy = min(tmax,maxKinEnergy);
139 if(cutEnergy < maxEnergy) {
141 G4double totEnergy = kineticEnergy + mass;
142 G4double energy2 = totEnergy*totEnergy;
143 G4double beta2 = kineticEnergy*(kineticEnergy + 2.0*mass)/energy2;
145 cross = 1.0/cutEnergy - 1.0/maxEnergy - beta2*
G4Log(maxEnergy/cutEnergy)/tmax
146 + 0.5*(maxEnergy - cutEnergy)/energy2;
149 if (maxEnergy > limitKinEnergy) {
153 G4double logstep = logtmax - logtmin;
156 for (
G4int ll=0; ll<8; ll++)
160 G4double a3 =
G4Log(4.0*totEnergy*(totEnergy - ep)/massSquare);
161 dcross += wgi[ll]*(1.0/ep - beta2/tmax + 0.5*ep/energy2)*a1*(a3 - a1);
164 cross += dcross*logstep*alphaprime;
167 cross *= twopi_mc2_rcl2/beta2;
187 (p,kineticEnergy,cutEnergy,maxEnergy);
202 (p,kineticEnergy,cutEnergy,maxEnergy);
225 G4double dedx =
G4Log(2.0*electron_mass_c2*bg2*cutEnergy/eexc2)
226 -(1.0 + cutEnergy/tmax)*beta2;
228 G4double totEnergy = kineticEnergy + mass;
229 G4double del = 0.5*cutEnergy/totEnergy;
241 if (dedx < 0.0) dedx = 0.0 ;
244 if (cutEnergy > limitKinEnergy) {
247 G4double logstep = logtmax - logLimitKinEnergy;
249 G4double ftot2= 0.5/(totEnergy*totEnergy);
251 for (
G4int ll=0; ll<8; ll++)
255 G4double a3 =
G4Log(4.0*totEnergy*(totEnergy - ep)/massSquare);
256 dloss += wgi[ll]*(1.0 - beta2*ep/tmax + ep*ep*ftot2)*a1*(a3 - a1);
258 dedx += dloss*logstep*alphaprime;
261 dedx *= twopi_mc2_rcl2*eDensity/beta2;
278 G4double maxKinEnergy = min(maxEnergy,tmax);
279 if(minKinEnergy >= maxKinEnergy) {
return; }
282 G4double totEnergy = kineticEnergy + mass;
283 G4double etot2 = totEnergy*totEnergy;
284 G4double beta2 = kineticEnergy*(kineticEnergy + 2.0*mass)/etot2;
287 if(tmax > limitKinEnergy) {
289 grej += alphaprime*
a0*
a0;
297 deltaKinEnergy = minKinEnergy*maxKinEnergy
298 /(minKinEnergy*(1.0 - q) + maxKinEnergy*q);
301 f = 1.0 - beta2*deltaKinEnergy/tmax
302 + 0.5*deltaKinEnergy*deltaKinEnergy/etot2;
304 if(deltaKinEnergy > limitKinEnergy) {
305 G4double a1 =
G4Log(1.0 + 2.0*deltaKinEnergy/electron_mass_c2);
306 G4double a3 =
G4Log(4.0*totEnergy*(totEnergy - deltaKinEnergy)/massSquare);
307 f *= (1. + alphaprime*a1*(a3 - a1));
311 G4cout <<
"G4MuBetheBlochModel::SampleSecondary Warning! "
312 <<
"Majorant " << grej <<
" < "
313 << f <<
" for edelta= " << deltaKinEnergy
314 <<
" tmin= " << minKinEnergy <<
" max= " << maxKinEnergy
321 sqrt(deltaKinEnergy * (deltaKinEnergy + 2.0*electron_mass_c2));
322 G4double totalMomentum = totEnergy*sqrt(beta2);
323 G4double cost = deltaKinEnergy * (totEnergy + electron_mass_c2) /
324 (deltaMomentum * totalMomentum);
326 G4double sint = sqrt(1.0 - cost*cost);
330 G4ThreeVector deltaDirection(sint*cos(phi),sint*sin(phi), cost) ;
335 kineticEnergy -= deltaKinEnergy;
336 G4ThreeVector dir = totalMomentum*direction - deltaMomentum*deltaDirection;
337 direction = dir.
unit();
343 deltaDirection,deltaKinEnergy);
344 vdp->push_back(delta);
G4double G4Exp(G4double initial_x)
Exponential Function double precision.
G4double G4Log(G4double x)
G4GLOB_DLL std::ostream G4cout
Hep3Vector & rotateUz(const Hep3Vector &)
const G4ThreeVector & GetMomentumDirection() const
G4double GetKineticEnergy() const
static G4Electron * Electron()
G4double HighOrderCorrections(const G4ParticleDefinition *, const G4Material *, G4double kineticEnergy, G4double cutEnergy)
G4double ShellCorrection(const G4ParticleDefinition *, const G4Material *, G4double kineticEnergy)
G4double GetMeanExcitationEnergy() const
G4double DensityCorrection(G4double x)
static G4LossTableManager * Instance()
G4EmCorrections * EmCorrections()
const G4Material * GetMaterial() const
G4IonisParamMat * GetIonisation() const
G4double GetElectronDensity() const
virtual void SampleSecondaries(std::vector< G4DynamicParticle * > *, const G4MaterialCutsCouple *, const G4DynamicParticle *, G4double tmin, G4double maxEnergy) override
virtual G4double ComputeCrossSectionPerAtom(const G4ParticleDefinition *, G4double kineticEnergy, G4double Z, G4double A, G4double cutEnergy, G4double maxEnergy) override
virtual G4double MaxSecondaryEnergy(const G4ParticleDefinition *, G4double kinEnergy) override
virtual G4double MinEnergyCut(const G4ParticleDefinition *, const G4MaterialCutsCouple *) override
virtual void Initialise(const G4ParticleDefinition *, const G4DataVector &) override
virtual G4double CrossSectionPerVolume(const G4Material *, const G4ParticleDefinition *, G4double kineticEnergy, G4double cutEnergy, G4double maxEnergy) override
G4MuBetheBlochModel(const G4ParticleDefinition *p=nullptr, const G4String &nam="MuBetheBloch")
virtual G4double ComputeCrossSectionPerElectron(const G4ParticleDefinition *, G4double kineticEnergy, G4double cutEnergy, G4double maxEnergy)
virtual G4double ComputeDEDXPerVolume(const G4Material *, const G4ParticleDefinition *, G4double kineticEnergy, G4double cutEnergy) override
void SetProposedKineticEnergy(G4double proposedKinEnergy)
void SetProposedMomentumDirection(const G4ThreeVector &dir)
G4double MaxSecondaryKinEnergy(const G4DynamicParticle *dynParticle)
G4ParticleChangeForLoss * GetParticleChangeForLoss()