Skip to content

Commit

Permalink
[PWGHF] Fixed Ds selection flag (AliceO2Group#3771)
Browse files Browse the repository at this point in the history
* Fixed Ds selection flag

* Topological selection bit is not checked anymore

* Ds topological selection flag checked before setting ML selection flag
  • Loading branch information
fchinu authored Nov 4, 2023
1 parent 08aa90e commit 73a776f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions PWGHF/TableProducer/candidateSelectorDsToKKPi.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -280,10 +280,10 @@ struct HfCandidateSelectorDsToKKPi {
}
continue;
}
if (pidDsToKKPi) {
if (topolDsToKKPi && pidDsToKKPi) {
SETBIT(statusDsToKKPi, aod::SelectionStep::RecoPID);
}
if (pidDsToPiKK) {
if (topolDsToPiKK && pidDsToPiKK) {
SETBIT(statusDsToPiKK, aod::SelectionStep::RecoPID);
}
if (activateQA) {
Expand All @@ -309,10 +309,10 @@ struct HfCandidateSelectorDsToKKPi {
hfSelDsToKKPiCandidate(statusDsToKKPi, statusDsToPiKK);
continue;
}
if (pidDsToKKPi) {
if (topolDsToKKPi && pidDsToKKPi) {
SETBIT(statusDsToKKPi, aod::SelectionStep::RecoMl);
}
if (pidDsToPiKK) {
if (topolDsToPiKK && pidDsToPiKK) {
SETBIT(statusDsToPiKK, aod::SelectionStep::RecoMl);
}
if (activateQA) {
Expand Down

0 comments on commit 73a776f

Please sign in to comment.