diff --git a/ALICE3/TableProducer/OTF/onTheFlyTracker.cxx b/ALICE3/TableProducer/OTF/onTheFlyTracker.cxx index f2d11253b25..1be815b2411 100644 --- a/ALICE3/TableProducer/OTF/onTheFlyTracker.cxx +++ b/ALICE3/TableProducer/OTF/onTheFlyTracker.cxx @@ -838,6 +838,10 @@ struct OnTheFlyTracker { static_cast(xyz1[1]), static_cast(xyz1[2])}; const o2::track::TrackParametrization::dim3_t hitpointcov = {currentTrackingLayer.getResolutionRPhi() * currentTrackingLayer.getResolutionRPhi(), 0.f, currentTrackingLayer.getResolutionZ() * currentTrackingLayer.getResolutionZ()}; + if (currentTrackingLayer.isInDeadPhiRegion(phi)) { + continue; // No hit for strangeness tracking update + } + cascadeTrack.update(hitpoint, hitpointcov); thisCascade.foundClusters++; // add to findable }