Skip to content

Commit d2820b6

Browse files
committed
Fix tracked hypertriton MC candidate output
1 parent 3045071 commit d2820b6

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

PWGLF/TableProducer/Nuspex/trackedHypertritonRecoTask.cxx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1028,7 +1028,8 @@ struct TrackedHypertritonRecoTask {
10281028
continue;
10291029
}
10301030
buildTwoBody(heTrack, piTrack, collision, trackedV0.itsClsSize(), [&](auto... values) {
1031-
mcHypCands(values...,
1031+
mcHypCands(collision.globalIndex(), heTrack.globalIndex(), piTrack.globalIndex(),
1032+
values...,
10321033
mcInfo.genPt, mcInfo.genPhi, mcInfo.genEta, mcInfo.genPtHe3,
10331034
mcInfo.genDecayVertex[0], mcInfo.genDecayVertex[1], mcInfo.genDecayVertex[2],
10341035
true, mcInfo.fakeHeITSLayerMap, mcInfo.isSignal,
@@ -1161,7 +1162,8 @@ struct TrackedHypertritonRecoTask {
11611162
primaryVertexZ = collision.posZ();
11621163
}
11631164
}
1164-
mcHypCands(centralityFT0A, centralityFT0C, centralityFT0M,
1165+
mcHypCands(-1, -1, -1,
1166+
centralityFT0A, centralityFT0C, centralityFT0M,
11651167
trackOccupancyInTimeRange, ft0cOccupancyInTimeRange,
11661168
primaryVertexX, primaryVertexY, primaryVertexZ,
11671169
runNumber, mother.pdgCode() > 0,

0 commit comments

Comments
 (0)