@@ -90,23 +90,23 @@ DECLARE_SOA_COLUMN(P, p, float);
9090DECLARE_SOA_COLUMN (Pt, pt, float );
9191DECLARE_SOA_COLUMN (Eta, eta, float );
9292DECLARE_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 );
9595DECLARE_SOA_COLUMN (MatchType, matchType, int8_t );
9696DECLARE_SOA_COLUMN (MatchScore, matchScore, float );
9797DECLARE_SOA_COLUMN (MatchRanking, matchRanking, int32_t );
9898DECLARE_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
112112namespace o2 ::aod
@@ -121,7 +121,7 @@ DECLARE_SOA_TABLE(QaMatchingEvents, "AOD", "QAMEVT",
121121
122122namespace 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
127127namespace 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 );
144144DECLARE_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
158158using MyEvents = soa::Join<aod::Collisions, aod::EvSels>;
0 commit comments