From f5dee3b3d60aad51ce8787f6ed3a62e6a91c663b Mon Sep 17 00:00:00 2001 From: mvaid Date: Thu, 10 Sep 2026 15:46:26 +0530 Subject: [PATCH] Fix TESTBIT check for D* ML selection in derived-data-creator --- PWGHF/TableProducer/derivedDataCreatorDstarToD0Pi.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWGHF/TableProducer/derivedDataCreatorDstarToD0Pi.cxx b/PWGHF/TableProducer/derivedDataCreatorDstarToD0Pi.cxx index d2812782bde..a69bdea3f2c 100644 --- a/PWGHF/TableProducer/derivedDataCreatorDstarToD0Pi.cxx +++ b/PWGHF/TableProducer/derivedDataCreatorDstarToD0Pi.cxx @@ -255,7 +255,7 @@ struct HfDerivedDataCreatorDstarToD0Pi { int pdgBhadMotherPart = 0; for (const auto& candidate : candidatesThisColl) { if constexpr (IsMl) { - if (!TESTBIT(candidate.isSelDstarToD0Pi(), aod::SelectionStep::RecoMl)) { + if (!candidate.isSelDstarToD0Pi()) { continue; } }