@@ -55,6 +55,10 @@ namespace o2::aod
5555{
5656namespace full
5757{
58+ // ids
59+ DECLARE_SOA_INDEX_COLUMN (V0, v0);
60+ DECLARE_SOA_INDEX_COLUMN (Cascade, cascade);
61+ DECLARE_SOA_INDEX_COLUMN_FULL (BachelorFromCharmBaryon, bachelorFromCharmBaryon, int , Tracks, " _bachelorfromcharmbaryon" );
5862// collision info
5963DECLARE_SOA_COLUMN (IsEventSel8, isEventSel8, bool );
6064DECLARE_SOA_COLUMN (IsEventSelZ, isEventSelZ, bool );
@@ -218,6 +222,7 @@ DECLARE_SOA_TABLE(HfToXiPiEvs, "AOD", "HFTOXIPIEV",
218222 full::IsEventSel8, full::IsEventSelZ);
219223
220224DECLARE_SOA_TABLE (HfToXiPiFulls, " AOD" , " HFTOXIPIFULL" ,
225+ full::V0Id, full::CascadeId, full::BachelorFromCharmBaryonId,
221226 full::XPv, full::YPv, full::ZPv, full::Centrality, collision::NumContrib, collision::Chi2,
222227 full::XDecayVtxCharmBaryon, full::YDecayVtxCharmBaryon, full::ZDecayVtxCharmBaryon,
223228 full::XDecayVtxCascade, full::YDecayVtxCascade, full::ZDecayVtxCascade,
@@ -428,7 +433,10 @@ struct HfTreeCreatorToXiPiQa {
428433 originMc,
429434 collisionMatched);
430435 } else {
431- rowCandidateFull (candidate.xPv (),
436+ rowCandidateFull (candidate.v0Id (),
437+ candidate.cascadeId (),
438+ candidate.bachelorFromCharmBaryonId (),
439+ candidate.xPv (),
432440 candidate.yPv (),
433441 candidate.zPv (),
434442 centrality,
0 commit comments