Skip to content

Commit a5bb3b4

Browse files
authored
[Run2,Converter]: fixes to naming to ensure compatibility (#14319)
PR #23830 from AliPhysics changed the name of the Mass column for OTFV0s. This PR changes the column name now here in O2.
1 parent 8d03277 commit a5bb3b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Framework/Core/include/Framework/AnalysisDataModel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1776,7 +1776,7 @@ DECLARE_SOA_COLUMN(Chi2NDF, chi2NDF, float); //! chi^
17761776
DECLARE_SOA_COLUMN(PsiPair, psiPair, float); //! Psi pair
17771777
DECLARE_SOA_COLUMN(DCAr, dcaR, float); //! DCA in radial direction
17781778
DECLARE_SOA_COLUMN(DCAz, dcaZ, float); //! DCA in z direction
1779-
DECLARE_SOA_COLUMN(Mass, mass, float); //! mass of the conversion. Do NOT use for cut!
1779+
DECLARE_SOA_COLUMN(MassInMeV, mass, float); //! mass of the conversion in MeV. Do NOT use for cut!
17801780
} // namespace oftv0
17811781
namespace pmd
17821782
{
@@ -1824,7 +1824,7 @@ DECLARE_SOA_TABLE(Run2OTFV0s, "AOD", "Run2OTFV0", //! Run 2 V0 on the fly table
18241824
run2::oftv0::X, run2::oftv0::Y, run2::oftv0::Z,
18251825
run2::oftv0::Chi2NDF, run2::oftv0::PsiPair,
18261826
run2::oftv0::DCAr, run2::oftv0::DCAz,
1827-
run2::oftv0::Mass);
1827+
run2::oftv0::MassInMeV);
18281828

18291829
using Run2OTFV0 = Run2OTFV0s::iterator;
18301830

0 commit comments

Comments
 (0)