diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/quad.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -312,7 +312,7 @@ int quad(event *ev, double *pos, double *t0, size_t npoints, double f) * macroscopic distances in the detector we want to only sample the * quad points near the start of the track, i.e. the points with the * earliest times. */ - nresults = (int) f*nresults; + nresults = (int) (f*nresults); } /* Sort the x, y, z, and t0 columns so we can calculate the median. Note: |