-
Notifications
You must be signed in to change notification settings - Fork 650
Expand file tree
/
Copy pathLFPIDTOFGenericTables.h
More file actions
55 lines (45 loc) · 2.47 KB
/
LFPIDTOFGenericTables.h
File metadata and controls
55 lines (45 loc) · 2.47 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
// 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 LFPIDTOFGenericTables.h
/// \brief Table for event time without remving track bias
/// \author Yuanzhe Wang <yuanzhe.wang@cern.ch>
#include <Framework/AnalysisDataModel.h>
#ifndef PWGLF_DATAMODEL_LFPIDTOFGENERICTABLES_H_
#define PWGLF_DATAMODEL_LFPIDTOFGENERICTABLES_H_
namespace o2::aod
{
namespace evtime
{
DECLARE_SOA_COLUMN(EvTime, evTime, float); //! Event time. Can be obtained via a combination of detectors e.g. TOF, FT0A, FT0C
DECLARE_SOA_COLUMN(EvTimeErr, evTimeErr, float); //! Error of event time. Can be obtained via a combination of detectors e.g. TOF, FT0A, FT0C
DECLARE_SOA_COLUMN(EvTimeTOF, evTimeTOF, float); //! Event time computed with the TOF detector
DECLARE_SOA_COLUMN(EvTimeTOFErr, evTimeTOFErr, float); //! Error of the event time computed with the TOF detector
DECLARE_SOA_COLUMN(EvTimeFT0, evTimeFT0, float); //! Event time computed with the FT0 detector
DECLARE_SOA_COLUMN(EvTimeFT0Err, evTimeFT0Err, float); //! Error of the event time computed with the FT0 detector
} // namespace evtime
DECLARE_SOA_TABLE(EvTimeTOFFT0, "AOD", "EvTimeTOFFT0", //! Table of the event time. One entry per collision.
evtime::EvTime,
evtime::EvTimeErr,
evtime::EvTimeTOF,
evtime::EvTimeTOFErr,
evtime::EvTimeFT0,
evtime::EvTimeFT0Err);
namespace tracktime
{
DECLARE_SOA_COLUMN(EvTimeForTrack, evTimeForTrack, float); //! Event time. Removed the bias for the specific track
DECLARE_SOA_COLUMN(EvTimeErrForTrack, evTimeErrForTrack, float); //! Error of event time. Removed the bias for the specific track
} // namespace tracktime
DECLARE_SOA_TABLE(EvTimeTOFFT0ForTrack, "AOD", "EvTimeForTrack", //! Table of the event time. One entry per track.
tracktime::EvTimeForTrack,
tracktime::EvTimeErrForTrack);
} // namespace o2::aod
#endif // PWGLF_DATAMODEL_LFPIDTOFGENERICTABLES_H_