diff options
author | tlatorre <tlatorre@uchicago.edu> | 2019-05-23 10:28:53 -0400 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2019-05-23 10:28:53 -0400 |
commit | c274fc18f49b70880f33cf762d0d1f78f037be26 (patch) | |
tree | 9907bc248eea81d95a1bc98f1c03671734406ac6 /src/likelihood.h | |
parent | 495b1de16c72497c44c53489c522f85cc5eab7b3 (diff) | |
download | sddm-c274fc18f49b70880f33cf762d0d1f78f037be26.tar.gz sddm-c274fc18f49b70880f33cf762d0d1f78f037be26.tar.bz2 sddm-c274fc18f49b70880f33cf762d0d1f78f037be26.zip |
add 1e-10 to the angular pdfs to ensure that the CDF is strictly increasing
Diffstat (limited to 'src/likelihood.h')
-rw-r--r-- | src/likelihood.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/likelihood.h b/src/likelihood.h index d739802..304fd70 100644 --- a/src/likelihood.h +++ b/src/likelihood.h @@ -22,6 +22,8 @@ #include <gsl/gsl_interp.h> #include <gsl/gsl_spline.h> +#define EPSILON 1e-10 + #define PSUP_REFLECTION_TIME 80.0 /* Minimum number of points in the track integral. */ |