From 967b9f5a818c2f496eb63eac8be1fdc5f0c7d52b Mon Sep 17 00:00:00 2001 From: Mark Jones <jones@jlab.org> Date: Tue, 14 Apr 2015 10:03:43 -0400 Subject: [PATCH] In THcHodoscope::EstimateFocalPlaneTime binmax=1 changed to binmax=i+1 --- src/THcHodoscope.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/THcHodoscope.cxx b/src/THcHodoscope.cxx index 9e6b0bc..16c3040 100644 --- a/src/THcHodoscope.cxx +++ b/src/THcHodoscope.cxx @@ -622,7 +622,7 @@ void THcHodoscope::EstimateFocalPlaneTime( void ) Int_t maxhit=0; for(Int_t i=0;i<200;i++) { if(timehist[i]>maxhit) { - binmax = i; + binmax = i+1; maxhit = timehist[i]; } } -- GitLab