Skip to content

Commit 0bc1311

Browse files
authored
[PWGHF] Fix prong0_as in MC processes (#14224)
1 parent 5043323 commit 0bc1311

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGHF/HFC/TableProducer/correlatorDsHadrons.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ struct HfCorrelatorDsHadrons {
541541
}
542542

543543
std::vector<float> outputMl = {-1., -1., -1.};
544-
auto prong0 = candidate.template prong0_as<MyTracksData>();
544+
auto prong0 = candidate.template prong0_as<TracksWithMc>();
545545
int const chargeDs = prong0.sign();
546546

547547
if (isDsSignal && isDecayChan && isCorrectInvMassHypo) {
@@ -1000,7 +1000,7 @@ struct HfCorrelatorDsHadrons {
10001000
if (!pAssoc.isGlobalTrackWoDCA()) {
10011001
continue;
10021002
}
1003-
auto prong0 = candidate.template prong0_as<MyTracksData>();
1003+
auto prong0 = candidate.template prong0_as<TracksWithMc>();
10041004
int const chargeDs = prong0.sign();
10051005
std::vector<float> outputMl = {-1., -1., -1.};
10061006
// prompt and non-prompt division

0 commit comments

Comments
 (0)