mirror of
https://github.com/gwm17/catima.git
synced 2025-03-13 13:48:51 -04:00
commit
1a5e0cd1c6
|
@ -636,7 +636,7 @@ double z_effective(const Projectile &p,const Target &t, const Config &c){
|
||||||
return z_eff_Schiwietz(p.Z, beta, t.Z);
|
return z_eff_Schiwietz(p.Z, beta, t.Z);
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
assert("unknown effective charge config");
|
assert(false);
|
||||||
return 0.0;
|
return 0.0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -720,6 +720,9 @@ double z_eff_Winger(double pz, double beta, double tz){
|
||||||
double z_eff_global(double pz, double E, double tz){
|
double z_eff_global(double pz, double E, double tz){
|
||||||
if(E>2000)
|
if(E>2000)
|
||||||
return pz;
|
return pz;
|
||||||
|
else if(E<30.0 || pz<29){
|
||||||
|
return z_eff_Pierce_Blann(pz, E);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
#ifdef GLOBAL
|
#ifdef GLOBAL
|
||||||
return global_qmean(pz, tz, E);
|
return global_qmean(pz, tz, E);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user