-
Notifications
You must be signed in to change notification settings - Fork 652
Expand file tree
/
Copy pathZDCInterCalib.h
More file actions
60 lines (54 loc) · 3.15 KB
/
ZDCInterCalib.h
File metadata and controls
60 lines (54 loc) · 3.15 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// 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 ZDCInterCalib.h
/// \brief ZDC tower intercalibration task
/// \author Chiara Oppedisano <chiara.oppedisano@cern.ch>, INFN Torino
#ifndef COMMON_DATAMODEL_ZDCINTERCALIB_H_
#define COMMON_DATAMODEL_ZDCINTERCALIB_H_
#include "Framework/AnalysisDataModel.h"
namespace o2::aod
{
namespace znoutput // o2-linter: disable=name/workflow-file
{
DECLARE_SOA_COLUMN(ZNApmc, commonPMZNA, float); //! PMC ZNA // o2-linter: disable=name/o2-column
DECLARE_SOA_COLUMN(ZNApm1, ZNAPM1, float); //! PM1 ZNA // o2-linter: disable=name/o2-column
DECLARE_SOA_COLUMN(ZNApm2, ZNAPM2, float); //! PM2 ZNA // o2-linter: disable=name/o2-column
DECLARE_SOA_COLUMN(ZNApm3, ZNAPM3, float); //! PM3 ZNA // o2-linter: disable=name/o2-column
DECLARE_SOA_COLUMN(ZNApm4, ZNAPM4, float); //! PM4 ZNA // o2-linter: disable=name/o2-column
DECLARE_SOA_COLUMN(ZNAtdc, ZNATDC, float); //! TDC ZNA // o2-linter: disable=name/o2-column
DECLARE_SOA_COLUMN(ZNCpmc, commonPMZNC, float); //! PMC ZNC // o2-linter: disable=name/o2-column
DECLARE_SOA_COLUMN(ZNCpm1, ZNCPM1, float); //! PM1 ZNC // o2-linter: disable=name/o2-column
DECLARE_SOA_COLUMN(ZNCpm2, ZNCPM2, float); //! PM2 ZNC // o2-linter: disable=name/o2-column
DECLARE_SOA_COLUMN(ZNCpm3, ZNCPM3, float); //! PM3 ZNC // o2-linter: disable=name/o2-column
DECLARE_SOA_COLUMN(ZNCpm4, ZNCPM4, float); //! PM4 ZNC // o2-linter: disable=name/o2-column
DECLARE_SOA_COLUMN(ZNCtdc, ZNCTDC, float); //! TDC ZNC // o2-linter: disable=name/o2-column
DECLARE_SOA_COLUMN(Centrality, centrality, float); //! Centrality
DECLARE_SOA_COLUMN(Timestamp, timestamp, uint64_t); //! Timestamp
DECLARE_SOA_COLUMN(SelectionBits, selectionBits, uint8_t); //! Selection Flags
} // namespace znoutput
DECLARE_SOA_TABLE(ZDCInterCalib, "AOD", "ZDCIC", o2::soa::Index<>,
znoutput::ZNApmc,
znoutput::ZNApm1,
znoutput::ZNApm2,
znoutput::ZNApm3,
znoutput::ZNApm4,
znoutput::ZNAtdc,
znoutput::ZNCpmc,
znoutput::ZNCpm1,
znoutput::ZNCpm2,
znoutput::ZNCpm3,
znoutput::ZNCpm4,
znoutput::ZNCtdc,
znoutput::Centrality,
znoutput::Timestamp,
znoutput::SelectionBits);
} // namespace o2::aod
#endif // COMMON_DATAMODEL_ZDCINTERCALIB_H_