@@ -258,7 +258,10 @@ DECLARE_SOA_COLUMN(CandidateSelFlag, candidateSelFlag, int); //! Selection o
258258DECLARE_SOA_COLUMN (BDTBkg, bdtBkg, float ); // ! Background score using Boosted Decision Tree for charm hadron
259259DECLARE_SOA_COLUMN (BDTPrompt, bdtPrompt, float ); // ! Prompt signal score using Boosted Decision Tree for charm hadron
260260DECLARE_SOA_COLUMN (BDTFD , bdtFD, float ); // ! Feed-down score using Boosted Decision Tree for charm hadron
261- DECLARE_SOA_COLUMN (FlagMc, flagMc, int ); // ! To select MC particle among charm hadrons, { DplusToPiKPi = 1, LcToPKPi = 17, DsToKKPi = 6, XicToPKPi = 21, N3ProngD = 2ecays };
261+ DECLARE_SOA_COLUMN (InvMassCharm, invMassCharm, float ); // ! Reconstructed invariant mass of charm hadron (e.g. invMassXicPlus for Ξc± → Ξππ)
262+ DECLARE_SOA_COLUMN (CascPosTrackId, cascPosTrackId, int ); // ! Positive track ID from Λ in Ξ cascade (Ξc± → Ξππ)
263+ DECLARE_SOA_COLUMN (CascNegTrackId, cascNegTrackId, int ); // ! Negative track ID from Λ in Ξ cascade (Ξc± → Ξππ)
264+ DECLARE_SOA_COLUMN (FlagMc, flagMc, int ); // ! To select MC particle among charm hadrons, { DplusToPiKPi = 1, LcToPKPi = 17, DsToKKPi = 6, XicToPKPi = 21, XicToXiPiPi = 1, N3ProngD = 2ecays };
262265DECLARE_SOA_COLUMN (OriginMcRec, originMcRec, int ); // ! flag for reconstruction level matching (1 for prompt, 2 for non-prompt)
263266DECLARE_SOA_COLUMN (OriginMcGen, originMcGen, int ); // ! flag for generator level matching (1 for prompt, 2 for non-prompt)
264267DECLARE_SOA_COLUMN (IsCandidateSwapped, isCandidateSwapped, int ); // ! swapping of the prongs order (0 for Lc -> pkpi, 1 for Lc -> pikp)
@@ -416,6 +419,12 @@ DECLARE_SOA_TABLE(FDHfCand3Prong, "AOD", "FDHFCAND3PRONG", //! Table to store th
416419 fdhf::Phi<fdhf::Prong0Pt, fdhf::Prong0Phi, fdhf::Prong0Eta, fdhf::Prong1Pt, fdhf::Prong1Phi, fdhf::Prong1Eta, fdhf::Prong2Pt, fdhf::Prong2Phi, fdhf::Prong2Eta>,
417420 fdhf::Pt<fdhf::Prong0Pt, fdhf::Prong0Phi, fdhf::Prong0Eta, fdhf::Prong1Pt, fdhf::Prong1Phi, fdhf::Prong1Eta, fdhf::Prong2Pt, fdhf::Prong2Phi, fdhf::Prong2Eta>);
418421
422+ DECLARE_SOA_TABLE (FDHfCand3ProngXic, " AOD" , " FDHFCAND3PRONGXIC" , // ! Extension table for Ξc± → Ξππ candidates (aligned rows with FDHfCand3Prong)
423+ o2::soa::Index<>,
424+ fdhf::InvMassCharm,
425+ fdhf::CascPosTrackId,
426+ fdhf::CascNegTrackId);
427+
419428DECLARE_SOA_TABLE (FDHfCand2Prong, " AOD" , " FDHFCAND2PRONG" , // ! Table to store the derived data for charm 3prong candidates
420429 o2::soa::Index<>,
421430 femtodreamparticle::FDCollisionId,
0 commit comments