Project
Loading...
Searching...
No Matches
ThresholdCalibratorSpec.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
13
14#ifndef O2_ITS_THRESHOLD_CALIBRATOR_
15#define O2_ITS_THRESHOLD_CALIBRATOR_
16
17#include <sys/stat.h>
18#include <filesystem>
19#include <string>
20#include <vector>
21#include <array>
22#include <set>
23#include <deque>
24
25#include <iostream>
26#include <fstream>
27#include <sstream>
28
29// Boost library for easy access of host name
30#include <boost/asio/ip/host_name.hpp>
31
34#include "Framework/Task.h"
39#include "Framework/Task.h"
42#include <fairmq/Device.h>
43
44#include <ITSMFTReconstruction/RawPixelDecoder.h> //o2::itsmft::RawPixelDecoder
47#include "CCDB/CcdbApi.h"
50
51// ROOT includes
52#include "TTree.h"
53#include "TH1F.h"
54#include "TF1.h"
55#include "TFile.h"
56
57using namespace o2::framework;
58using namespace o2::itsmft;
59
60namespace o2
61{
62namespace its
63{
64
65int nInj = 50;
66int nInjScaled = 50; // different from nInj only if mMeb > 0, in this case it is nInj/3.
67
68// List of the possible run types for reference
98
99// List of the possible fit types for reference
106
107// To work with parallel chip access
109 int chipModSel = 0;
110 int chipModBase = 1;
111};
112
114{
115 public:
117 ~ITSThresholdCalibrator() override;
118
121
122 void init(InitContext& ic) final;
123 void run(ProcessingContext& pc) final;
124 void endOfStream(EndOfStreamContext& ec) final;
125
126 void finalize();
127 void stop() final;
128 void finaliseCCDB(ConcreteDataMatcher& matcher, void* obj) final;
129
131 private:
132 void updateTimeDependentParams(ProcessingContext& pc);
133 // detector information
134 static constexpr short int N_COL = 1024; // number of columns in Alpide chip
135 static constexpr short int N_ROW = 512; // number of rows in Alpide chip
136
137 static const short int N_RU = o2::itsmft::ChipMappingITS::getNRUs();
138
139 // Number of scan points in a calibration scan
140 short int N_RANGE = 51;
141 // Number of scan points in case of 2D calibration
142 short int N_RANGE2 = 1;
143 // Min number of noisy pix in a dcol for bad dcol tagging
144 static constexpr short int N_PIX_DCOL = 50;
145
146 // The x-axis of the correct data fit chosen above
147 float* mX = nullptr;
148
149 // Hash tables to store the hit and threshold information per pixel
150 std::map<short int, std::map<int, std::vector<std::vector<std::vector<unsigned short int>>>>> mPixelHits;
151 // Unordered map for saving sum of values (thr/ithr/vcasn) for avg calculation
152 std::map<short int, std::array<long int, 6>> mThresholds;
153 // Map including PixID for noisy pixels
154 std::map<short int, std::vector<int>> mNoisyPixID;
155 // Map including PixID for Inefficient pixels
156 std::map<short int, std::vector<int>> mIneffPixID;
157 // Map including PixID for Dead pixels
158 std::map<short int, std::vector<int>> mDeadPixID;
159 // Vector for the calculation of the most probable value
160 std::map<short int, std::array<int, 200>> mpvCounter;
161 // Tree to save threshold info in full threshold scan case
162 TFile* mRootOutfile = nullptr;
163 TTree* mThresholdTree = nullptr;
164 TTree* mScTree = nullptr;
165 TTree* mSlopeTree = nullptr;
166 short int vChipid[N_COL];
167 short int vRow[N_COL];
168 short int vThreshold[N_COL];
169 bool vSuccess[N_COL];
170 float vNoise[N_COL];
171 unsigned char vPoints[N_COL];
172 short int vMixData[N_COL];
173 float vSlope[N_COL];
174 float vIntercept[N_COL];
175 unsigned char vCharge[N_COL];
176 unsigned char vHits[N_COL];
177 short int mColStep = 8; // save s-curves to tree every mColStep pixels on 1 row
178
179 // Initialize pointers for doing error function fits
180 TH1F* mFitHist = nullptr;
181 TF1* mFitFunction = nullptr;
182
183 // Some private helper functions
184 // Helper functions related to the running over data
185 void extractAndUpdate(const short int&, const short int&);
186 std::vector<float> calculatePulseParams(const short int&);
187 std::vector<float> calculatePulseParams2D(const short int&);
188 void extractThresholdRow(const short int&, const short int&);
189 void finalizeOutput();
190
191 void setRunType(const short int&);
192
193 // Helper functions related to threshold extraction
194 void initThresholdTree(bool recreate = true);
195 bool findUpperLower(std::vector<std::vector<unsigned short int>>, const short int&, short int&, short int&, bool, int);
196 bool findThreshold(const short int&, std::vector<std::vector<unsigned short int>>, const float*, short int&, float&, float&, int&, int);
197 bool findThresholdFit(const short int&, std::vector<std::vector<unsigned short int>>, const float*, const short int&, float&, float&, int&, int);
198 bool findThresholdDerivative(std::vector<std::vector<unsigned short int>>, const float*, const short int&, float&, float&, int&, int);
199 bool findThresholdHitcounting(std::vector<std::vector<unsigned short int>>, const float*, const short int&, float&, int);
200 void findAverage(const std::array<long int, 6>&, float&, float&, float&, float&);
201 void saveThreshold();
202
203 // Helper functions for writing to the database
204 void addDatabaseEntry(const short int&, const char*, std::vector<float>, bool);
205
206 // Utils
207 std::vector<short int> getIntegerVect(std::string&);
208 short int getRUID(short int chipID);
209 std::vector<short int> getChipListFromRu(short int, bool*);
210 short int getLinkID(short int, short int);
211 short int getNumberOfActiveLinks(bool*);
212
213 std::string mSelfName;
214 std::string mDictName;
215 std::string mNoiseName;
216
217 int mTFCounter = 0;
218 bool mVerboseOutput = false;
219 std::string mMetaType;
220 std::string mOutputDir;
221 std::string mMetafileDir = "/dev/null";
222 int mNThreads = 1;
223 o2::framework::DataTakingContext mDataTakingContext{};
224 o2::framework::TimingInfo mTimingInfo{};
225
226 // How many rows before starting new ROOT file
227 unsigned int mFileNumber = 0;
228 static constexpr unsigned int N_ROWS_PER_FILE = 150000;
229 unsigned int mRowCounter = 0;
230
231 short int mRunType = -1;
232 short int mRunTypeUp = -1;
233 short int mRunTypeRU[N_RU] = {0};
234 short int mRunTypeRUCopy[N_RU] = {0};
235 short int mCdwCntRU[N_RU][N_ROW] = {{0}};
236 short int mLoopVal[N_RU][N_ROW] = {{0}};
237 bool mActiveLinks[N_RU][3] = {{false}};
238 std::set<short int> mRuSet;
239 // Either "T" for threshold, "V" for VCASN, or "I" for ITHR
240 char mScanType = '\0';
241 short int mMin = -1, mMax = -1, mMin2 = 0, mMax2 = 0;
242 short int mStep = 1, mStep2 = 1;
243 short int mStrobeWindow = 5; // 5 means 5*25ns = 125 ns
244
245 // Get threshold method (fit == 1, derivative == 0, or hitcounting == 2)
246 char mFitType = -1;
247
248 // To tag type(noisy, dead, ineff) of pixel
249 std::string PixelType;
250 // Machine hostname
251 std::string mHostname;
252
253 // DCS config object
255 // DCS config object for pixel type
257 // DCS config object shipped only to QC to know when scan is done
258 o2::dcs::DCSconfigObject_t mChipDoneQc;
259
260 // CDW version
261 short int mCdwVersion = 0; // for now: v0, v1
262
263 // Flag to avoid that endOfStream and stop are both done
264 bool isEnded = false;
265
266 // Flag to tag single noisy pix in digital scan
267 bool mTagSinglePix = false;
268
269 // flag to set url for ccdb mgr
270 std::string mCcdbMgrUrl = "";
271 // Bool to check exact row when counting hits
272 bool mCheckExactRow = false;
273
274 // Chip mod selector and chip mod base for parallel chip access
275 int mChipModSel = 0;
276 int mChipModBase = 1;
277
278 // To set min and max ITHR and VCASN in the tuning scans
279 short int inMinVcasn = 30;
280 short int inMaxVcasn = 100;
281 short int inMinIthr = 25;
282 short int inMaxIthr = 100;
283
284 // Flag to enable most-probable value calculation
285 bool isMpv = false;
286
287 // parameters for manual mode: if run type is not among the listed one
288 bool isManualMode = false;
289 bool saveTree;
290 bool scaleNinj = false;
291 short int manualMin, manualMin2 = 0;
292 short int manualMax, manualMax2 = 0;
293 short int manualStep = 1, manualStep2 = 1;
294 std::string manualScanType;
295 short int manualStrobeWindow = 5;
296
297 // for CRU_ITS data processing
298 bool isCRUITS = false;
299
300 // map to get confDB id
301 std::vector<int>* mConfDBmap;
302 short int mConfDBv;
303
304 // Parameters useful to dump s-scurves on disk + file
305 bool isDumpS = false; // dump or not dump
306 int maxDumpS = -1; // maximum number of s-curves to be dumped, default -1 = dump all
307 std::string chipDumpS = ""; // list of comma-separated O2 chipIDs to be dumped, default is empty = dump all
308 int dumpCounterS[24120] = {0}; // count dumps for every chip
309 int countCdw[24120] = {0}; // count how many CDWs have been processed with the maximum charge injected: usefull for s-curve dump when hits do not arrive in order
310 TFile* fileDumpS; // file where to store the s-curves on disk
311 std::vector<short int> chipDumpList; // vector of chips to dump
312
313 // Run stop requested flag for EoS operations
314 bool mRunStopRequested = false;
315
316 // Flag to calculate the slope in pulse shape 2d scans, y of the 1st point, y of the second point
317 bool doSlopeCalculation = false;
318 bool mCalculate2DParams = true;
319 int chargeA = 0;
320 int chargeB = 0;
321
322 // Variable to select from which MEB to consider the hits.
323 int mMeb = -1;
324
325 // Percentage cut for VCASN/ITHR scans
326 short int mPercentageCut = 25; // default, at least 1 good row equivalent
327};
328
329// Create a processor spec
331
332} // namespace its
333} // namespace o2
334
335#endif
Utils and constants for calibration and related workflows.
random_device dev
Definition of the Alpide pixel reader for raw data processing.
void run(ProcessingContext &pc) final
void stop() final
This is invoked on stop.
void endOfStream(EndOfStreamContext &ec) final
This is invoked whenever we have an EndOfStream event.
void finaliseCCDB(ConcreteDataMatcher &matcher, void *obj) final
GLenum array
Definition glcorearb.h:4274
std::vector< char > DCSconfigObject_t
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
o2::framework::DataProcessorSpec getITSThresholdCalibratorSpec(const ITSCalibInpConf &inpConf)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
Defining DataPointCompositeObject explicitly as copiable.