Project
Loading...
Searching...
No Matches
CTFCoder.cxx
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
15
17#include <fmt/format.h>
18
19using namespace o2::tpc;
20
23{
24 const CompressedClustersCounters& header = c;
25 size_t sz = 0;
26 sz += alignSize(c.qTotU, header.nUnattachedClusters);
27 sz += alignSize(c.qMaxU, header.nUnattachedClusters);
28 sz += alignSize(c.flagsU, header.nUnattachedClusters);
29 sz += alignSize(c.padDiffU, header.nUnattachedClusters);
30 sz += alignSize(c.timeDiffU, header.nUnattachedClusters);
31 sz += alignSize(c.sigmaPadU, header.nUnattachedClusters);
32 sz += alignSize(c.sigmaTimeU, header.nUnattachedClusters);
33 sz += alignSize(c.nSliceRowClusters, header.nSliceRows);
34
35 if (header.nAttachedClusters) {
36 sz += alignSize(c.qTotA, header.nAttachedClusters);
37 sz += alignSize(c.qMaxA, header.nAttachedClusters);
38 sz += alignSize(c.flagsA, header.nAttachedClusters);
39 sz += alignSize(c.rowDiffA, header.nAttachedClustersReduced);
40 sz += alignSize(c.sliceLegDiffA, header.nAttachedClustersReduced);
41 sz += alignSize(c.padResA, header.nAttachedClustersReduced);
42 sz += alignSize(c.timeResA, header.nAttachedClustersReduced);
43 sz += alignSize(c.sigmaPadA, header.nAttachedClusters);
44 sz += alignSize(c.sigmaTimeA, header.nAttachedClusters);
45
46 sz += alignSize(c.qPtA, header.nTracks);
47 sz += alignSize(c.rowA, header.nTracks);
48 sz += alignSize(c.sliceA, header.nTracks);
49 sz += alignSize(c.timeA, header.nTracks);
50 sz += alignSize(c.padA, header.nTracks);
51
52 sz += alignSize(c.nTrackClusters, header.nTracks);
53 }
54 return sz;
55}
56
59{
60 const CompressedClustersCounters& header = c;
61 setAlignedPtr(buff, c.qTotU, header.nUnattachedClusters);
62 setAlignedPtr(buff, c.qMaxU, header.nUnattachedClusters);
63 setAlignedPtr(buff, c.flagsU, header.nUnattachedClusters);
64 setAlignedPtr(buff, c.padDiffU, header.nUnattachedClusters);
65 setAlignedPtr(buff, c.timeDiffU, header.nUnattachedClusters);
66 setAlignedPtr(buff, c.sigmaPadU, header.nUnattachedClusters);
67 setAlignedPtr(buff, c.sigmaTimeU, header.nUnattachedClusters);
68 setAlignedPtr(buff, c.nSliceRowClusters, header.nSliceRows);
69
70 if (header.nAttachedClusters) {
71
72 setAlignedPtr(buff, c.qTotA, header.nAttachedClusters);
73 setAlignedPtr(buff, c.qMaxA, header.nAttachedClusters);
74 setAlignedPtr(buff, c.flagsA, header.nAttachedClusters);
75 setAlignedPtr(buff, c.rowDiffA, header.nAttachedClustersReduced);
76 setAlignedPtr(buff, c.sliceLegDiffA, header.nAttachedClustersReduced);
77 setAlignedPtr(buff, c.padResA, header.nAttachedClustersReduced);
78 setAlignedPtr(buff, c.timeResA, header.nAttachedClustersReduced);
79 setAlignedPtr(buff, c.sigmaPadA, header.nAttachedClusters);
80 setAlignedPtr(buff, c.sigmaTimeA, header.nAttachedClusters);
81
82 setAlignedPtr(buff, c.qPtA, header.nTracks);
83 setAlignedPtr(buff, c.rowA, header.nTracks);
84 setAlignedPtr(buff, c.sliceA, header.nTracks);
85 setAlignedPtr(buff, c.timeA, header.nTracks);
86 setAlignedPtr(buff, c.padA, header.nTracks);
87
88 setAlignedPtr(buff, c.nTrackClusters, header.nTracks);
89 }
90}
91
93void CTFCoder::createCoders(const std::vector<char>& bufVec, o2::ctf::CTFCoderBase::OpType op)
94{
95 using namespace detail;
96 const CTF::container_t ctf = CTF::getImage(bufVec.data());
97 mCombineColumns = ctf.getHeader().flags & CTFHeader::CombinedColumns;
98 LOG(info) << "TPC CTF Columns Combining " << (mCombineColumns ? "ON" : "OFF");
99
100 const CompressedClusters cc; // just to get member types
101 if (mCombineColumns) {
102 buildCoder<combinedType_t<CTF::NBitsQTot, CTF::NBitsQMax>>(op, ctf, CTF::BLCqTotA);
103 } else {
104 buildCoder<std::remove_pointer_t<decltype(cc.qTotA)>>(op, ctf, CTF::BLCqTotA);
105 }
106 buildCoder<std::remove_pointer_t<decltype(cc.qMaxA)>>(op, ctf, CTF::BLCqMaxA);
107 buildCoder<std::remove_pointer_t<decltype(cc.flagsA)>>(op, ctf, CTF::BLCflagsA);
108 if (mCombineColumns) {
109 buildCoder<combinedType_t<CTF::NBitsRowDiff, CTF::NBitsSliceLegDiff>>(op, ctf, CTF::BLCrowDiffA); // merged rowDiffA and sliceLegDiffA
110
111 } else {
112 buildCoder<std::remove_pointer_t<decltype(cc.rowDiffA)>>(op, ctf, CTF::BLCrowDiffA);
113 }
114 buildCoder<std::remove_pointer_t<decltype(cc.sliceLegDiffA)>>(op, ctf, CTF::BLCsliceLegDiffA);
115 buildCoder<std::remove_pointer_t<decltype(cc.padResA)>>(op, ctf, CTF::BLCpadResA);
116 buildCoder<std::remove_pointer_t<decltype(cc.timeResA)>>(op, ctf, CTF::BLCtimeResA);
117 if (mCombineColumns) {
118 buildCoder<combinedType_t<CTF::NBitsSigmaPad, CTF::NBitsSigmaTime>>(op, ctf, CTF::BLCsigmaPadA); // merged sigmaPadA and sigmaTimeA
119 } else {
120 buildCoder<std::remove_pointer_t<decltype(cc.sigmaPadA)>>(op, ctf, CTF::BLCsigmaPadA);
121 }
122 buildCoder<std::remove_pointer_t<decltype(cc.sigmaTimeA)>>(op, ctf, CTF::BLCsigmaTimeA);
123 buildCoder<std::remove_pointer_t<decltype(cc.qPtA)>>(op, ctf, CTF::BLCqPtA);
124 buildCoder<std::remove_pointer_t<decltype(cc.rowA)>>(op, ctf, CTF::BLCrowA);
125 buildCoder<std::remove_pointer_t<decltype(cc.sliceA)>>(op, ctf, CTF::BLCsliceA);
126 buildCoder<std::remove_pointer_t<decltype(cc.timeA)>>(op, ctf, CTF::BLCtimeA);
127 buildCoder<std::remove_pointer_t<decltype(cc.padA)>>(op, ctf, CTF::BLCpadA);
128 if (mCombineColumns) {
129 buildCoder<combinedType_t<CTF::NBitsQTot, CTF::NBitsQMax>>(op, ctf, CTF::BLCqTotU); // merged qTotU and qMaxU
130 } else {
131 buildCoder<std::remove_pointer_t<decltype(cc.qTotU)>>(op, ctf, CTF::BLCqTotU);
132 }
133 buildCoder<std::remove_pointer_t<decltype(cc.qMaxU)>>(op, ctf, CTF::BLCqMaxU);
134 buildCoder<std::remove_pointer_t<decltype(cc.flagsU)>>(op, ctf, CTF::BLCflagsU);
135 buildCoder<std::remove_pointer_t<decltype(cc.padDiffU)>>(op, ctf, CTF::BLCpadDiffU);
136 buildCoder<std::remove_pointer_t<decltype(cc.timeDiffU)>>(op, ctf, CTF::BLCtimeDiffU);
137 if (mCombineColumns) {
138 buildCoder<combinedType_t<CTF::NBitsSigmaPad, CTF::NBitsSigmaTime>>(op, ctf, CTF::BLCsigmaPadU); // merged sigmaPadU and sigmaTimeU
139 } else {
140 buildCoder<std::remove_pointer_t<decltype(cc.sigmaPadU)>>(op, ctf, CTF::BLCsigmaPadU);
141 }
142 buildCoder<std::remove_pointer_t<decltype(cc.sigmaTimeU)>>(op, ctf, CTF::BLCsigmaTimeU);
143 buildCoder<std::remove_pointer_t<decltype(cc.nTrackClusters)>>(op, ctf, CTF::BLCnTrackClusters);
144 buildCoder<std::remove_pointer_t<decltype(cc.nSliceRowClusters)>>(op, ctf, CTF::BLCnSliceRowClusters);
145}
146
148void CTFCoder::checkDataDictionaryConsistency(const CTFHeader& h)
149{
150 if (mCoders[0].has_value()) { // if external dictionary is provided (it will set , make sure its columns combining option is the same as
151 if (mCombineColumns != (h.flags & CTFHeader::CombinedColumns)) {
152 throw std::runtime_error(fmt::format("Mismatch in columns combining mode, Dictionary:{:s} CTFHeader:{:s}",
153 mCombineColumns ? "ON" : "OFF", (h.flags & CTFHeader::CombinedColumns) ? "ON" : "OFF"));
154 }
155 } else {
157 LOG(info) << "CTF with stored dictionaries, columns combining " << (mCombineColumns ? "ON" : "OFF");
158 }
159}
160
163{
164 using namespace detail;
165 size_t sz = 0;
166
167 // RS FIXME this is very crude estimate, instead, an empirical values should be used
168 if (mCombineColumns) {
169 sz += estimateBufferSize<combinedType_t<CTF::NBitsQTot, CTF::NBitsQMax>>(CTF::BLCqTotA, ccl.nAttachedClusters);
170 } else {
172 }
173 sz += estimateBufferSize(CTF::BLCqMaxA, ccl.qMaxA, ccl.qMaxA + (mCombineColumns ? 0 : ccl.nAttachedClusters));
175
176 if (mCombineColumns) {
177 sz += estimateBufferSize<combinedType_t<CTF::NBitsRowDiff, CTF::NBitsSliceLegDiff>>(CTF::BLCrowDiffA, ccl.nAttachedClustersReduced);
178 } else {
180 }
184 if (mCombineColumns) {
185 sz += estimateBufferSize<combinedType_t<CTF::NBitsSigmaPad, CTF::NBitsSigmaTime>>(CTF::BLCsigmaPadA, ccl.nAttachedClusters);
186 } else {
188 }
189 sz += estimateBufferSize(CTF::BLCsigmaTimeA, ccl.sigmaTimeA, ccl.sigmaTimeA + (mCombineColumns ? 0 : ccl.nAttachedClusters));
190 sz += estimateBufferSize(CTF::BLCqPtA, ccl.qPtA, ccl.qPtA + ccl.nTracks);
191 sz += estimateBufferSize(CTF::BLCrowA, ccl.rowA, ccl.rowA + ccl.nTracks);
193 sz += estimateBufferSize(CTF::BLCtimeA, ccl.timeA, ccl.timeA + ccl.nTracks);
194 sz += estimateBufferSize(CTF::BLCpadA, ccl.padA, ccl.padA + ccl.nTracks);
195 if (mCombineColumns) {
196 sz += estimateBufferSize<combinedType_t<CTF::NBitsQTot, CTF::NBitsQMax>>(CTF::BLCqTotU, ccl.nUnattachedClusters);
197 } else {
199 }
200 sz += estimateBufferSize(CTF::BLCqMaxU, ccl.qMaxU, ccl.qMaxU + (mCombineColumns ? 0 : ccl.nUnattachedClusters));
204 if (mCombineColumns) {
205 sz += estimateBufferSize<combinedType_t<CTF::NBitsSigmaPad, CTF::NBitsSigmaTime>>(CTF::BLCsigmaPadU, ccl.nUnattachedClusters);
206 } else {
208 }
209 sz += estimateBufferSize(CTF::BLCsigmaTimeU, ccl.sigmaTimeU, ccl.sigmaTimeU + (mCombineColumns ? 0 : ccl.nUnattachedClusters));
212
213 sz *= 2. / 3; // if needed, will be autoexpanded
214 LOG(debug) << "Estimated output size is " << sz << " bytes";
215 return sz;
216}
uint32_t op
uint32_t c
Definition RawData.h:2
class for entropy encoding/decoding of TPC compressed clusters data
std::ostringstream debug
Class for time synchronization of RawReader instances.
std::vector< std::any > mCoders
size_t estimateBufferSize(size_t slot, source_IT samplesBegin, source_IT samplesEnd)
const H & getHeader() const
static auto getImage(const void *newHead)
get const image of the container wrapper, with pointers in the image relocated to new head
static void setAlignedPtr(void *&ptr, T *&var, size_t n=1)
Definition CTFCoder.h:152
void setCombineColumns(bool v)
Definition CTFCoder.h:162
size_t estimateCompressedSize(const CompressedClusters &ccl)
Definition CTFCoder.cxx:162
static size_t alignSize(T *&var, size_t n=1)
Definition CTFCoder.h:144
void createCoders(const std::vector< char > &bufVec, o2::ctf::CTFCoderBase::OpType op) final
Definition CTFCoder.cxx:93
static size_t estimateSize(CompressedClusters &c)
estimate size needed to store in the flat buffer the payload of the CompressedClusters (here only the...
Definition CTFCoder.cxx:22
static void setCompClusAddresses(CompressedClusters &c, void *&buff)
set addresses of the CompressedClusters fields to point on already reserved memory region
Definition CTFCoder.cxx:58
GLbitfield flags
Definition glcorearb.h:1570
Global TPC definitions and constants.
Definition SimTraits.h:167
@ BLCflagsU
Definition CTF.h:64
@ BLCpadDiffU
Definition CTF.h:65
@ BLCsigmaTimeU
Definition CTF.h:68
@ BLCflagsA
Definition CTF.h:50
@ BLCqMaxA
Definition CTF.h:49
@ BLCtimeDiffU
Definition CTF.h:66
@ BLCqTotA
Definition CTF.h:48
@ BLCnSliceRowClusters
Definition CTF.h:70
@ BLCqTotU
Definition CTF.h:62
@ BLCsigmaPadU
Definition CTF.h:67
@ BLCsliceLegDiffA
Definition CTF.h:52
@ BLCtimeResA
Definition CTF.h:54
@ BLCqMaxU
Definition CTF.h:63
@ BLCsliceA
Definition CTF.h:59
@ BLCtimeA
Definition CTF.h:60
@ BLCpadResA
Definition CTF.h:53
@ BLCsigmaPadA
Definition CTF.h:55
@ BLCrowDiffA
Definition CTF.h:51
@ BLCqPtA
Definition CTF.h:57
@ BLCpadA
Definition CTF.h:61
@ BLCnTrackClusters
Definition CTF.h:69
@ BLCsigmaTimeA
Definition CTF.h:56
@ BLCrowA
Definition CTF.h:58
std::vector< o2::mch::ChannelCode > cc
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"