From d073f881083c17d82ccc522facf4696cfbef010a Mon Sep 17 00:00:00 2001 From: Matthias Frey <matthias.frey@psi.ch> Date: Fri, 3 Aug 2018 13:03:07 +0200 Subject: [PATCH] fix bug: int --> double --- src/Classic/AbsBeamline/Probe.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Classic/AbsBeamline/Probe.h b/src/Classic/AbsBeamline/Probe.h index 8fd6eedf2..04f04b63b 100644 --- a/src/Classic/AbsBeamline/Probe.h +++ b/src/Classic/AbsBeamline/Probe.h @@ -93,7 +93,7 @@ private: ///@} double width_m; ///< bin width, not used Point geom_m[5]; ///< actual geometry positions with adaptive width such that each particle hits probe once per turn - int step_m; ///< Step size of the probe (bin width in histogram file) + double step_m; ///< Step size of the probe (bin width in histogram file) double A_m, B_m,R_m, C_m; void setGeom(const double dist); -- GitLab