@@ -103,20 +103,20 @@ struct LongrangecorrDerived {
103103 OutputObj<CorrelationContainer> same{" sameEvent" };
104104 OutputObj<CorrelationContainer> mixed{" mixedEvent" };
105105
106- using CollTable = aod::CollLRTables;
107- using TrkTable = aod::TrkLRTables;
108- using MftTrkTable = aod::MftTrkLRTables;
109- using Ft0aTrkTable = aod::Ft0aLRTables;
110- using Ft0cTrkTable = aod::Ft0cLRTables;
111- using MftbestTrkTable = aod::MftBestTrkLRTables;
112- using V0TrkTable = aod::V0TrkLRTables;
113-
114- Preslice<TrkTable > perColTpc = aod::lrcorrtrktable::collLRTableId;
115- Preslice<MftTrkTable > perColMft = aod::lrcorrtrktable::collLRTableId;
116- Preslice<MftbestTrkTable > perColMftbest = aod::lrcorrtrktable::collLRTableId;
117- Preslice<Ft0aTrkTable > perColFt0a = aod::lrcorrtrktable::collLRTableId;
118- Preslice<Ft0cTrkTable > perColFt0c = aod::lrcorrtrktable::collLRTableId;
119- Preslice<V0TrkTable > perColV0 = aod::lrcorrtrktable::collLRTableId;
106+ using CollsTable = aod::CollLRTables;
107+ using TrksTable = aod::TrkLRTables;
108+ using MftTrksTable = aod::MftTrkLRTables;
109+ using Ft0aTrksTable = aod::Ft0aLRTables;
110+ using Ft0cTrksTable = aod::Ft0cLRTables;
111+ using MftbestTrksTable = aod::MftBestTrkLRTables;
112+ using V0TrksTable = aod::V0TrkLRTables;
113+
114+ Preslice<TrksTable > perColTpc = aod::lrcorrtrktable::collLRTableId;
115+ Preslice<MftTrksTable > perColMft = aod::lrcorrtrktable::collLRTableId;
116+ Preslice<MftbestTrksTable > perColMftbest = aod::lrcorrtrktable::collLRTableId;
117+ Preslice<Ft0aTrksTable > perColFt0a = aod::lrcorrtrktable::collLRTableId;
118+ Preslice<Ft0cTrksTable > perColFt0c = aod::lrcorrtrktable::collLRTableId;
119+ Preslice<V0TrksTable > perColV0 = aod::lrcorrtrktable::collLRTableId;
120120
121121 void init (InitContext const &)
122122 {
@@ -252,94 +252,94 @@ struct LongrangecorrDerived {
252252 } // pair loop
253253 } // process mixed
254254
255- void processTpcft0aSE (CollTable ::iterator const & col, TrkTable const & tracks, Ft0aTrkTable const & ft0as)
255+ void processTpcft0aSE (CollsTable ::iterator const & col, TrksTable const & tracks, Ft0aTrksTable const & ft0as)
256256 {
257257 processSame (col, tracks, ft0as);
258258 }
259259
260- void processTpcft0cSE (CollTable ::iterator const & col, TrkTable const & tracks, Ft0cTrkTable const & ft0cs)
260+ void processTpcft0cSE (CollsTable ::iterator const & col, TrksTable const & tracks, Ft0cTrksTable const & ft0cs)
261261 {
262262 processSame (col, tracks, ft0cs);
263263 }
264264
265- void processTpcmftSE (CollTable ::iterator const & col, TrkTable const & tracks, MftTrkTable const & mfts)
265+ void processTpcmftSE (CollsTable ::iterator const & col, TrksTable const & tracks, MftTrksTable const & mfts)
266266 {
267267 processSame (col, tracks, mfts);
268268 }
269269
270- void processMftft0aSE (CollTable ::iterator const & col, MftTrkTable const & mfts, Ft0aTrkTable const & ft0as)
270+ void processMftft0aSE (CollsTable ::iterator const & col, MftTrksTable const & mfts, Ft0aTrksTable const & ft0as)
271271 {
272272 processSame (col, mfts, ft0as);
273273 }
274274
275- void processV0ft0aSE (CollTable ::iterator const & col, V0TrkTable const & tracks, Ft0aTrkTable const & ft0as)
275+ void processV0ft0aSE (CollsTable ::iterator const & col, V0TrksTable const & tracks, Ft0aTrksTable const & ft0as)
276276 {
277277 processSame (col, tracks, ft0as);
278278 }
279279
280- void processV0mftSE (CollTable ::iterator const & col, V0TrkTable const & tracks, MftTrkTable const & mfts)
280+ void processV0mftSE (CollsTable ::iterator const & col, V0TrksTable const & tracks, MftTrksTable const & mfts)
281281 {
282282 processSame (col, tracks, mfts);
283283 }
284284
285- void processTpcmftbestSE (CollTable ::iterator const & col, TrkTable const & tracks, MftbestTrkTable const & mfts)
285+ void processTpcmftbestSE (CollsTable ::iterator const & col, TrksTable const & tracks, MftbestTrksTable const & mfts)
286286 {
287287 processSame (col, tracks, mfts);
288288 }
289289
290- void processMftbestft0aSE (CollTable ::iterator const & col, MftbestTrkTable const & mfts, Ft0aTrkTable const & ft0as)
290+ void processMftbestft0aSE (CollsTable ::iterator const & col, MftbestTrksTable const & mfts, Ft0aTrksTable const & ft0as)
291291 {
292292 processSame (col, mfts, ft0as);
293293 }
294294
295- void processV0mftbestSE (CollTable ::iterator const & col, V0TrkTable const & tracks, MftbestTrkTable const & mfts)
295+ void processV0mftbestSE (CollsTable ::iterator const & col, V0TrksTable const & tracks, MftbestTrksTable const & mfts)
296296 {
297297 processSame (col, tracks, mfts);
298298 }
299299
300- void processTpcft0aME (CollTable const & col, TrkTable const & tracks, Ft0aTrkTable const & ft0as)
300+ void processTpcft0aME (CollsTable const & cols, TrksTable const & tracks, Ft0aTrksTable const & ft0as)
301301 {
302- processMixed (col , tracks, ft0as);
302+ processMixed (cols , tracks, ft0as);
303303 }
304304
305- void processTpcft0cME (CollTable const & col, TrkTable const & tracks, Ft0cTrkTable const & ft0cs)
305+ void processTpcft0cME (CollsTable const & cols, TrksTable const & tracks, Ft0cTrksTable const & ft0cs)
306306 {
307- processMixed (col , tracks, ft0cs);
307+ processMixed (cols , tracks, ft0cs);
308308 }
309309
310- void processTpcmftME (CollTable const & col, TrkTable const & tracks, MftTrkTable const & mfts)
310+ void processTpcmftME (CollsTable const & cols, TrksTable const & tracks, MftTrksTable const & mfts)
311311 {
312- processMixed (col , tracks, mfts);
312+ processMixed (cols , tracks, mfts);
313313 }
314314
315- void processMftft0aME (CollTable const & col, MftTrkTable const & mfts, Ft0aTrkTable const & ft0as)
315+ void processMftft0aME (CollsTable const & cols, MftTrksTable const & mfts, Ft0aTrksTable const & ft0as)
316316 {
317- processMixed (col , mfts, ft0as);
317+ processMixed (cols , mfts, ft0as);
318318 }
319319
320- void processV0ft0aME (CollTable const & col, V0TrkTable const & tracks, Ft0aTrkTable const & ft0as)
320+ void processV0ft0aME (CollsTable const & cols, V0TrksTable const & tracks, Ft0aTrksTable const & ft0as)
321321 {
322- processMixed (col , tracks, ft0as);
322+ processMixed (cols , tracks, ft0as);
323323 }
324324
325- void processV0mftME (CollTable const & col, V0TrkTable const & tracks, MftTrkTable const & mfts)
325+ void processV0mftME (CollsTable const & cols, V0TrksTable const & tracks, MftTrksTable const & mfts)
326326 {
327- processMixed (col , tracks, mfts);
327+ processMixed (cols , tracks, mfts);
328328 }
329329
330- void processTpcmftbestME (CollTable const & col, TrkTable const & tracks, MftbestTrkTable const & mfts)
330+ void processTpcmftbestME (CollsTable const & cols, TrksTable const & tracks, MftbestTrksTable const & mfts)
331331 {
332- processMixed (col , tracks, mfts);
332+ processMixed (cols , tracks, mfts);
333333 }
334334
335- void processMftbestft0aME (CollTable const & col, MftbestTrkTable const & mfts, Ft0aTrkTable const & ft0as)
335+ void processMftbestft0aME (CollsTable const & cols, MftbestTrksTable const & mfts, Ft0aTrksTable const & ft0as)
336336 {
337- processMixed (col , mfts, ft0as);
337+ processMixed (cols , mfts, ft0as);
338338 }
339339
340- void processV0mftbestME (CollTable const & col, V0TrkTable const & tracks, MftbestTrkTable const & mfts)
340+ void processV0mftbestME (CollsTable const & cols, V0TrksTable const & tracks, MftbestTrksTable const & mfts)
341341 {
342- processMixed (col , tracks, mfts);
342+ processMixed (cols , tracks, mfts);
343343 }
344344
345345 PROCESS_SWITCH (LongrangecorrDerived, processTpcft0aSE, " same event TPC vs FT0A" , false );
0 commit comments