Import Geant4 10.7.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2020-06-26 10:23:25 +02:00
parent c02c370437
commit 67ba86d073
1871 changed files with 174422 additions and 131884 deletions
@@ -79,6 +79,11 @@ inline bool dpow(const double& a_x,const double& a_y,double& a_v) {
return true;
}
inline double dgaussian(const double& a_x,const double& a_mean,const double& a_sigma) {
double _tmp = (a_x-a_mean)/a_sigma;
return ::exp(-_tmp*_tmp/2.0)/(a_sigma*::sqrt(2*pi()));
}
}
#endif