Project
Loading...
Searching...
No Matches
DigitContainer.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
17#include <memory>
18#include <fairlogger/Logger.h>
19#include "TPCBase/Mapper.h"
24
25using namespace o2::tpc;
26
28 dataformats::MCTruthContainer<MCCompLabel>& mcTruth, std::vector<CommonMode>& commonModeOutput, const Sector& sector, TimeBin eventTimeBin, bool isContinuous, bool finalFlush)
29{
30 using Streamer = o2::utils::DebugStreamer;
31 Streamer* debugStream = nullptr;
32 if (Streamer::checkStream(o2::utils::StreamFlags::streamDigitFolding) || Streamer::checkStream(o2::utils::StreamFlags::streamDigits)) {
33 mStreamer.setStreamer("debug_digits", "UPDATE");
34 debugStream = &mStreamer;
35 }
36
37 const auto& eleParam = ParameterElectronics::Instance();
38 const auto digitizationMode = eleParam.DigiMode;
39 int nProcessedTimeBins = 0;
40 TimeBin timeBin = (isContinuous) ? mFirstTimeBin : 0;
41
42 // Set the TPC timebin limit, after which digits should be truncated.
43 // Without this we might get crashes in the clusterization step.
44 static const int maxTimeBinForTimeFrame = o2::conf::DigiParams::Instance().maxOrbitsToDigitize != -1 ? ((o2::conf::DigiParams::Instance().maxOrbitsToDigitize * 3564 + 2 * 8 - 2) / 8) : -1;
45
46 auto& cdb = CDBInterface::instance();
47
48 // ion tail per pad parameters
49 const CalPad* padParams[3] = {nullptr, nullptr, nullptr};
50
51 if (eleParam.doIonTailPerPad) {
52 const auto& itSettings = IonTailSettings::Instance();
53 if (itSettings.padITCorrFile.size()) {
54 cdb.setFEEParamsFromFile(itSettings.padITCorrFile);
55 }
56 padParams[0] = &cdb.getITFraction();
57 padParams[1] = &cdb.getITExpLambda();
58 }
59 if (eleParam.doCommonModePerPad) {
60 padParams[2] = &cdb.getCMkValues();
61 }
62
63 const bool needsPrevDigArray = eleParam.doIonTail || eleParam.doIonTailPerPad || eleParam.doSaturationTail;
64 const bool needsEmptyTimeBins = needsPrevDigArray || eleParam.doNoiseEmptyPads;
65
66 // TODO: make creation conditional
67 if (needsPrevDigArray && !mPrevDigArr) {
68 mPrevDigArr = std::make_unique<DigitTime::PrevDigitInfoArray>();
69 }
70
71 // dead channel map
72 const CalDet<bool>* deadMap = {nullptr};
73 if (eleParam.applyDeadMap) {
74 deadMap = &cdb.getDeadChannelMap();
75 }
76
77 static bool reportedSettings = false;
78 if (!reportedSettings) {
79 reportSettings();
80 if (deadMap) {
81 LOGP(info, "Using dead map with {} masked pads", deadMap->getSum<int>());
82 }
83 reportedSettings = true;
84 }
85
86 for (auto& time : mTimeBins) {
89 if (!((nProcessedTimeBins + mFirstTimeBin < eventTimeBin) || !isContinuous || finalFlush)) {
90 break;
91 }
92
93 if (!isContinuous && timeBin > mTmaxTriggered) {
94 continue;
95 }
96
97 // fill also time bins without signal to get noise, ion tail and saturated signals
98 if (needsEmptyTimeBins && !time) {
99 time = new DigitTime;
100 }
101
102 if (maxTimeBinForTimeFrame != -1 && timeBin >= maxTimeBinForTimeFrame) {
103 LOG(warn) << "Timebin going beyond timeframe limit .. truncating flush " << timeBin;
104 break;
105 }
106
107 // fmt::print("Processing secotor: {}, time bin: {}, mFirstTimeBin: {}, dgitTime: {}\n", sector.getSector(), timeBin, mFirstTimeBin, (void*)time);
108
109 if (time) {
110 switch (digitizationMode) {
112 time->fillOutputContainer<DigitzationMode::FullMode>(output, mcTruth, commonModeOutput, sector, timeBin, mPrevDigArr.get(), debugStream, padParams, deadMap);
113 break;
114 }
116 time->fillOutputContainer<DigitzationMode::ZeroSuppression>(output, mcTruth, commonModeOutput, sector, timeBin, mPrevDigArr.get(), debugStream, padParams, deadMap);
117 break;
118 }
120 time->fillOutputContainer<DigitzationMode::ZeroSuppressionCMCorr>(output, mcTruth, commonModeOutput, sector, timeBin, mPrevDigArr.get(), debugStream, padParams, deadMap);
121 break;
122 }
124 time->fillOutputContainer<DigitzationMode::SubtractPedestal>(output, mcTruth, commonModeOutput, sector, timeBin, mPrevDigArr.get(), debugStream, padParams, deadMap);
125 break;
126 }
128 time->fillOutputContainer<DigitzationMode::NoSaturation>(output, mcTruth, commonModeOutput, sector, timeBin, mPrevDigArr.get(), debugStream, padParams, deadMap);
129 break;
130 }
132 time->fillOutputContainer<DigitzationMode::PropagateADC>(output, mcTruth, commonModeOutput, sector, timeBin, mPrevDigArr.get(), debugStream, padParams, deadMap);
133 break;
134 }
136 const auto& feeConfig = cdb.getFEEConfig();
137 if (feeConfig.isCMCEnabled()) {
138 time->fillOutputContainer<DigitzationMode::ZeroSuppressionCMCorr>(output, mcTruth, commonModeOutput, sector, timeBin, mPrevDigArr.get(), debugStream, padParams, deadMap);
139 } else {
140 time->fillOutputContainer<DigitzationMode::ZeroSuppression>(output, mcTruth, commonModeOutput, sector, timeBin, mPrevDigArr.get(), debugStream, padParams, deadMap);
141 }
142 break;
143 }
144 }
145 }
146
147 ++nProcessedTimeBins;
148 ++timeBin;
149 }
150
151 if (nProcessedTimeBins > 0) {
152 mFirstTimeBin += nProcessedTimeBins;
153 while (nProcessedTimeBins--) {
154 auto popped = mTimeBins.front();
155 mTimeBins.pop_front();
156 delete popped;
157 }
158 }
159}
160
161void DigitContainer::reportSettings()
162{
163 auto& cdb = CDBInterface::instance();
164 const auto& eleParam = ParameterElectronics::Instance();
165 const auto& feeConfig = cdb.getFEEConfig();
166 LOGP(info, "ParameterElectronics: doIonTail={}, doIonTailPerPad={}, doCommonModePerPad={}, doSaturationTail={}, doNoiseEmptyPads={}, applyDeadMap={}, commonModeCoupling={}, DigiMode={}",
167 eleParam.doIonTail, eleParam.doIonTailPerPad, eleParam.doCommonModePerPad, eleParam.doSaturationTail, eleParam.doNoiseEmptyPads, eleParam.applyDeadMap, eleParam.commonModeCoupling, (int)eleParam.DigiMode);
168 feeConfig.printShort();
169}
Simple interface to the CDB manager.
Definition of the Digit Container.
int16_t time
Definition RawEventData.h:4
void output(const std::map< std::string, ChannelStat > &channels)
Definition rawdump.cxx:197
Definition of the parameter class for the detector electronics.
static CDBInterface & instance()
U getSum() const
Definition CalDet.h:126
void fillOutputContainer(std::vector< Digit > &output, dataformats::MCTruthContainer< MCCompLabel > &mcTruth, std::vector< CommonMode > &commonModeOutput, const Sector &sector, TimeBin eventTimeBin=0, bool isContinuous=true, bool finalFlush=false)
void fillOutputContainer(std::vector< Digit > &output, dataformats::MCTruthContainer< MCCompLabel > &mcTruth, std::vector< CommonMode > &commonModeOutput, const Sector &sector, TimeBin timeBin, PrevDigitInfoArray *prevTime=nullptr, Streamer *debugStream=nullptr, const CalPad *itParams[2]=nullptr, const CalDet< bool > *deadMap=nullptr)
class to enable streaming debug information to root files
Global TPC definitions and constants.
Definition SimTraits.h:167
@ Auto
Automatically decide based on DCS settings in CCDB.
@ ZeroSuppressionCMCorr
Apply noise, pedestal and saturation and then from that subtract the pedestal and apply zero suppress...
@ ZeroSuppression
Apply noise, pedestal, common mode and saturation and then from that subtract the pedestal and apply ...
@ PropagateADC
Just propagate the bare ADC value.
@ FullMode
Apply noise, pedestal and saturation.
@ SubtractPedestal
Apply noise, pedestal and saturation and then from that subtract the pedestal.
@ NoSaturation
Apply only noise and pedestal.
unsigned int TimeBin
global time bin
Definition Defs.h:132
@ streamDigits
stream digit information
@ streamDigitFolding
stream ion tail and saturatio information
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"