Skip to content

Commit 55ee0be

Browse files
author
Niveditha Ramasubramanian
committed
linter issues fix
1 parent 5d3613c commit 55ee0be

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

PWGDQ/Tasks/qaMatching.cxx

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -90,23 +90,23 @@ DECLARE_SOA_COLUMN(P, p, float);
9090
DECLARE_SOA_COLUMN(Pt, pt, float);
9191
DECLARE_SOA_COLUMN(Eta, eta, float);
9292
DECLARE_SOA_COLUMN(Phi, phi, float);
93-
DECLARE_SOA_COLUMN(MatchLabel, matchlabel, int8_t);
94-
DECLARE_SOA_COLUMN(TrackId, trackid, int64_t);
93+
DECLARE_SOA_COLUMN(MatchLabel, matchLabel, int8_t);
94+
DECLARE_SOA_COLUMN(TrackId, trackId, int64_t);
9595
DECLARE_SOA_COLUMN(MatchType, matchType, int8_t);
9696
DECLARE_SOA_COLUMN(MatchScore, matchScore, float);
9797
DECLARE_SOA_COLUMN(MatchRanking, matchRanking, int32_t);
9898
DECLARE_SOA_COLUMN(MftMultiplicity, mftMultiplicity, int32_t);
99-
DECLARE_SOA_COLUMN(TrackType, tracktype, int8_t);
100-
DECLARE_SOA_COLUMN(MftMatchAttempts, mftmatchattempts, int32_t);
101-
DECLARE_SOA_COLUMN(X_atVtx, x_atVtx, float);
102-
DECLARE_SOA_COLUMN(Y_atVtx, y_atVtx, float);
103-
DECLARE_SOA_COLUMN(Z_atVtx, z_atVtx, float);
104-
DECLARE_SOA_COLUMN(Px_atVtx, px_atVtx, float);
105-
DECLARE_SOA_COLUMN(Py_atVtx, py_atVtx, float);
106-
DECLARE_SOA_COLUMN(Pz_atVtx, pz_atVtx, float);
107-
DECLARE_SOA_COLUMN(ColX, colx, float);
108-
DECLARE_SOA_COLUMN(ColY, coly, float);
109-
DECLARE_SOA_COLUMN(ColZ, colz, float);
99+
DECLARE_SOA_COLUMN(TrackType, trackType, int8_t);
100+
DECLARE_SOA_COLUMN(MftMatchAttempts, mftMatchAttempts, int32_t);
101+
DECLARE_SOA_COLUMN(XAtVtx, xAtVtx, float);
102+
DECLARE_SOA_COLUMN(YAtVtx, yAtVtx, float);
103+
DECLARE_SOA_COLUMN(ZAtVtx, zAtVtx, float);
104+
DECLARE_SOA_COLUMN(PxAtVtx, pxAtVtx, float);
105+
DECLARE_SOA_COLUMN(PyAtVtx, pyAtVtx, float);
106+
DECLARE_SOA_COLUMN(PzAtVtx, pzAtVtx, float);
107+
DECLARE_SOA_COLUMN(ColX, colX, float);
108+
DECLARE_SOA_COLUMN(ColY, colY, float);
109+
DECLARE_SOA_COLUMN(ColZ, colZ, float);
110110
} // namespace qamatching
111111

112112
namespace o2::aod
@@ -121,7 +121,7 @@ DECLARE_SOA_TABLE(QaMatchingEvents, "AOD", "QAMEVT",
121121

122122
namespace qamatching
123123
{
124-
DECLARE_SOA_INDEX_COLUMN_FULL(ReducedEvent, reducedevent, int32_t, o2::aod::QaMatchingEvents, "");
124+
DECLARE_SOA_INDEX_COLUMN_FULL(ReducedEvent, reducedEvent, int32_t, o2::aod::QaMatchingEvents, "");
125125
} // namespace qamatching
126126

127127
namespace o2::aod
@@ -135,24 +135,24 @@ DECLARE_SOA_TABLE(QaMatchingMCHTrack, "AOD", "QAMCHTRK",
135135
qamatching::Eta,
136136
qamatching::Phi,
137137
qamatching::MftMatchAttempts,
138-
qamatching::X_atVtx,
139-
qamatching::Y_atVtx,
140-
qamatching::Z_atVtx,
141-
qamatching::Px_atVtx,
142-
qamatching::Py_atVtx,
143-
qamatching::Pz_atVtx);
138+
qamatching::XAtVtx,
139+
qamatching::YAtVtx,
140+
qamatching::ZAtVtx,
141+
qamatching::PxAtVtx,
142+
qamatching::PyAtVtx,
143+
qamatching::PzAtVtx);
144144
DECLARE_SOA_TABLE(QaMatchingCandidates, "AOD", "QAMCAND",
145145
qamatching::ReducedEventId,
146146
qamatching::MatchLabel,
147147
qamatching::TrackId,
148148
qamatching::P, qamatching::Pt, qamatching::Eta, qamatching::Phi,
149149
qamatching::MatchType, qamatching::MatchScore, qamatching::MatchRanking,
150-
qamatching::X_atVtx,
151-
qamatching::Y_atVtx,
152-
qamatching::Z_atVtx,
153-
qamatching::Px_atVtx,
154-
qamatching::Py_atVtx,
155-
qamatching::Pz_atVtx);
150+
qamatching::XAtVtx,
151+
qamatching::YAtVtx,
152+
qamatching::ZAtVtx,
153+
qamatching::PxAtVtx,
154+
qamatching::PyAtVtx,
155+
qamatching::PzAtVtx);
156156
} // namespace o2::aod
157157

158158
using MyEvents = soa::Join<aod::Collisions, aod::EvSels>;

0 commit comments

Comments
 (0)