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
16#include "MCHCTF/CTFCoder.h"
18#include <TTree.h>
19
20using namespace o2::mch;
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, std::vector<ROFRecord>& rofVec, std::vector<Digit>& digVec)
32{
33 assert(entry >= 0 && entry < tree.GetEntries());
34 CTF ec;
36 decode(ec, rofVec, digVec);
37}
38
40void CTFCoder::createCoders(const std::vector<char>& bufVec, o2::ctf::CTFCoderBase::OpType op)
41{
42 const auto ctf = CTF::getImage(bufVec.data());
43 // just to get types
44 uint16_t nSamples;
45 int32_t orbitInc;
46 uint32_t ADC, nDigits;
47 int32_t tfTime;
48 int16_t bcInc, detID, padID;
49 uint8_t isSaturated;
50#define MAKECODER(part, slot) createCoder(op, std::get<rans::RenormedDenseHistogram<decltype(part)>>(ctf.getDictionary<decltype(part)>(slot, mANSVersion)), int(slot))
51
52 // clang-format off
58 MAKECODER(isSaturated, CTF::BLC_isSaturated);
62 // clang-format on
63}
#define MAKECODER(part, slot)
uint32_t op
class for entropy encoding/decoding of MCH digit data
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, VROF &rofVec, VCOL &digVec)
entropy decode data from buffer with CTF
Definition CTFCoder.h:134
void createCoders(const std::vector< char > &bufVec, o2::ctf::CTFCoderBase::OpType op) final
Definition CTFCoder.cxx:40
GLuint entry
Definition glcorearb.h:5735
wrapper for the Entropy-encoded clusters of the TF
Definition CTF.h:40
@ BLC_padID
Definition CTF.h:50
@ BLC_tfTime
Definition CTF.h:46
@ BLC_orbitIncROF
Definition CTF.h:44
@ BLC_isSaturated
Definition CTF.h:48
@ BLC_nDigitsROF
Definition CTF.h:45
@ BLC_ADC
Definition CTF.h:51
@ BLC_nSamples
Definition CTF.h:47
@ BLC_detID
Definition CTF.h:49
@ BLC_bcIncROF
Definition CTF.h:43
std::unique_ptr< TTree > tree((TTree *) flIn.Get(std::string(o2::base::NameConf::CTFTREENAME).c_str()))