From cd5abc80de3a00f5071d227ac97192f05fb0166f Mon Sep 17 00:00:00 2001 From: jesgum Date: Wed, 8 Oct 2025 10:55:46 +0200 Subject: [PATCH] Strangeness tracking considers dead phi region --- ALICE3/TableProducer/OTF/onTheFlyTracker.cxx | 4 ++++ 1 file changed, 4 insertions(+) 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 }