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::trd;
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<TriggerRecord>& trigVec, std::vector<Tracklet64>& trkVec, std::vector<Digit>& digVec)
32{
33 assert(entry >= 0 && entry < tree.GetEntries());
34 CTF ec;
36 decode(ec, trigVec, trkVec, 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 int16_t bcInc;
45 int32_t orbitInc;
46 uint16_t HCIDTrk, posTrk, CIDDig, ADCDig;
47 uint32_t entriesTrk, entriesDig, pidTrk;
48 uint8_t padrowTrk, colTrk, slopeTrk, ROBDig, MCMDig, chanDig;
49
50#define MAKECODER(part, slot) createCoder(op, std::get<rans::RenormedDenseHistogram<decltype(part)>>(ctf.getDictionary<decltype(part)>(slot, mANSVersion)), int(slot))
51 // clang-format off
54 MAKECODER(entriesTrk, CTF::BLC_entriesTrk);
55 MAKECODER(entriesDig, CTF::BLC_entriesDig);
56
58 MAKECODER(padrowTrk, CTF::BLC_padrowTrk);
63
69 // clang-format on
70}
#define MAKECODER(part, slot)
uint32_t op
class for entropy encoding/decoding of TRD 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
void createCoders(const std::vector< char > &bufVec, o2::ctf::CTFCoderBase::OpType op) final
Definition CTFCoder.cxx:40
o2::ctf::CTFIOSize decode(const CTF::base &ec, VTRG &trigVec, VTRK &trkVec, VDIG &digVec)
entropy decode data from buffer with CTF
Definition CTFCoder.h:179
GLuint entry
Definition glcorearb.h:5735
wrapper for the Entropy-encoded triggers and cells of the TF
Definition CTF.h:41
@ BLC_slopeTrk
Definition CTF.h:52
@ BLC_bcIncTrig
Definition CTF.h:44
@ BLC_entriesTrk
Definition CTF.h:46
@ BLC_chanDig
Definition CTF.h:57
@ BLC_orbitIncTrig
Definition CTF.h:45
@ BLC_entriesDig
Definition CTF.h:47
@ BLC_pidTrk
Definition CTF.h:53
@ BLC_MCMDig
Definition CTF.h:56
@ BLC_HCIDTrk
Definition CTF.h:48
@ BLC_CIDDig
Definition CTF.h:54
@ BLC_colTrk
Definition CTF.h:50
@ BLC_padrowTrk
Definition CTF.h:49
@ BLC_posTrk
Definition CTF.h:51
@ BLC_ADCDig
Definition CTF.h:58
@ BLC_ROBDig
Definition CTF.h:55
std::unique_ptr< TTree > tree((TTree *) flIn.Get(std::string(o2::base::NameConf::CTFTREENAME).c_str()))