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::emcal;
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<Cell>& cellVec)
32{
33 assert(entry >= 0 && entry < tree.GetEntries());
34 CTF ec;
36 decode(ec, trigVec, cellVec);
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, cellTime = 0, energy = 0, tower = 0, trigger = 0;
47 uint8_t 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
54 MAKECODER(cellTime, CTF::BLC_time);
57 // extra slot was added in the end
59 // clang-format on
60}
61
63void CTFCoder::assignDictVersion(o2::ctf::CTFDictHeader& h) const
64{
66 h = mExtHeader;
67 } else {
68 h.majorVersion = 1;
69 h.minorVersion = 2;
70 }
71}
#define MAKECODER(part, slot)
class for entropy encoding/decoding of EMCAL data
uint32_t op
Class for time synchronization of RawReader instances.
CTFDictHeader mExtHeader
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, VCELL &cellVec)
entropy decode data from buffer with CTF
Definition CTFCoder.h:134
GLuint entry
Definition glcorearb.h:5735
Detector header base.
bool isValidDictTimeStamp() const
wrapper for the Entropy-encoded triggers and cells of the TF
Definition CTF.h:41
@ BLC_entriesTrig
Definition CTF.h:46
@ BLC_status
Definition CTF.h:50
@ BLC_trigger
Definition CTF.h:52
@ BLC_energy
Definition CTF.h:49
@ BLC_towerID
Definition CTF.h:47
@ BLC_bcIncTrig
Definition CTF.h:44
@ BLC_orbitIncTrig
Definition CTF.h:45
std::unique_ptr< TTree > tree((TTree *) flIn.Get(std::string(o2::base::NameConf::CTFTREENAME).c_str()))