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::cpv;
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<Cluster>& cluVec)
32{
33 assert(entry >= 0 && entry < tree.GetEntries());
34 CTF ec;
36 decode(ec, trigVec, cluVec);
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 = 0;
45 int32_t orbitInc = 0;
46 uint16_t entries = 0, cluPosX = 0, cluPosZ = 0;
47 uint8_t energy = 0, status = 0;
48#define MAKECODER(part, slot) createCoder(op, std::get<rans::RenormedDenseHistogram<decltype(part)>>(ctf.getDictionary<decltype(part)>(slot, mANSVersion)), int(slot))
49 // clang-format off
53 MAKECODER(cluPosX, CTF::BLC_posX);
54 MAKECODER(cluPosZ, CTF::BLC_posZ);
57 // clang-format on
58}
class for entropy encoding/decoding of CPV data
#define MAKECODER(part, slot)
uint32_t op
o2::ctf::CTFIOSize decode(const CTF::base &ec, VTRG &trigVec, VCLUSTER &cluVec)
entropy decode data from buffer with CTF
Definition CTFCoder.h:130
void createCoders(const std::vector< char > &bufVec, ctf::CTFCoderBase::OpType op) final
Definition CTFCoder.cxx:40
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
GLuint entry
Definition glcorearb.h:5735
wrapper for the Entropy-encoded triggers and cells of the TF
Definition CTF.h:41
@ BLC_entriesTrig
Definition CTF.h:46
@ BLC_bcIncTrig
Definition CTF.h:44
@ BLC_status
Definition CTF.h:50
@ BLC_posX
Definition CTF.h:47
@ BLC_orbitIncTrig
Definition CTF.h:45
@ BLC_energy
Definition CTF.h:49
@ BLC_posZ
Definition CTF.h:48
std::unique_ptr< TTree > tree((TTree *) flIn.Get(std::string(o2::base::NameConf::CTFTREENAME).c_str()))