Project
Loading...
Searching...
No Matches
CompressedDigit.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
12#ifndef ALICEO2_TRD_TRDCOMPRESSEDDIGIT_H
13#define ALICEO2_TRD_TRDCOMPRESSEDDIGIT_H
14
15#include <cstdint>
16#include <array>
17#include "Rtypes.h" // for ClassDef
19#include "fairlogger/Logger.h"
20#include "gsl/span"
21
22namespace o2
23{
24namespace trd
25{
26
27// Compressed Digit class for TRD
28// Notes:
29// This is to simplify the handling of raw data that comes in in the same 3 timebins per 32 bit integer format.
30
32{
33 public:
34 CompressedDigit() = default;
35 ~CompressedDigit() = default;
36 CompressedDigit(const int det, const int rob, const int mcm, const int channel, const std::array<uint16_t, constants::TIMEBINS>& adc);
37 CompressedDigit(const int det, const int rob, const int mcm, const int channel); // add adc data in a seperate step
38
39 // Copy
41 // Assignment
43 // Modifiers
44 void setChannel(int channel)
45 {
46 mHeader &= ~(0x003f);
47 mHeader |= (channel)&0x003f;
48 }
49 void setMCM(int mcm)
50 {
51 mHeader &= ~(0x3c0);
52 mHeader |= (mcm)&0x3c0;
53 }
54 void setROB(int rob)
55 {
56 mHeader &= ~(0x1c00);
57 mHeader |= (rob)&0x1c00;
58 }
59 void setDetector(int det)
60 {
61 mHeader &= ~(0x7fe000);
62 mHeader |= (det << 12) & 0x7fe000;
63 }
64 void setADC(std::array<uint16_t, constants::TIMEBINS> const& adcs)
65 {
66 for (int adcindex = 0; adcindex < constants::TIMEBINS; ++adcindex) {
67 int rem = adcindex % 3;
68 // LOG(info) << "adc index :" << adcindex << " rem:" << rem << " adcindex/3=" << adcindex/3;
69 mADC[adcindex / 3] &= ~((0x3ff) << (rem * 10));
70 // LOG(info) << "mADC[adcindex/3] after &= :" << std::hex << mADC[adcindex/3] << rem;
71 mADC[adcindex / 3] |= (adcs[adcindex] << (rem * 10));
72 // LOG(info) << "mADC[adcindex/3] after != :" << std::hex << mADC[adcindex/3] << rem;
73 }
74 }
75 void setADCi(int index, uint16_t adcvalue)
76 {
77 int rem = index % 3;
78 mADC[index / 3] &= ~((0x3ff) << (rem * 10));
79 mADC[index / 3] |= (adcvalue << (rem * 10));
80 }
81 // Get methods
82 int getChannel() const { return mHeader & 0x3f; }
83 int getMCM() const { return (mHeader & 0x3c0) >> 6; }
84 int getROB() const { return (mHeader & 0x1c00) >> 10; }
85 int getDetector() const { return (mHeader & 0x7fe000) >> 12; }
86 bool isSharedCompressedDigit() const;
87
88 uint16_t operator[](const int index) { return mADC[index / 3] >> ((index % 3) * 10); }
89 uint32_t getADCsum() const
90 {
91 uint32_t sum = 0;
92 for (int i = 0; i < constants::TIMEBINS; ++i) {
93 sum += (mADC[i / 3] >> ((i % 3) * 10));
94 }
95 return sum;
96 }
97
98 private:
99 uint32_t mHeader;
100 // 3322 2222 2222 1111 1111 1100 0000 0000
101 // 1098 7654 3210 9876 5432 1098 7654 3210
102 // uint32_t: 0000 0000 0DDD DDDD DDDR RRMM MMCC CCCC
103 // C= channel[5 bits 0-21], M=MCM [4bits 0-15], R=ROB[3bits 0-7], D=Detector[10 bits 0-540]
104 std::array<uint32_t, 10> mADC; // ADC vector (30 time-bins) packed into 10 32bit integers.
105 ClassDefNV(CompressedDigit, 1);
106};
107
108} // namespace trd
109} // namespace o2
110
111#endif
uint16_t mcm
uint16_t rob
Global TRD definitions and constants.
int32_t i
void setADCi(int index, uint16_t adcvalue)
uint16_t operator[](const int index)
uint32_t getADCsum() const
CompressedDigit & operator=(const CompressedDigit &)=default
void setADC(std::array< uint16_t, constants::TIMEBINS > const &adcs)
void setChannel(int channel)
CompressedDigit(const CompressedDigit &)=default
float sum(float s, o2::dcs::DataPointValue v)
Definition dcs-ccdb.cxx:39
GLuint index
Definition glcorearb.h:781
constexpr int TIMEBINS
the number of time bins
Definition Constants.h:74
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
ArrayADC adc