Skip to content

Commit

Permalink
Update TMS_Reco.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
jdkio authored Sep 25, 2024
1 parent 4894e8f commit eff42e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TMS_Reco.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3797,7 +3797,7 @@ void TMS_TrackFinder::Accumulate(double xhit, double zhit) {
*/
// Fill the accumulator, but only within bounds
// We don't care about lines outside of bounds
if (i > 0 && c_bin > 0 && i < nSlope && c_bin < nIntercept) Accumulator[i][c_bin]++;
if (i >= 0 && c_bin >= 0 && i < nSlope && c_bin < nIntercept) Accumulator[i][c_bin]++;
}
}

0 comments on commit eff42e0

Please sign in to comment.