Skip to content

Commit 5d44432

Browse files
committed
fix linter error
1 parent e27a654 commit 5d44432

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGHF/D2H/Tasks/taskCd.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ namespace o2::aod
6363
namespace full
6464
{
6565
// Candidate kinematics
66-
DECLARE_SOA_COLUMN(MCd, mcd, float); //! Invariant mass of cd candidate (GeV/c^2)
67-
DECLARE_SOA_COLUMN(MLc, mlc, float); //! Invariant mass of lc candidate (GeV/c^2)
66+
DECLARE_SOA_COLUMN(MassCd, massCd, float); //! Invariant mass of cd candidate (GeV/c^2)
67+
DECLARE_SOA_COLUMN(MassLc, massLc, float); //! Invariant mass of lc candidate (GeV/c^2)
6868
DECLARE_SOA_COLUMN(Pt, pt, float); //! Transverse momentum of candidate (GeV/c)
6969
DECLARE_SOA_COLUMN(Eta, eta, float); //! eta of candidate (GeV/c)
7070
DECLARE_SOA_COLUMN(Phi, phi, float); //! phi of candidate (GeV/c)
@@ -101,8 +101,8 @@ DECLARE_SOA_COLUMN(TimeStamp, timeStamp, int64_t); //! Timestamp fo
101101

102102
// Full table: include ALL columns declared above
103103
DECLARE_SOA_TABLE(HfCandCd, "AOD", "HFCANDCD",
104-
full::MCd,
105-
full::MLc,
104+
full::MassCd,
105+
full::MassLc,
106106
full::Pt,
107107
full::Eta,
108108
full::Phi,

0 commit comments

Comments
 (0)