@@ -53,6 +53,29 @@ DECLARE_SOA_COLUMN(SurvivedEventSelection, survivedEventSelection, bool);
5353DECLARE_SOA_COLUMN (AbsoDecL, absoDecL, float );
5454
5555} // namespace NucleiTableNS
56+
57+ namespace NucleiPairTableNS
58+ {
59+ DECLARE_SOA_COLUMN (Pt1, pt1, float ); // first particle pt
60+ DECLARE_SOA_COLUMN (Eta1, eta1, float ); // first particle eta
61+ DECLARE_SOA_COLUMN (Phi1, phi1, float ); // first particle phi
62+ DECLARE_SOA_COLUMN (TPCInnerParam1, tpcInnerParam1, float ); // first particle TPC inner param
63+ DECLARE_SOA_COLUMN (TPCsignal1, tpcSignal1, float ); // first particle TPC signal
64+ DECLARE_SOA_COLUMN (DCAxy1, dcaxy1, float ); // first particle DCA xy
65+ DECLARE_SOA_COLUMN (DCAz1, dcaz1, float ); // first particle DCA z
66+ DECLARE_SOA_COLUMN (ClusterSizesITS1, clusterSizesITS1, uint32_t ); // first particle ITS cluster sizes
67+ DECLARE_SOA_COLUMN (Flags1, flags1, uint16_t ); // first particle flags
68+ DECLARE_SOA_COLUMN (Pt2, pt2, float ); // second particle pt
69+ DECLARE_SOA_COLUMN (Eta2, eta2, float ); // second particle eta
70+ DECLARE_SOA_COLUMN (Phi2, phi2, float ); // second particle phi
71+ DECLARE_SOA_COLUMN (TPCInnerParam2, tpcInnerParam2, float ); // second particle TPC inner param
72+ DECLARE_SOA_COLUMN (TPCsignal2, tpcSignal2, float ); // second particle TPC signal
73+ DECLARE_SOA_COLUMN (DCAxy2, dcaxy2, float ); // second particle DCA xy
74+ DECLARE_SOA_COLUMN (DCAz2, dcaz2, float ); // second particle DCA z
75+ DECLARE_SOA_COLUMN (ClusterSizesITS2, clusterSizesITS2, uint32_t ); // second particle ITS cluster sizes
76+ DECLARE_SOA_COLUMN (Flags2, flags2, uint16_t ); // second particle flags
77+ } // namespace NucleiPairTableNS
78+
5679namespace NucleiFlowTableNS
5780{
5881DECLARE_SOA_COLUMN (CentFV0A, centFV0A, float ); // centrality with FT0A estimator
@@ -136,6 +159,26 @@ DECLARE_SOA_TABLE(NucleiTableMC, "AOD", "NUCLEITABLEMC",
136159 NucleiTableNS::SurvivedEventSelection,
137160 NucleiTableNS::AbsoDecL);
138161
162+ DECLARE_SOA_TABLE (NucleiPairTable, " AOD" , " NUCLEIPAIRTABLE" ,
163+ NucleiPairTableNS::Pt1,
164+ NucleiPairTableNS::Eta1,
165+ NucleiPairTableNS::Phi1,
166+ NucleiPairTableNS::TPCInnerParam1,
167+ NucleiPairTableNS::TPCsignal1,
168+ NucleiPairTableNS::DCAxy1,
169+ NucleiPairTableNS::DCAz1,
170+ NucleiPairTableNS::ClusterSizesITS1,
171+ NucleiPairTableNS::Flags1,
172+ NucleiPairTableNS::Pt2,
173+ NucleiPairTableNS::Eta2,
174+ NucleiPairTableNS::Phi2,
175+ NucleiPairTableNS::TPCInnerParam2,
176+ NucleiPairTableNS::TPCsignal2,
177+ NucleiPairTableNS::DCAxy2,
178+ NucleiPairTableNS::DCAz2,
179+ NucleiPairTableNS::ClusterSizesITS2,
180+ NucleiPairTableNS::Flags2);
181+
139182} // namespace o2::aod
140183
141184#endif // PWGLF_DATAMODEL_LFSLIMNUCLEITABLES_H_
0 commit comments