Skip to content

Commit 8d06967

Browse files
committed
Add timestamp and uint to hold event selections and multiple centrality estimators
1 parent 4a92058 commit 8d06967

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

PWGCF/DataModel/SPTableZDC.h

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
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
2627
namespace sptablezdc
2728
{
2829
DECLARE_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);
3333
DECLARE_SOA_COLUMN(QXA, qxA, float);
3434
DECLARE_SOA_COLUMN(QYA, qyA, float);
3535
DECLARE_SOA_COLUMN(QXC, qxC, float);
3636
DECLARE_SOA_COLUMN(QYC, qyC, float);
3737
DECLARE_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

4342
DECLARE_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

Comments
 (0)