Project
Loading...
Searching...
No Matches
DataFormats.h
Go to the documentation of this file.
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#ifndef O2_MCH_RAW_DATA_FORMATS_H
13#define O2_MCH_RAW_DATA_FORMATS_H
14
15#include <cstdint>
16#include <iosfwd>
17
18namespace o2::mch::raw
19{
20
21struct BareFormat {
22};
23
25};
26
28 bool operator()() const { return true; }
29};
30
31struct SampleMode {
32 bool operator()() const { return false; }
33};
34
35template <typename FORMAT>
36struct isUserLogicFormat; // only defined (on purpose) for two types below
37
38template <>
40 static constexpr bool value = true;
41};
42
43template <>
45 static constexpr bool value = false;
46};
47
48template <typename CHARGESUM>
49struct isChargeSumMode; // only defined (on purpose) for two types below
50
51template <>
53 static constexpr bool value = true;
54};
55
56template <>
58 static constexpr bool value = false;
59};
60
61using uint5_t = uint8_t;
62using uint6_t = uint8_t;
63
64using SampaChannelAddress = uint5_t; // 0..31 channel of a Sampa
65using DualSampaChannelId = uint6_t; // 0..63 channel of a *Dual* Sampa
66
67using uint10_t = uint16_t;
68using uint20_t = uint32_t;
69using uint50_t = uint64_t;
70
71// Format of 64 bits-words of the UserLogicFormat
72template <int VERSION>
74
75// initial UL format (2020)
76template <>
77struct ULHeaderWord<0> {
78 union {
79 uint64_t word;
80 struct {
81 uint64_t data : 50;
82 uint64_t error : 2;
83 uint64_t incomplete : 1;
84 uint64_t dsID : 6;
85 uint64_t linkID : 5;
86 };
87 };
88};
89
90// version 1 of UL format (2021)
91// = as initial version with 1 bit less for linkID and 1 bit more for error
92template <>
93struct ULHeaderWord<1> {
94 union {
95 uint64_t word;
96 struct {
97 uint64_t data : 50;
98 uint64_t error : 3;
99 uint64_t incomplete : 1;
100 uint64_t dsID : 6;
101 uint64_t linkID : 4;
102 };
103 };
104};
105
106// structure of the FEEID field (16 bits) in the MCH Raw Data RDH
107struct FEEID {
108 union {
109 uint16_t word;
110 struct {
111 uint16_t id : 8;
112 uint16_t chargeSum : 1;
113 uint16_t reserved : 3;
114 uint16_t ulFormatVersion : 4;
115 };
116 };
117};
118
119template <typename CHARGESUM>
121
122template <int VERSION>
123uint16_t extraFeeIdVersionMask();
124
125template <typename FORMAT>
126uint8_t linkRemapping(uint8_t linkID);
127
128std::ostream& operator<<(std::ostream& os, const FEEID& f);
129} // namespace o2::mch::raw
130
131#endif
GLdouble f
Definition glcorearb.h:310
GLsizei const GLfloat * value
Definition glcorearb.h:819
uint5_t SampaChannelAddress
Definition DataFormats.h:64
uint16_t extraFeeIdVersionMask()
uint8_t uint6_t
Definition DataFormats.h:62
uint16_t uint10_t
Definition DataFormats.h:67
uint8_t linkRemapping(uint8_t linkID)
uint6_t DualSampaChannelId
Definition DataFormats.h:65
uint32_t uint20_t
Definition DataFormats.h:68
uint16_t extraFeeIdChargeSumMask()
uint64_t uint50_t
Definition DataFormats.h:69
uint8_t uint5_t
Definition DataFormats.h:61
std::ostream & operator<<(std::ostream &stream, o2::InteractionRecord const &ir)