-
Notifications
You must be signed in to change notification settings - Fork 650
Expand file tree
/
Copy pathLFF1Tables.h
More file actions
39 lines (33 loc) · 1.42 KB
/
LFF1Tables.h
File metadata and controls
39 lines (33 loc) · 1.42 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
36
37
38
39
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
// This software is distributed under the terms of the GNU General Public
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
//
// 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.
/// \file LFF1Tables.h
///
/// \author Sourav Kundu <sourav.kundu@cern.ch>
#ifndef PWGLF_DATAMODEL_LFF1TABLES_H_
#define PWGLF_DATAMODEL_LFF1TABLES_H_
#include <Framework/AnalysisDataModel.h>
#include <cmath>
namespace o2::aod
{
/// F1 Collisions
namespace f1collision
{
DECLARE_SOA_COLUMN(TriggerEventF1, triggereventf1, bool); //! F1 trigger event
DECLARE_SOA_COLUMN(TriggerEventF1P, triggereventf1p, bool); //! F1 - proton trigger event
DECLARE_SOA_COLUMN(TriggerEventF1PFemto, triggereventf1pfemto, bool); //! F1 - proton femto trigger event
} // namespace f1collision
DECLARE_SOA_TABLE(F1Collisions, "AOD", "F1COL",
f1collision::TriggerEventF1,
f1collision::TriggerEventF1P,
f1collision::TriggerEventF1PFemto);
using F1Collision = F1Collisions::iterator;
} // namespace o2::aod
#endif // PWGLF_DATAMODEL_LFF1TABLES_H_