|
| 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 | +/// \file SelectionStudyTables |
| 13 | +/// \brief tables meant to do event selection studies for O-O / light systems |
| 14 | +/// |
| 15 | +/// \author ALICE |
| 16 | + |
| 17 | +#include "Framework/ASoA.h" |
| 18 | +#include "Framework/AnalysisDataModel.h" |
| 19 | + |
| 20 | +#include <vector> |
| 21 | + |
| 22 | +#ifndef COMMON_DATAMODEL_SELECTIONSTUDYTABLES_H_ |
| 23 | +#define COMMON_DATAMODEL_SELECTIONSTUDYTABLES_H_ |
| 24 | + |
| 25 | +namespace o2::aod |
| 26 | +{ |
| 27 | +namespace selectionstudy |
| 28 | +{ |
| 29 | +DECLARE_SOA_COLUMN(PtPions, ptPions, std::vector<float>); |
| 30 | +DECLARE_SOA_COLUMN(PtKaons, ptKaons, std::vector<float>); |
| 31 | +DECLARE_SOA_COLUMN(PtProtons, ptProtons, std::vector<float>); |
| 32 | +DECLARE_SOA_COLUMN(PtK0s, ptPK0s, std::vector<float>); |
| 33 | +DECLARE_SOA_COLUMN(PtLambdas, ptLambdas, std::vector<float>); |
| 34 | +DECLARE_SOA_COLUMN(PtXis, ptXis, std::vector<float>); |
| 35 | +DECLARE_SOA_COLUMN(PtOmegas, ptOmegas, std::vector<float>); |
| 36 | +DECLARE_SOA_COLUMN(PtPhis, ptPhis, std::vector<float>); |
| 37 | +DECLARE_SOA_COLUMN(PtKStars, ptKStars, std::vector<float>); |
| 38 | +DECLARE_SOA_COLUMN(PtDs, ptDs, std::vector<float>); |
| 39 | +DECLARE_SOA_COLUMN(PtLambdaCs, ptLambdaCs, std::vector<float>); |
| 40 | +DECLARE_SOA_COLUMN(PtJPsis, ptJPsis, std::vector<float>); |
| 41 | +} // namespace selectionstudy |
| 42 | + |
| 43 | +DECLARE_SOA_TABLE(PIDPts, "AOD", "PIDPTS", o2::soa::Index<>, |
| 44 | + o2::aod::selectionstudy::PtPions, |
| 45 | + o2::aod::selectionstudy::PtKaons, |
| 46 | + o2::aod::selectionstudy::PtProtons, |
| 47 | + o2::aod::selectionstudy::PtK0s, |
| 48 | + o2::aod::selectionstudy::PtLambdas, |
| 49 | + o2::aod::selectionstudy::PtXis, |
| 50 | + o2::aod::selectionstudy::PtOmegas, |
| 51 | + o2::aod::selectionstudy::PtPhis, |
| 52 | + o2::aod::selectionstudy::PtKStars, |
| 53 | + o2::aod::selectionstudy::PtDs, |
| 54 | + o2::aod::selectionstudy::PtLambdaCs, |
| 55 | + o2::aod::selectionstudy::PtJPsis); |
| 56 | +} // namespace o2::aod |
| 57 | +#endif // COMMON_DATAMODEL_SELECTIONSTUDYTABLES_H_ |
0 commit comments