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
18#include <TTree.h>
19
20using namespace o2::fdd;
21
23// Register encoded data in the tree (Fill is not called, will be done by caller)
24void CTFCoder::appendToTree(TTree& tree, CTF& ec)
25{
27}
28
30// extract and decode data from the tree
31void CTFCoder::readFromTree(TTree& tree, int entry,
32 std::vector<Digit>& digitVec, std::vector<ChannelData>& channelVec)
33{
34 assert(entry >= 0 && entry < tree.GetEntries());
35 CTF ec;
37 decode(ec, digitVec, channelVec);
38}
40void CTFCoder::assignDictVersion(o2::ctf::CTFDictHeader& h) const
41{
43 h = mExtHeader;
44 } else {
45 h.majorVersion = 1;
46 h.minorVersion = 1;
47 }
48}
50void CTFCoder::createCoders(const std::vector<char>& bufVec, o2::ctf::CTFCoderBase::OpType op)
51{
52 const auto ctf = CTF::getImage(bufVec.data());
53 CompressedDigits cd; // just to get member types
54#define MAKECODER(part, slot) createCoder(op, std::get<rans::RenormedDenseHistogram<typename decltype(part)::value_type>>(ctf.getDictionary<decltype(part)::value_type>(slot, mANSVersion)), int(slot))
55 // clang-format off
60
65 // clang-format on
66}
67
69size_t CTFCoder::estimateCompressedSize(const CompressedDigits& cd)
70{
71 size_t sz = 0;
72 // RS FIXME this is very crude estimate, instead, an empirical values should be used
73 sz += estimateBufferSize(static_cast<int>(CTF::BLC_trigger), cd.trigger);
74 sz += estimateBufferSize(static_cast<int>(CTF::BLC_bcInc), cd.bcInc);
75 sz += estimateBufferSize(static_cast<int>(CTF::BLC_orbitInc), cd.orbitInc);
76 sz += estimateBufferSize(static_cast<int>(CTF::BLC_nChan), cd.nChan);
77
78 sz += estimateBufferSize(static_cast<int>(CTF::BLC_idChan), cd.idChan);
79 sz += estimateBufferSize(static_cast<int>(CTF::BLC_time), cd.time);
80 sz += estimateBufferSize(static_cast<int>(CTF::BLC_charge), cd.charge);
81 sz += estimateBufferSize(static_cast<int>(CTF::BLC_feeBits), cd.feeBits);
82
83 LOG(debug) << "Estimated output size is " << sz << " bytes";
84 return sz;
85}
#define MAKECODER(part, slot)
class for entropy encoding/decoding of FDD digits data
uint32_t op
std::ostringstream debug
Class for time synchronization of RawReader instances.
CTFDictHeader mExtHeader
size_t estimateBufferSize(size_t slot, source_IT samplesBegin, source_IT samplesEnd)
void readFromTree(TTree &tree, const std::string &name, int ev=0)
read from tree to non-flat object
static auto getImage(const void *newHead)
get const image of the container wrapper, with pointers in the image relocated to new head
size_t appendToTree(TTree &tree, const std::string &name) const
attach to tree
static constexpr const char * getName(ID id)
names of defined detectors
Definition DetID.h:145
o2::ctf::CTFIOSize decode(const CTF::base &ec, VDIG &digitVec, VCHAN &channelVec)
entropy decode clusters from buffer with CTF
Definition CTFCoder.h:127
void createCoders(const std::vector< char > &bufVec, o2::ctf::CTFCoderBase::OpType op) final
Definition CTFCoder.cxx:50
GLuint entry
Definition glcorearb.h:5735
Detector header base.
bool isValidDictTimeStamp() const
wrapper for the Entropy-encoded clusters of the TF
Definition CTF.h:62
@ BLC_orbitInc
Definition CTF.h:68
@ BLC_nChan
Definition CTF.h:69
@ BLC_bcInc
Definition CTF.h:67
@ BLC_charge
Definition CTF.h:73
@ BLC_trigger
Definition CTF.h:66
@ BLC_idChan
Definition CTF.h:71
@ BLC_time
Definition CTF.h:72
@ BLC_feeBits
Definition CTF.h:74
Intermediate, compressed but not yet entropy-encoded digits.
Definition CTF.h:38
std::vector< int32_t > orbitInc
Definition CTF.h:45
std::vector< uint8_t > feeBits
Definition CTF.h:52
std::vector< int16_t > time
Definition CTF.h:50
std::vector< uint8_t > trigger
Definition CTF.h:43
std::vector< int16_t > charge
Definition CTF.h:51
std::vector< int16_t > bcInc
Definition CTF.h:44
std::vector< uint8_t > idChan
Definition CTF.h:49
std::vector< uint8_t > nChan
Definition CTF.h:46
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"
std::unique_ptr< TTree > tree((TTree *) flIn.Get(std::string(o2::base::NameConf::CTFTREENAME).c_str()))