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 OTFLUT.h
14+ // / \since 23/02/2026
15+ // / \author Jesper & Nicolò
16+ // / \brief Set of tables for ALICE 3 tracker
17+ // /
18+
19+ #ifndef ALICE3_DATAMODEL_OTFLUT_H_
20+ #define ALICE3_DATAMODEL_OTFLUT_H_
21+
22+ #include " Framework/AnalysisDataModel.h"
23+
24+ namespace o2
25+ {
26+ namespace aod
27+ {
28+ namespace otf ::lut
29+ {
30+
31+ DECLARE_SOA_CCDB_COLUMN (LutEl, lutEl, std::string_view, " Users/j/jekarlss/ccdbUploadTest3/luts/lutEl" ); // !
32+ DECLARE_SOA_CCDB_COLUMN (LutMu, lutMu, std::string_view, " Users/j/jekarlss/ccdbUploadTest3/luts/lutMu" ); // !
33+ DECLARE_SOA_CCDB_COLUMN (LutPi, lutPi, std::string_view, " Users/j/jekarlss/ccdbUploadTest3/luts/lutPi" ); // !
34+ DECLARE_SOA_CCDB_COLUMN (LutKa, lutKa, std::string_view, " Users/j/jekarlss/ccdbUploadTest3/luts/lutKa" ); // !
35+ DECLARE_SOA_CCDB_COLUMN (LutPr, lutPr, std::string_view, " Users/j/jekarlss/ccdbUploadTest3/luts/lutPr" ); // !
36+
37+ } // namespace otf::lut
38+
39+ DECLARE_SOA_TIMESTAMPED_TABLE (A3LookUpTables, aod::Timestamps, o2::aod::timestamp::Timestamp, 1 , " LUTs" , // !
40+ otf::lut::LutEl,
41+ otf::lut::LutMu,
42+ otf::lut::LutPi,
43+ otf::lut::LutKa,
44+ otf::lut::LutPr);
45+ } // namespace aod
46+
47+ namespace upgrade
48+ {
49+ static constexpr uint64_t TimestampLUT = 1747442464000 ;
50+ } // namespace upgrade
51+ } // namespace o2
52+
53+ #endif // ALICE3_DATAMODEL_OTFLUT_H_
0 commit comments