From 0fef71e7cdf7f0e76571151bc7b19a8b1c64882b Mon Sep 17 00:00:00 2001 From: Marvin Hemmer Date: Thu, 22 May 2025 21:03:57 +0200 Subject: [PATCH] [Run2,Converter]: fixes to naming to ensure compatibility PR #23830 from AliPhysics changed the name of the Mass column for OTFV0s. This PR changes the column name now here in O2. --- Framework/Core/include/Framework/AnalysisDataModel.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Framework/Core/include/Framework/AnalysisDataModel.h b/Framework/Core/include/Framework/AnalysisDataModel.h index 3216a24ed73a2..a2b0dc39950d4 100644 --- a/Framework/Core/include/Framework/AnalysisDataModel.h +++ b/Framework/Core/include/Framework/AnalysisDataModel.h @@ -1776,7 +1776,7 @@ DECLARE_SOA_COLUMN(Chi2NDF, chi2NDF, float); //! chi^ DECLARE_SOA_COLUMN(PsiPair, psiPair, float); //! Psi pair DECLARE_SOA_COLUMN(DCAr, dcaR, float); //! DCA in radial direction DECLARE_SOA_COLUMN(DCAz, dcaZ, float); //! DCA in z direction -DECLARE_SOA_COLUMN(Mass, mass, float); //! mass of the conversion. Do NOT use for cut! +DECLARE_SOA_COLUMN(MassInMeV, mass, float); //! mass of the conversion in MeV. Do NOT use for cut! } // namespace oftv0 namespace pmd { @@ -1824,7 +1824,7 @@ DECLARE_SOA_TABLE(Run2OTFV0s, "AOD", "Run2OTFV0", //! Run 2 V0 on the fly table run2::oftv0::X, run2::oftv0::Y, run2::oftv0::Z, run2::oftv0::Chi2NDF, run2::oftv0::PsiPair, run2::oftv0::DCAr, run2::oftv0::DCAz, - run2::oftv0::Mass); + run2::oftv0::MassInMeV); using Run2OTFV0 = Run2OTFV0s::iterator;