|
14 | 14 | #ifndef PWGCF_DATAMODEL_SPTABLEZDC_H_ |
15 | 15 | #define PWGCF_DATAMODEL_SPTABLEZDC_H_ |
16 | 16 |
|
17 | | -#include <cmath> |
18 | | - |
19 | | -#include "Common/DataModel/PIDResponse.h" |
20 | 17 | #include "Common/Core/RecoDecay.h" |
| 18 | +#include "Common/DataModel/PIDResponse.h" |
21 | 19 | #include "Common/DataModel/TrackSelectionTables.h" |
| 20 | + |
22 | 21 | #include "Framework/AnalysisDataModel.h" |
23 | 22 |
|
| 23 | +#include <cmath> |
| 24 | +#include <vector> |
| 25 | + |
24 | 26 | namespace o2::aod |
25 | 27 | { |
26 | 28 | namespace sptablezdc |
27 | 29 | { |
28 | 30 | 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); |
33 | | -DECLARE_SOA_COLUMN(QXA, qxA, float); |
34 | | -DECLARE_SOA_COLUMN(QYA, qyA, float); |
35 | | -DECLARE_SOA_COLUMN(QXC, qxC, float); |
36 | | -DECLARE_SOA_COLUMN(QYC, qyC, float); |
| 31 | +DECLARE_SOA_COLUMN(Cents, cents, std::vector<float>); |
| 32 | +DECLARE_SOA_COLUMN(Vertex, vertex, std::vector<float>); |
| 33 | +DECLARE_SOA_COLUMN(Timestamp, timestamp, int64_t); |
| 34 | +DECLARE_SOA_COLUMN(QxA, qxA, float); |
| 35 | +DECLARE_SOA_COLUMN(QyA, qyA, float); |
| 36 | +DECLARE_SOA_COLUMN(QxC, qxC, float); |
| 37 | +DECLARE_SOA_COLUMN(QyC, qyC, float); |
37 | 38 | DECLARE_SOA_COLUMN(IsSelected, isSelected, bool); |
38 | | -DECLARE_SOA_COLUMN(Iteration, iteration, int); |
39 | | -DECLARE_SOA_COLUMN(Step, step, int); |
| 39 | +DECLARE_SOA_COLUMN(EventSelectionFlags, eventSelectionFlags, uint16_t); |
40 | 40 |
|
41 | 41 | } // namespace sptablezdc |
42 | 42 |
|
43 | 43 | DECLARE_SOA_TABLE(SPTableZDC, "AOD", "SPZDC", |
44 | 44 | sptablezdc::Runnumber, |
45 | | - sptablezdc::Cent, |
46 | | - sptablezdc::Vx, |
47 | | - sptablezdc::Vy, |
48 | | - sptablezdc::Vz, |
49 | | - sptablezdc::QXA, |
50 | | - sptablezdc::QYA, |
51 | | - sptablezdc::QXC, |
52 | | - sptablezdc::QYC, |
| 45 | + sptablezdc::Cents, |
| 46 | + sptablezdc::Vertex, |
| 47 | + sptablezdc::Timestamp, |
| 48 | + sptablezdc::QxA, |
| 49 | + sptablezdc::QyA, |
| 50 | + sptablezdc::QxC, |
| 51 | + sptablezdc::QyC, |
53 | 52 | sptablezdc::IsSelected, |
54 | | - sptablezdc::Iteration, |
55 | | - sptablezdc::Step); |
| 53 | + sptablezdc::EventSelectionFlags); |
56 | 54 | } // namespace o2::aod |
57 | 55 | #endif // PWGCF_DATAMODEL_SPTABLEZDC_H_ |
0 commit comments