-
Notifications
You must be signed in to change notification settings - Fork 496
Expand file tree
/
Copy pathfilterTables.h
More file actions
35 lines (28 loc) · 1.16 KB
/
filterTables.h
File metadata and controls
35 lines (28 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright CERN and copyright holders of ALICE O2. This software is
// distributed under the terms of the GNU General Public License v3 (GPL
// Version 3), copied verbatim in the file "COPYING".
//
// See http://alice-o2.web.cern.ch/license for full licensing information.
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
#ifndef O2_ANALYSIS_TRIGGER_H_
#define O2_ANALYSIS_TRIGGER_H_
#include <array>
#include "Framework/AnalysisDataModel.h"
namespace o2::aod
{
namespace filtering
{
DECLARE_SOA_COLUMN(H2, hasH2, bool);
DECLARE_SOA_COLUMN(H3, hasH3, bool);
DECLARE_SOA_COLUMN(He3, hasHe3, bool);
DECLARE_SOA_COLUMN(He4, hasHe4, bool);
} // namespace filtering
DECLARE_SOA_TABLE(NucleiFilters, "AOD", "Nuclei Filters", filtering::H2, filtering::H3, filtering::He3, filtering::He4);
constexpr std::array<char[32], 1> AvailableFilters{"NucleiFilters"};
constexpr std::array<char[16], 1> FilterDescriptions{"Nuclei Filters"};
using NucleiFilter = NucleiFilters::iterator;
} // namespace o2::aod
#endif // O2_ANALYSIS_TRIGGER_H_