|
| 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 collisionExtra.h |
| 14 | +/// \author David Dobrigkeit Chinellato |
| 15 | +/// \since 11/05/2023 |
| 16 | +/// \brief Table for ALICE 3 collision-related info |
| 17 | +/// |
| 18 | + |
| 19 | +#ifndef ALICE3_DATAMODEL_PREFILTERDILEPTON_H_ |
| 20 | +#define ALICE3_DATAMODEL_PREFILTERDILEPTON_H_ |
| 21 | + |
| 22 | +// O2 includes |
| 23 | +#include <Framework/AnalysisDataModel.h> |
| 24 | + |
| 25 | +namespace o2::aod |
| 26 | +{ |
| 27 | + |
| 28 | +namespace dileptonanalysisflags |
| 29 | +{ |
| 30 | +// DECLARE_SOA_COLUMN(IsMCEventSelected, isMCEventSelected, int); |
| 31 | +DECLARE_SOA_COLUMN(IsEventCentSelected, isEventCentSelected, int); |
| 32 | +DECLARE_SOA_COLUMN(IsTrackPrefilter, isTrackPrefilter, int); |
| 33 | +} // namespace dileptonanalysisflags |
| 34 | + |
| 35 | +// DECLARE_SOA_TABLE(EventMCCuts, "AOD", "EVENTMCCUTS", emanalysisflags::IsMCEventSelected); |
| 36 | +DECLARE_SOA_TABLE(DiEventCentCuts, "AOD", "DIEVENTCENTCUTS", dileptonanalysisflags::IsEventCentSelected); |
| 37 | +DECLARE_SOA_TABLE(DiTrackPrefilter, "AOD", "DITRACKPREFILTER", dileptonanalysisflags::IsTrackPrefilter); |
| 38 | + |
| 39 | +} // namespace o2::aod |
| 40 | + |
| 41 | +#endif // ALICE3_DATAMODEL_PREFILTERDILEPTON_H_ |
0 commit comments