Skip to content

Commit 5fbd8af

Browse files
authored
Change the table names
1 parent fee5195 commit 5fbd8af

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

PWGCF/TwoParticleCorrelations/Tasks/longrangecorrDerived.cxx

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -117,35 +117,35 @@ struct LongrangecorrDerived {
117117
OutputObj<CorrelationContainer> same{"sameEvent"};
118118
OutputObj<CorrelationContainer> mixed{"mixedEvent"};
119119

120-
using CollsTable = aod::CollLRTables;
121-
using TrksTable = aod::TrkLRTables;
122-
using MftTrksTable = aod::MftTrkLRTables;
123-
using Ft0aTrksTable = aod::Ft0aLRTables;
124-
using Ft0cTrksTable = aod::Ft0cLRTables;
125-
using MftbestTrksTable = aod::MftBestTrkLRTables;
126-
using V0TrksTable = aod::V0TrkLRTables;
127-
128-
using UpcCollsTable = soa::Join<aod::UpcCollLRTables, aod::UpcSgCollLRTables, aod::ZdcLRTables>;
129-
using TrksUpcTable = aod::TrkLRUpcTables;
130-
using MftTrksUpcTable = aod::MftTrkLRUpcTables;
131-
using Ft0aTrksUpcTable = aod::Ft0aLRUpcTables;
132-
using Ft0cTrksUpcTable = aod::Ft0cLRUpcTables;
133-
using MftbestTrksUpcTable = aod::MftBestTrkLRUpcTables;
134-
using V0TrksUpcTable = aod::V0TrkLRUpcTables;
135-
136-
Preslice<TrksTable> perColTpc = aod::lrcorrtrktable::collLRTableId;
137-
Preslice<MftTrksTable> perColMft = aod::lrcorrtrktable::collLRTableId;
138-
Preslice<MftbestTrksTable> perColMftbest = aod::lrcorrtrktable::collLRTableId;
139-
Preslice<Ft0aTrksTable> perColFt0a = aod::lrcorrtrktable::collLRTableId;
140-
Preslice<Ft0cTrksTable> perColFt0c = aod::lrcorrtrktable::collLRTableId;
141-
Preslice<V0TrksTable> perColV0 = aod::lrcorrtrktable::collLRTableId;
142-
143-
Preslice<TrksUpcTable> perUpcColTpc = aod::lrcorrtrktable::upcCollLRTableId;
144-
Preslice<MftTrksUpcTable> perUpcColMft = aod::lrcorrtrktable::upcCollLRTableId;
145-
Preslice<MftbestTrksUpcTable> perUpcColMftbest = aod::lrcorrtrktable::upcCollLRTableId;
146-
Preslice<Ft0aTrksUpcTable> perUpcColFt0a = aod::lrcorrtrktable::upcCollLRTableId;
147-
Preslice<Ft0cTrksUpcTable> perUpcColFt0c = aod::lrcorrtrktable::upcCollLRTableId;
148-
Preslice<V0TrksUpcTable> perUpcColV0 = aod::lrcorrtrktable::upcCollLRTableId;
120+
using CollsTable = aod::LRCollisions;
121+
using TrksTable = aod::LRMidTracks;
122+
using MftTrksTable = aod::LRMftTracks;
123+
using Ft0aTrksTable = aod::LRFt0aTracks;
124+
using Ft0cTrksTable = aod::LRFt0cTracks;
125+
using MftbestTrksTable = aod::LRMftBestTracks;
126+
using V0TrksTable = aod::LRV0Tracks;
127+
128+
using UpcCollsTable = soa::Join<aod::UpcLRCollisions, aod::UpcSgLRCollisions, aod::LRZdcs>;
129+
using TrksUpcTable = aod::UpcLRMidTracks;
130+
using MftTrksUpcTable = aod::UpcLRMftTracks;
131+
using Ft0aTrksUpcTable = aod::UpcLRFt0aTracks;
132+
using Ft0cTrksUpcTable = aod::UpcLRFt0cTracks;
133+
using MftbestTrksUpcTable = aod::UpcLRMftBestTracks;
134+
using V0TrksUpcTable = aod::UpcLRV0Tracks;
135+
136+
Preslice<TrksTable> perColTpc = aod::lrcorrtrktable::lrCollisionId;
137+
Preslice<MftTrksTable> perColMft = aod::lrcorrtrktable::lrCollisionId;
138+
Preslice<MftbestTrksTable> perColMftbest = aod::lrcorrtrktable::lrCollisionId;
139+
Preslice<Ft0aTrksTable> perColFt0a = aod::lrcorrtrktable::lrCollisionId;
140+
Preslice<Ft0cTrksTable> perColFt0c = aod::lrcorrtrktable::lrCollisionId;
141+
Preslice<V0TrksTable> perColV0 = aod::lrcorrtrktable::lrCollisionId;
142+
143+
Preslice<TrksUpcTable> perUpcColTpc = aod::lrcorrtrktable::upcLRCollisionId;
144+
Preslice<MftTrksUpcTable> perUpcColMft = aod::lrcorrtrktable::upcLRCollisionId;
145+
Preslice<MftbestTrksUpcTable> perUpcColMftbest = aod::lrcorrtrktable::upcLRCollisionId;
146+
Preslice<Ft0aTrksUpcTable> perUpcColFt0a = aod::lrcorrtrktable::upcLRCollisionId;
147+
Preslice<Ft0cTrksUpcTable> perUpcColFt0c = aod::lrcorrtrktable::upcLRCollisionId;
148+
Preslice<V0TrksUpcTable> perUpcColV0 = aod::lrcorrtrktable::upcLRCollisionId;
149149

150150
void init(InitContext const&)
151151
{

0 commit comments

Comments
 (0)