Project
Loading...
Searching...
No Matches
CTF.h
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#ifndef O2_ITSMFT_CTF_H
17#define O2_ITSMFT_CTF_H
18
19#include <vector>
20#include <Rtypes.h>
22
23namespace o2
24{
25namespace itsmft
26{
27
28class ROFRecord;
29class CompClusterExt;
30
33 uint32_t nROFs = 0;
34 uint32_t nClusters = 0;
35 uint32_t nChips = 0;
36 uint32_t nPatternBytes = 0;
37 uint32_t firstOrbit = 0;
38 uint16_t firstBC = 0;
40};
41
44
46
47 // ROF header data
48 std::vector<uint16_t> firstChipROF;
49 std::vector<int16_t> bcIncROF;
50 std::vector<int32_t> orbitIncROF;
51 std::vector<uint32_t> nclusROF;
52
53 // Chip data
54 std::vector<int16_t> chipInc;
55 std::vector<uint16_t> chipMul;
56 std::vector<uint16_t> row;
57 std::vector<int16_t> colInc;
58 std::vector<uint16_t> pattID;
59 std::vector<uint8_t> pattMap;
60
61 CompressedClusters() = default;
62
63 void clear();
64
66};
67
84
85} // namespace itsmft
86} // namespace o2
87
88#endif
<<======================== Auxiliary classes =======================<<
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
Detector header base.
Header for a single CTF.
Definition CTF.h:32
uint32_t nChips
number of clusters in TF
Definition CTF.h:35
uint32_t nPatternBytes
number of fired chips in TF : this is for the version with chipInc stored once per new chip
Definition CTF.h:36
uint32_t firstOrbit
number of bytes for explict patterns
Definition CTF.h:37
uint16_t firstBC
1st orbit of TF
Definition CTF.h:38
ClassDefNV(CTFHeader, 2)
1st BC of TF
uint32_t nClusters
number of ROFrame in TF
Definition CTF.h:34
uint32_t nROFs
Definition CTF.h:33
wrapper for the Entropy-encoded clusters of the TF
Definition CTF.h:69
@ BLCnclusROF
Definition CTF.h:75
@ BLCfirstChipROF
Definition CTF.h:72
@ BLCbcIncROF
Definition CTF.h:73
@ BLCorbitIncROF
Definition CTF.h:74
static constexpr size_t N
Definition CTF.h:71
ClassDefNV(CTF, 1)
Compressed but not yet entropy-encoded clusters.
Definition CTF.h:43
std::vector< int16_t > chipInc
number of clusters in ROF
Definition CTF.h:54
CompressedClusters()=default
explict patterns container
std::vector< int16_t > bcIncROF
1st chip ID in the ROF
Definition CTF.h:49
std::vector< int32_t > orbitIncROF
increment of ROF BC wrt BC of previous ROF
Definition CTF.h:50
std::vector< uint16_t > pattID
increment of pixel column wrt that of prev. pixel (sometimes can be slightly negative)
Definition CTF.h:58
std::vector< uint16_t > firstChipROF
Definition CTF.h:48
std::vector< uint32_t > nclusROF
increment of ROF orbit wrt orbit of previous ROF
Definition CTF.h:51
std::vector< uint8_t > pattMap
cluster pattern ID
Definition CTF.h:59
std::vector< uint16_t > row
clusters in chip
Definition CTF.h:56
ClassDefNV(CompressedClusters, 1)
std::vector< int16_t > colInc
row of fired pixel
Definition CTF.h:57
std::vector< uint16_t > chipMul
increment of chipID wrt that of prev. chip
Definition CTF.h:55