|
| 1 | +// Copyright 2019-2020 CERN and copyright holders of ALICE O2. |
| 2 | +// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders. |
| 3 | +// All rights not expressly granted are reserved. |
| 4 | +// |
| 5 | +// This software is distributed under the terms of the GNU General Public |
| 6 | +// License v3 (GPL Version 3), copied verbatim in the file "COPYING". |
| 7 | +// |
| 8 | +// In applying this license CERN does not waive the privileges and immunities |
| 9 | +// granted to it by virtue of its status as an Intergovernmental Organization |
| 10 | +// or submit itself to any jurisdiction. |
| 11 | + |
| 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 "Framework/ASoA.h" |
| 25 | +#include "Framework/AnalysisDataModel.h" |
| 26 | +#include "Common/DataModel/Centrality.h" |
| 27 | +#include "Framework/Logger.h" |
| 28 | + |
| 29 | +namespace o2::aod |
| 30 | +{ |
| 31 | +// DECLARE_SOA_TABLE(CentFV0As, "AOD", "CENTFV0A", cent::CentFV0A); //! Run3 FV0A estimated centrality table |
| 32 | +// DECLARE_SOA_TABLE(CentFT0Ms, "AOD", "CENTFT0M", cent::CentFT0M); //! Run3 FT0M estimated centrality table |
| 33 | +// DECLARE_SOA_TABLE(CentFT0As, "AOD", "CENTFT0A", cent::CentFT0A); //! Run3 FT0A estimated centrality table |
| 34 | +// DECLARE_SOA_TABLE(CentFT0Cs, "AOD", "CENTFT0C", cent::CentFT0C); //! Run3 FT0C estimated centrality table |
| 35 | +// DECLARE_SOA_TABLE(CentFDDMs, "AOD", "CENTFDDM", cent::CentFDDM); //! Run3 FDDM estimated centrality table |
| 36 | +// DECLARE_SOA_TABLE(CentNTPVs, "AOD", "CENTNTPV", cent::CentNTPV); //! Run3 NTPV estimated centrality table |
| 37 | + |
| 38 | +DECLARE_SOA_TABLE(McCentFV0As, "AOD", "MCCENTFV0A", o2::soa::Marker<1>, cent::CentFV0A); |
| 39 | +DECLARE_SOA_TABLE(McCentFT0Ms, "AOD", "MCCENTFT0M", o2::soa::Marker<2>, cent::CentFT0M); |
| 40 | +DECLARE_SOA_TABLE(McCentFT0As, "AOD", "MCCENTFT0A", o2::soa::Marker<3>, cent::CentFT0A); |
| 41 | +DECLARE_SOA_TABLE(McCentFT0Cs, "AOD", "MCCENTFT0C", o2::soa::Marker<4>, cent::CentFT0C); |
| 42 | +DECLARE_SOA_TABLE(McCentFDDMs, "AOD", "MCCENTFDDM", o2::soa::Marker<5>, cent::CentFDDM); |
| 43 | +DECLARE_SOA_TABLE(McCentNTPVs, "AOD", "MCCENTNTPV", o2::soa::Marker<6>, cent::CentNTPV); |
| 44 | + |
| 45 | +} // namespace o2::aod |
| 46 | + |
| 47 | +#endif // PWGLF_DATAMODEL_MCCENTRALITY_H_ |
0 commit comments