diff options
-rw-r--r-- | src/path.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -27,8 +27,12 @@ * By introducing a minimum value for the scattering RMS we broaden the angular * distribution such that it effectively averages across the face of a PMT. * - * FIXME: Should do some tests to figure out what is the best value. */ -#define MIN_THETA0 0.01 + * Initially had this at 0.01 since that roughly corresponded to the angular + * width of the PMT from the center to the PSUP. Now, since we calculate the + * angular width for every point in get_theta0_min() this isn't necessary. We + * still keep it though so that at the *very* beginning of the track theta0 is + * not zero. */ +#define MIN_THETA0 1e-5 typedef double getKineticEnergyFunc(double x, void *params); |