diff options
-rw-r--r-- | src/likelihood.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/likelihood.c b/src/likelihood.c index 950b646..696b52a 100644 --- a/src/likelihood.c +++ b/src/likelihood.c @@ -542,7 +542,7 @@ static void get_expected_charge_shower(particle *p, double *pos, double *dir, in * effectively averages across the face of a PMT. */ double get_theta0_min(double R, double r, double sin_theta_pmt) { - return fast_acos((R-r*sin_theta_pmt)/fast_sqrt(r*r + R*R - 2*r*R*sin_theta_pmt)); + return fast_acos((R-r*sin_theta_pmt)/sqrt(r*r + R*R - 2*r*R*sin_theta_pmt)); } static void get_expected_charge(double beta, double theta0, double *pos, double *dir, int pmt, double *q, double *reflected, double *t) |