|
9 | 9 | // granted to it by virtue of its status as an Intergovernmental Organization |
10 | 10 | // or submit itself to any jurisdiction. |
11 | 11 |
|
12 | | -#include "McCentrality.h" // Placeholder |
| 12 | +/// |
| 13 | +/// \file McCentrality.h |
| 14 | +/// \author Nicolò Jacazio nicolo.jacazio@cern.ch |
| 15 | +/// \author Francesca Ercolessi francesca.ercolessi@cern.ch |
| 16 | +/// \since 2024-06-05 |
| 17 | +/// \brief Set of tables for the MC centrality |
| 18 | +/// |
| 19 | + |
| 20 | +#ifndef PWGLF_DATAMODEL_MCCENTRALITY_H_ |
| 21 | +#define PWGLF_DATAMODEL_MCCENTRALITY_H_ |
| 22 | + |
| 23 | +// O2 includes |
| 24 | +#include "Common/DataModel/Centrality.h" |
| 25 | + |
| 26 | +#include "Framework/ASoA.h" |
| 27 | +#include "Framework/AnalysisDataModel.h" |
| 28 | +#include "Framework/Logger.h" |
| 29 | + |
| 30 | +namespace o2::aod |
| 31 | +{ |
| 32 | +// DECLARE_SOA_TABLE(CentFV0As, "AOD", "CENTFV0A", cent::CentFV0A); //! Run3 FV0A estimated centrality table |
| 33 | +// DECLARE_SOA_TABLE(CentFT0Ms, "AOD", "CENTFT0M", cent::CentFT0M); //! Run3 FT0M estimated centrality table |
| 34 | +// DECLARE_SOA_TABLE(CentFT0As, "AOD", "CENTFT0A", cent::CentFT0A); //! Run3 FT0A estimated centrality table |
| 35 | +// DECLARE_SOA_TABLE(CentFT0Cs, "AOD", "CENTFT0C", cent::CentFT0C); //! Run3 FT0C estimated centrality table |
| 36 | +// DECLARE_SOA_TABLE(CentFDDMs, "AOD", "CENTFDDM", cent::CentFDDM); //! Run3 FDDM estimated centrality table |
| 37 | +// DECLARE_SOA_TABLE(CentNTPVs, "AOD", "CENTNTPV", cent::CentNTPV); //! Run3 NTPV estimated centrality table |
| 38 | + |
| 39 | +DECLARE_SOA_TABLE(McCentFV0As, "AOD", "MCCENTFV0A", o2::soa::Marker<1>, cent::CentFV0A); |
| 40 | +DECLARE_SOA_TABLE(McCentFT0Ms, "AOD", "MCCENTFT0M", o2::soa::Marker<2>, cent::CentFT0M); |
| 41 | +DECLARE_SOA_TABLE(McCentFT0As, "AOD", "MCCENTFT0A", o2::soa::Marker<3>, cent::CentFT0A); |
| 42 | +DECLARE_SOA_TABLE(McCentFT0Cs, "AOD", "MCCENTFT0C", o2::soa::Marker<4>, cent::CentFT0C); |
| 43 | +DECLARE_SOA_TABLE(McCentFDDMs, "AOD", "MCCENTFDDM", o2::soa::Marker<5>, cent::CentFDDM); |
| 44 | +DECLARE_SOA_TABLE(McCentNTPVs, "AOD", "MCCENTNTPV", o2::soa::Marker<6>, cent::CentNTPV); |
| 45 | + |
| 46 | +} // namespace o2::aod |
| 47 | + |
| 48 | +#endif // PWGLF_DATAMODEL_MCCENTRALITY_H_ |
0 commit comments