1515#define PWGCF_DATAMODEL_SPTABLEZDC_H_
1616
1717#include < cmath>
18+ #include < vector>
1819
1920#include " Common/DataModel/PIDResponse.h"
2021#include " Common/Core/RecoDecay.h"
@@ -26,32 +27,28 @@ namespace o2::aod
2627namespace sptablezdc
2728{
2829DECLARE_SOA_COLUMN (Runnumber, runnumber, int );
29- DECLARE_SOA_COLUMN (Cent, cent, float );
30- DECLARE_SOA_COLUMN (Vx, vx, float );
31- DECLARE_SOA_COLUMN (Vy, vy, float );
32- DECLARE_SOA_COLUMN (Vz, vz, float );
30+ DECLARE_SOA_COLUMN (Cents, cents, std::vector<float >);
31+ DECLARE_SOA_COLUMN (Vertex, vertex, std::vector<float >);
32+ DECLARE_SOA_COLUMN (Timestamp, timestamp, int64_t );
3333DECLARE_SOA_COLUMN (QXA, qxA, float );
3434DECLARE_SOA_COLUMN (QYA, qyA, float );
3535DECLARE_SOA_COLUMN (QXC, qxC, float );
3636DECLARE_SOA_COLUMN (QYC, qyC, float );
3737DECLARE_SOA_COLUMN (IsSelected, isSelected, bool );
38- DECLARE_SOA_COLUMN (Iteration, iteration, int );
39- DECLARE_SOA_COLUMN (Step, step, int );
38+ DECLARE_SOA_COLUMN (EventSelectionFlags, eventSelectionFlags, uint16_t );
4039
4140} // namespace sptablezdc
4241
4342DECLARE_SOA_TABLE (SPTableZDC, " AOD" , " SPZDC" ,
4443 sptablezdc::Runnumber,
45- sptablezdc::Cent,
46- sptablezdc::Vx,
47- sptablezdc::Vy,
48- sptablezdc::Vz,
44+ sptablezdc::Cents,
45+ sptablezdc::Vertex,
46+ sptablezdc::Timestamp,
4947 sptablezdc::QXA,
5048 sptablezdc::QYA,
5149 sptablezdc::QXC,
5250 sptablezdc::QYC,
5351 sptablezdc::IsSelected,
54- sptablezdc::Iteration,
55- sptablezdc::Step);
52+ sptablezdc::EventSelectionFlags);
5653} // namespace o2::aod
5754#endif // PWGCF_DATAMODEL_SPTABLEZDC_H_
0 commit comments