diff --git a/reco/detectors/tof/CbmTofTrackFinderNN.cxx b/reco/detectors/tof/CbmTofTrackFinderNN.cxx index f4eeebca7ad4f4c6a7eb11a929c7330bc52bd2e7..e1167e0abf136a4ea1db063762354a3f61ec23a7 100644 --- a/reco/detectors/tof/CbmTofTrackFinderNN.cxx +++ b/reco/detectors/tof/CbmTofTrackFinderNN.cxx @@ -1236,11 +1236,8 @@ void CbmTofTrackFinderNN::Line3Dfit(CbmTofTracklet* pTrk) { (pTrk->GetTrackParameter())->SetTx(dRes[1]); (pTrk->GetTrackParameter())->SetTy(dRes[3]); (pTrk->GetTrackParameter())->SetQp(1.); // FIXME - // pTrk->SetChiSq(fMinuit.GetChi2DoF()); - pTrk->SetChiSq( - fMinuit.GetChi2DoF() - / pTrk - ->GetNofHits()); // empirical to equilibrate bias on hit multiplicity!!! + pTrk->SetChiSq(fMinuit.GetChi2DoF() / pTrk->GetNofHits()); + // empirical to equilibrate bias on hit multiplicity!!! } ClassImp(CbmTofTrackFinderNN)