Project
Loading...
Searching...
No Matches
Compressor.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
16
17#ifndef O2_TOF_COMPRESSOR
18#define O2_TOF_COMPRESSOR
19
20#include <fstream>
21#include <string>
22#include <cstdint>
26
27namespace o2
28{
29namespace tof
30{
31
32template <typename RDH, bool verbose, bool paranoid>
34{
35
36 public:
39
40 inline bool run()
41 {
42 rewind();
43 mEncoderPointerMax = reinterpret_cast<uint32_t*>(mEncoderBuffer + mEncoderBufferSizeInt);
44 if (mDecoderCONET) {
45 mDecoderPointerMax = reinterpret_cast<const uint32_t*>(mDecoderBuffer + mDecoderBufferSize);
48 processDRM();
49 if (mDecoderFatal) {
51 }
52 if (mDecoderError) {
54 }
55 }
56 return false;
57 }
58 while (!processHBF()) {
59 ;
60 }
61 return false;
62 };
63
64 inline void rewind()
65 {
68 };
69
70 void checkSummary();
71 void resetCounters();
72
74 {
76 if (val) {
78 }
79 };
80
81 void setDecoderCRUZEROES(bool val = true)
82 {
83 mDecoderNextWordStep = val ? 2 : 0;
84 };
85
89
90 void setDecoderBuffer(const char* val) { mDecoderBuffer = val; };
98
99 inline uint32_t getDecoderByteCounter() const { return reinterpret_cast<const char*>(mDecoderPointer) - mDecoderBuffer; };
100 inline uint32_t getEncoderByteCounter() const
101 {
102 if (reinterpret_cast<char*>(mEncoderPointer) < mEncoderBuffer) {
103 return 0;
104 }
105 return reinterpret_cast<char*>(mEncoderPointer) - mEncoderBuffer;
106 };
107
108 // benchmarks
109 double mIntegratedBytes = 0.;
110 double mIntegratedTime = 0.;
111
112 protected:
113 bool processHBF();
114 bool processDRM();
115 bool processLTM();
116 bool processTRM();
117 bool processTRMchain(int itrm, int ichain);
118
121 bool decoderParanoid();
122 inline void decoderRewind() { mDecoderPointer = reinterpret_cast<const uint32_t*>(mDecoderBuffer); };
123 inline void decoderNext()
124 {
126 // mDecoderNextWord = mDecoderNextWord == 1 ? 3 : 1;
127 // mDecoderNextWord = (mDecoderNextWord + 2) % 4;
129 };
130
131 int mJumpRDH = 0;
132
133 std::ifstream mDecoderFile;
134 const char* mDecoderBuffer = nullptr;
136 const uint32_t* mDecoderPointer = nullptr;
137 const uint32_t* mDecoderPointerMax = nullptr;
138 const uint32_t* mDecoderPointerNext = nullptr;
139 uint8_t mDecoderNextWord = 1;
142 bool mDecoderCONET = false;
143 bool mDecoderVerbose = false;
144 bool mDecoderError = false;
145 bool mDecoderFatal = false;
146 char* mDecoderSaveBuffer = nullptr;
147 const int mDecoderSaveBufferSize = 33554432;
150
153 int encoderSpider(int itrm);
154 inline void encoderRewind()
155 {
156 mEncoderPointer = reinterpret_cast<uint32_t*>(mEncoderBuffer);
159 }
160 };
161 inline int encoderNext()
162 {
164 return 1;
165 };
167 return 0;
168 };
169
170 std::ofstream mEncoderFile;
171 char* mEncoderBuffer = nullptr;
174 uint32_t* mEncoderPointer = nullptr;
175 uint32_t* mEncoderPointerMax = nullptr;
176 uint32_t* mEncoderPointerStart = nullptr;
177 uint8_t mEncoderNextWord = 1;
179 bool mEncoderVerbose = false;
180
183 bool checkerCheck();
184 void checkerCheckRDH();
185
189 bool mCheckerVerbose = false;
190
192 uint32_t Headers;
194 uint32_t clockStatus;
195 uint32_t Fault;
196 uint32_t RTOBit;
198
200 uint32_t Headers;
201 uint32_t Empty;
204 uint32_t EBit;
205 } mTRMCounters[10] = {0};
206
208 uint32_t Headers;
210 uint32_t BadStatus;
212 uint32_t TDCerror;
213 } mTRMChainCounters[10][2] = {0};
214
218 const uint32_t* tofDataHeader;
219 const uint32_t* tofOrbit;
220 const uint32_t* drmDataHeader;
221 const uint32_t* drmHeadW1;
222 const uint32_t* drmHeadW2;
223 const uint32_t* drmHeadW3;
224 const uint32_t* drmHeadW4;
225 const uint32_t* drmHeadW5;
226 const uint32_t* drmDataTrailer;
227 const uint32_t* ltmDataHeader;
228 const uint32_t* ltmDataTrailer;
229 const uint32_t* trmDataHeader[10];
230 const uint32_t* trmDataTrailer[10];
231 const uint32_t* trmChainHeader[10][2];
232 const uint32_t* trmChainTrailer[10][2];
233 const uint32_t* trmDataHit[2][15][256];
234 const uint32_t* trmError[10][2][32];
235 uint8_t trmDataHits[2][15];
236 uint8_t trmErrors[10][2];
237 bool hasHits[10][2];
238 bool hasErrors[10][2];
242 } mDecoderSummary = {nullptr};
243
245 uint32_t FramePackedHit[256][256];
246 uint8_t nFramePackedHits[256];
248
254};
255
256} // namespace tof
257} // namespace o2
258
259#endif
Definition of the RAW Data Header.
TOF raw data format.
struct o2::tof::Compressor::DecoderSummary_t mDecoderSummary
int encoderSpider(int itrm)
const uint32_t * mDecoderPointerMax
Definition Compressor.h:137
uint32_t mDecoderSaveBufferDataLeft
Definition Compressor.h:149
std::ofstream mEncoderFile
Definition Compressor.h:170
void setDecoderCONET(bool val)
Definition Compressor.h:73
void setDecoderCRUZEROES(bool val=true)
Definition Compressor.h:81
uint32_t getEncoderByteCounter() const
Definition Compressor.h:100
struct o2::tof::Compressor::CheckerSummary_t mCheckerSummary
struct o2::tof::Compressor::SpiderSummary_t mSpiderSummary
uint32_t * mEncoderPointer
Definition Compressor.h:174
uint32_t getDecoderByteCounter() const
Definition Compressor.h:99
void setEncoderVerbose(bool val)
Definition Compressor.h:87
uint8_t mDecoderNextWordStep
Definition Compressor.h:140
void setEncoderBufferSize(long val)
Definition Compressor.h:93
struct o2::tof::Compressor::TRMChainCounters_t mTRMChainCounters[10][2]
struct o2::tof::Compressor::DRMCounters_t mDRMCounters
uint32_t * mEncoderPointerMax
Definition Compressor.h:175
const uint32_t * mDecoderPointer
Definition Compressor.h:136
bool processTRMchain(int itrm, int ichain)
const RDH * mDecoderRDH
Definition Compressor.h:141
const uint32_t * mDecoderPointerNext
Definition Compressor.h:138
void setCheckerVerbose(bool val)
Definition Compressor.h:88
uint32_t * mEncoderPointerStart
Definition Compressor.h:176
void setDecoderBufferSize(long val)
Definition Compressor.h:92
const char * mDecoderBuffer
Definition Compressor.h:134
const int mDecoderSaveBufferSize
Definition Compressor.h:147
struct o2::tof::Compressor::TRMCounters_t mTRMCounters[10]
uint32_t mDecoderSaveBufferDataSize
Definition Compressor.h:148
void setDecoderBuffer(const char *val)
Definition Compressor.h:90
std::ifstream mDecoderFile
Definition Compressor.h:133
void setEncoderBuffer(char *val)
Definition Compressor.h:91
void setDecoderVerbose(bool val)
Definition Compressor.h:86
GLuint GLfloat * val
Definition glcorearb.h:1582
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
const uint32_t * trmDataTrailer[10]
Definition Compressor.h:230
const uint32_t * trmError[10][2][32]
Definition Compressor.h:234
const uint32_t * trmDataHit[2][15][256]
Definition Compressor.h:233
const uint32_t * trmChainTrailer[10][2]
Definition Compressor.h:232
const uint32_t * trmChainHeader[10][2]
Definition Compressor.h:231