@@ -33,20 +33,20 @@ DECLARE_SOA_DYNAMIC_COLUMN(Sum, sum, [](int x, int y) { return x + y; });
3333DECLARE_SOA_EXPRESSION_COLUMN (ESum, esum, int , test::x + test::y);
3434} // namespace test
3535
36- DECLARE_SOA_TABLE (Points, " TST " , " POINTS" , test::X, test::Y);
37- DECLARE_SOA_TABLE (Points3Ds, " TST " , " PTS3D" , o2::soa::Index<>, test::X, test::Y, test::Z);
36+ DECLARE_SOA_TABLE (Points, " TEST " , " POINTS" , test::X, test::Y);
37+ DECLARE_SOA_TABLE (Points3Ds, " TEST " , " PTS3D" , o2::soa::Index<>, test::X, test::Y, test::Z);
3838
39- DECLARE_SOA_TABLE (Points3DsMk1, " TST " , " PTS3D_1" , o2::soa::Index<>, o2::soa::Marker<1 >, test::X, test::Y, test::Z);
40- DECLARE_SOA_TABLE (Points3DsMk2, " TST " , " PTS3D_2" , o2::soa::Index<>, o2::soa::Marker<2 >, test::X, test::Y, test::Z);
41- DECLARE_SOA_TABLE (Points3DsMk3, " TST " , " PTS3D_3" , o2::soa::Index<>, o2::soa::Marker<3 >, test::X, test::Y, test::Z);
39+ DECLARE_SOA_TABLE (Points3DsMk1, " TEST " , " PTS3D_1" , o2::soa::Index<>, o2::soa::Marker<1 >, test::X, test::Y, test::Z);
40+ DECLARE_SOA_TABLE (Points3DsMk2, " TEST " , " PTS3D_2" , o2::soa::Index<>, o2::soa::Marker<2 >, test::X, test::Y, test::Z);
41+ DECLARE_SOA_TABLE (Points3DsMk3, " TEST " , " PTS3D_3" , o2::soa::Index<>, o2::soa::Marker<3 >, test::X, test::Y, test::Z);
4242
4343namespace test
4444{
4545DECLARE_SOA_COLUMN_FULL (SomeBool, someBool, bool , " someBool" );
4646DECLARE_SOA_COLUMN_FULL (Color, color, int32_t , " color" );
4747} // namespace test
4848
49- DECLARE_SOA_TABLE (Infos, " TST " , " INFOS" , test::Color, test::SomeBool);
49+ DECLARE_SOA_TABLE (Infos, " TEST " , " INFOS" , test::Color, test::SomeBool);
5050
5151namespace test
5252{
@@ -57,16 +57,16 @@ DECLARE_SOA_INDEX_COLUMN_FULL(PointB, pointB, int, Points, "_B");
5757DECLARE_SOA_COLUMN_FULL (Thickness, thickness, int , " thickness" );
5858} // namespace test
5959
60- DECLARE_SOA_TABLE (Segments, " TST " , " SEGMENTS" , test::N, test::PointAId, test::PointBId, test::InfoId);
61- DECLARE_SOA_TABLE (SegmentsExtras, " TST " , " SEGMENTSEX" , test::Thickness);
60+ DECLARE_SOA_TABLE (Segments, " TEST " , " SEGMENTS" , test::N, test::PointAId, test::PointBId, test::InfoId);
61+ DECLARE_SOA_TABLE (SegmentsExtras, " TEST " , " SEGMENTSEX" , test::Thickness);
6262
6363namespace test
6464{
6565DECLARE_SOA_COLUMN (L1, l1, std::vector<float >);
6666DECLARE_SOA_COLUMN (L2, l2, std::vector<int >);
6767} // namespace test
6868
69- DECLARE_SOA_TABLE (Lists, " TST " , " LISTS" , o2::soa::Index<>, test::L1, test::L2);
69+ DECLARE_SOA_TABLE (Lists, " TEST " , " LISTS" , o2::soa::Index<>, test::L1, test::L2);
7070} // namespace o2::aod
7171
7272TEST_CASE (" TestMarkers" )
@@ -712,16 +712,16 @@ TEST_CASE("TestEmptyTables")
712712
713713namespace o2 ::aod
714714{
715- DECLARE_SOA_TABLE (Origints, " TST " , " ORIG" , o2::soa::Index<>, test::X, test::SomeBool);
715+ DECLARE_SOA_TABLE (Origints, " TEST " , " ORIG" , o2::soa::Index<>, test::X, test::SomeBool);
716716namespace test
717717{
718718DECLARE_SOA_INDEX_COLUMN (Origint, origint);
719719DECLARE_SOA_INDEX_COLUMN_FULL (AltOrigint, altOrigint, int , Origints, " _alt" );
720720DECLARE_SOA_ARRAY_INDEX_COLUMN (Origint, origints);
721721} // namespace test
722- DECLARE_SOA_TABLE (References, " TST " , " REFS" , o2::soa::Index<>, test::OrigintId);
723- DECLARE_SOA_TABLE (OtherReferences, " TST " , " OREFS" , o2::soa::Index<>, test::AltOrigintId);
724- DECLARE_SOA_TABLE (ManyReferences, " TST " , " MREFS" , o2::soa::Index<>, test::OrigintIds);
722+ DECLARE_SOA_TABLE (References, " TEST " , " REFS" , o2::soa::Index<>, test::OrigintId);
723+ DECLARE_SOA_TABLE (OtherReferences, " TEST " , " OREFS" , o2::soa::Index<>, test::AltOrigintId);
724+ DECLARE_SOA_TABLE (ManyReferences, " TEST " , " MREFS" , o2::soa::Index<>, test::OrigintIds);
725725} // namespace o2::aod
726726TEST_CASE (" TestIndexToFiltered" )
727727{
@@ -786,9 +786,9 @@ DECLARE_SOA_SELF_SLICE_INDEX_COLUMN(PointSeq, pointSeq);
786786DECLARE_SOA_SELF_ARRAY_INDEX_COLUMN (PointSet, pointSet);
787787} // namespace test
788788
789- DECLARE_SOA_TABLE (PointsRef, " TST " , " PTSREF" , test::Points3DIdSlice, test::Points3DIds);
790- DECLARE_SOA_TABLE (PointsRefF, " TST " , " PTSREFF" , test::SinglePointId, test::Points3DIdSlice, test::Points3DIds);
791- DECLARE_SOA_TABLE (PointsSelfIndex, " TST " , " PTSSLF" , o2::soa::Index<>, test::X, test::Y, test::Z, test::OtherPointId,
789+ DECLARE_SOA_TABLE (PointsRef, " TEST " , " PTSREF" , test::Points3DIdSlice, test::Points3DIds);
790+ DECLARE_SOA_TABLE (PointsRefF, " TEST " , " PTSREFF" , test::SinglePointId, test::Points3DIdSlice, test::Points3DIds);
791+ DECLARE_SOA_TABLE (PointsSelfIndex, " TEST " , " PTSSLF" , o2::soa::Index<>, test::X, test::Y, test::Z, test::OtherPointId,
792792 test::PointSeqIdSlice, test::PointSetIds);
793793} // namespace o2::aod
794794
@@ -1099,7 +1099,7 @@ DECLARE_SOA_COLUMN(SmallIntArray, smallIntArray, int8_t[32]);
10991099DECLARE_SOA_BITMAP_COLUMN (BoolArray, boolArray, 32 );
11001100} // namespace test
11011101
1102- DECLARE_SOA_TABLE (BILists, " TST " , " BILISTS" , o2::soa::Index<>, test::SmallIntArray, test::BoolArray);
1102+ DECLARE_SOA_TABLE (BILists, " TEST " , " BILISTS" , o2::soa::Index<>, test::SmallIntArray, test::BoolArray);
11031103} // namespace o2::aod
11041104
11051105TEST_CASE (" TestArrayColumns" )
0 commit comments