Skip to content

bugfix in TOF clusterizer

Sergey Gorbunov requested to merge se.gorbunov/cbmroot:bigfixTof into master

Hi @p.-a.loizeau, There is probably a bug in the TOF Clusterizer; please have a look.

At the line 3960 of the CbmTofEventClusterizer.cxx:

if (hbin->GetBinContent(hbin->GetNbinsX() > 0))

It should be:

if (hbin->GetBinContent(hbin->GetNbinsX()) > 0)

Merge request reports