]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSOnlineCalibrationSPDhandler.h
- include option to avoid multiple reconstruction of tracklets in the
[u/mrichter/AliRoot.git] / ITS / AliITSOnlineCalibrationSPDhandler.h
CommitLineData
b15de2d2 1#ifndef ALI_ITS_ONLINECALIBRATIONSPDHANDLER_H
2#define ALI_ITS_ONLINECALIBRATIONSPDHANDLER_H
3
b696414b 4//////////////////////////////////////////////////////////////////////////////
5// Author: Henrik Tydesjo //
6// Class that simplifies the managing of dead, noisy, and inactive pixels. //
7// Has interface to the AliITSOnlineCalibrationSPD container objects //
8// through reading and writing to TFile. //
9//////////////////////////////////////////////////////////////////////////////
b15de2d2 10
60d9faf6 11/* $Id$ */
e03405c9 12
53ae21ce 13#include "AliITSRawStreamSPD.h"
14#include <TString.h>
b15de2d2 15
60d9faf6 16class TArrayI;
e03405c9 17class TArrayS;
53ae21ce 18class AliITSIntMap;
6727e2db 19class AliITSCalibrationSPD;
b15de2d2 20
21class AliITSOnlineCalibrationSPDhandler {
22
23 public:
24 AliITSOnlineCalibrationSPDhandler();
b15de2d2 25 AliITSOnlineCalibrationSPDhandler(const AliITSOnlineCalibrationSPDhandler& handle);
26 virtual ~AliITSOnlineCalibrationSPDhandler();
27 AliITSOnlineCalibrationSPDhandler& operator=(const AliITSOnlineCalibrationSPDhandler& handle);
53ae21ce 28
29 void SetFileLocation(const Char_t* loc) {fFileLocation = loc;}
30 TString GetFileLocation() const {return fFileLocation;}
31
b15de2d2 32 void ClearMaps();
6727e2db 33 void ResetDead();
34 void ResetNoisy();
35 void ResetDeadForChip(UInt_t eq, UInt_t hs, UInt_t chip);
36 void ResetNoisyForChip(UInt_t eq, UInt_t hs, UInt_t chip);
37 void ResetDeadForEq(UInt_t eq);
38 void ResetNoisyForEq(UInt_t eq);
b15de2d2 39
53ae21ce 40 Bool_t ReadFromFiles();
b696414b 41 Bool_t ReadSilentFromFiles();
53ae21ce 42 Bool_t ReadDeadFromFiles();
43 Bool_t ReadNoisyFromFiles();
b696414b 44 Bool_t ReadSilentFromFile(UInt_t eq);
6727e2db 45 Bool_t ReadDeadFromFile(UInt_t eq);
46 Bool_t ReadNoisyFromFile(UInt_t eq);
b696414b 47 Bool_t ReadSilentFromFileName(const char *fileName);
48 Bool_t ReadDeadFromFileName(const char *fileName, Bool_t inactive=kFALSE);
53ae21ce 49 Bool_t ReadNoisyFromFileName(const char *fileName);
b696414b 50
6727e2db 51 UInt_t ReadDeadFromText(const char *fileName, UInt_t module);
52 UInt_t ReadNoisyFromText(const char *fileName, UInt_t module);
53ae21ce 53
3479cee3 54 void WriteToFilesAlways();
6727e2db 55 UInt_t WriteToFiles();
b696414b 56 void WriteSilentToFilesAlways();
6727e2db 57 void WriteDeadToFilesAlways();
58 void WriteNoisyToFilesAlways();
b696414b 59 UInt_t WriteSilentToFiles();
6727e2db 60 UInt_t WriteDeadToFiles();
61 UInt_t WriteNoisyToFiles();
b696414b 62 void WriteSilentToFile(UInt_t eq);
63 void WriteDeadToFile(UInt_t eq, Bool_t inactive=kFALSE);
6727e2db 64 void WriteNoisyToFile(UInt_t eq);
53ae21ce 65
66#ifndef SPD_DA_OFF
6727e2db 67 Bool_t ReadDeadModuleFromDB(UInt_t module, Int_t runNr, Bool_t treeSerial=kFALSE);
68 Bool_t ReadNoisyModuleFromDB(UInt_t module, Int_t runNr, Bool_t treeSerial=kFALSE);
69 Bool_t ReadFromDB(Int_t runNr, Bool_t treeSerial=kFALSE);
70 Bool_t ReadDeadFromDB(Int_t runNr, Bool_t treeSerial=kFALSE);
71 Bool_t ReadNoisyFromDB(Int_t runNr, Bool_t treeSerial=kFALSE);
72 Bool_t ReadDeadFromCalibObj(TObjArray* calObj);
73 Bool_t ReadNoisyFromCalibObj(TObjArray* calObj);
53ae21ce 74 Bool_t WriteToDB(Int_t runNrStart, Int_t runNrEnd);
6727e2db 75 Bool_t WriteDeadToDB(Int_t runNrStart, Int_t runNrEnd);
361d2803 76 Bool_t WriteDeadToDBasNoisy(Int_t runNrStart, Int_t runNrEnd);
6727e2db 77 Bool_t WriteNoisyToDB(Int_t runNrStart, Int_t runNrEnd);
53ae21ce 78#endif
53ae21ce 79
6727e2db 80 void GenerateDCSConfigFile(const Char_t* fileName);
b15de2d2 81
b696414b 82 TArrayS GetSilentArray(UInt_t module, Bool_t treeSerial=kFALSE); // temporarily needed
e03405c9 83 TArrayS GetDeadArray(UInt_t module, Bool_t treeSerial=kFALSE);
84 TArrayS GetNoisyArray(UInt_t module, Bool_t treeSerial=kFALSE);
b696414b 85
60d9faf6 86 TArrayI GetDeadArrayOnline(UInt_t eq);
87 TArrayI GetNoisyArrayOnline(UInt_t eq);
53ae21ce 88
6727e2db 89 void PrintEqSummary();
b696414b 90 void PrintSilent() const; // silent = dead or inactive
6727e2db 91 void PrintDead() const;
92 void PrintNoisy() const;
53ae21ce 93
6727e2db 94 Bool_t SetDeadPixel(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t col, UInt_t row);
95 Bool_t SetNoisyPixel(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t col, UInt_t row);
96 Bool_t SetDeadPixelM(UInt_t module, UInt_t colM, UInt_t row);
53ae21ce 97 Bool_t SetNoisyPixelM(UInt_t module, UInt_t colM, UInt_t row);
6727e2db 98 Bool_t UnSetDeadPixel(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t col, UInt_t row);
99 Bool_t UnSetNoisyPixel(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t col, UInt_t row);
100 Bool_t UnSetDeadPixelM(UInt_t module, UInt_t colM, UInt_t row);
3479cee3 101 Bool_t UnSetNoisyPixelM(UInt_t module, UInt_t colM, UInt_t row);
6727e2db 102
478d804c 103 Bool_t IsPixelBad(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t col, UInt_t row) const;
b696414b 104 Bool_t IsPixelSilent(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t col, UInt_t row) const; // silent = dead or inactive
6727e2db 105 Bool_t IsPixelDead(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t col, UInt_t row) const;
106 Bool_t IsPixelNoisy(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t col, UInt_t row) const;
478d804c 107 Bool_t IsPixelBadM(UInt_t module, UInt_t colM, UInt_t row) const;
b696414b 108 Bool_t IsPixelSilentM(UInt_t module, UInt_t colM, UInt_t row) const;
6727e2db 109 Bool_t IsPixelDeadM(UInt_t module, UInt_t colM, UInt_t row) const;
110 Bool_t IsPixelNoisyM(UInt_t module, UInt_t colM, UInt_t row) const;
478d804c 111 Bool_t IsPixelBadKey(Int_t key) const;
b696414b 112 Bool_t IsPixelSilentKey(Int_t key) const;
6727e2db 113 Bool_t IsPixelDeadKey(Int_t key) const;
114 Bool_t IsPixelNoisyKey(Int_t key) const;
b15de2d2 115
478d804c 116 UInt_t GetNrBad() const; // bad = silent or noisy
b696414b 117 UInt_t GetNrSilent() const; // silent = dead or inactive
6727e2db 118 UInt_t GetNrDead() const;
478d804c 119 UInt_t GetDeadEqIdAt(UInt_t index) const;
120 UInt_t GetDeadHSAt(UInt_t index) const;
121 UInt_t GetDeadChipAt(UInt_t index) const;
122 UInt_t GetDeadColAt(UInt_t index) const;
123 UInt_t GetDeadRowAt(UInt_t index) const;
b696414b 124 UInt_t GetNrNoisy() const;
478d804c 125 UInt_t GetNoisyEqIdAt(UInt_t index) const;
126 UInt_t GetNoisyHSAt(UInt_t index) const;
127 UInt_t GetNoisyChipAt(UInt_t index) const;
128 UInt_t GetNoisyColAt(UInt_t index) const;
129 UInt_t GetNoisyRowAt(UInt_t index) const;
6727e2db 130
478d804c 131
132 UInt_t GetNrBad(UInt_t module) const; // bad = silent or noisy
b696414b 133 UInt_t GetNrSilent(UInt_t module) const; // silent = dead or inactive
6727e2db 134 UInt_t GetNrDead(UInt_t module) const;
bb292d31 135 UInt_t GetNrDeadSingle(UInt_t module) const;
478d804c 136 UInt_t GetDeadEqIdAt(UInt_t module,UInt_t index) const;
137 UInt_t GetDeadHSAt(UInt_t module,UInt_t index) const;
138 UInt_t GetDeadChipAt(UInt_t module,UInt_t index) const;
139 UInt_t GetDeadColAt(UInt_t module,UInt_t index) const;
140 UInt_t GetDeadRowAt(UInt_t module,UInt_t index) const;
b696414b 141 UInt_t GetNrNoisy(UInt_t module) const;
bb292d31 142 UInt_t GetNrNoisySingle(UInt_t module) const;
478d804c 143 UInt_t GetNoisyEqIdAt(UInt_t module, UInt_t index) const;
144 UInt_t GetNoisyHSAt(UInt_t module, UInt_t index) const;
145 UInt_t GetNoisyChipAt(UInt_t module, UInt_t index) const;
146 UInt_t GetNoisyColAt(UInt_t module, UInt_t index) const;
147 UInt_t GetNoisyRowAt(UInt_t module, UInt_t index) const;
53ae21ce 148
478d804c 149 UInt_t GetNrBadEq(UInt_t eq) const; // bad = silent or noisy
b696414b 150 UInt_t GetNrSilentEq(UInt_t eq) const; // silent = dead or inactive
6727e2db 151 UInt_t GetNrDeadEq(UInt_t eq) const;
6727e2db 152 UInt_t GetDeadEqIdAtEq(UInt_t eq, UInt_t index) const;
478d804c 153 UInt_t GetDeadHSAtEq(UInt_t eq, UInt_t index) const;
154 UInt_t GetDeadChipAtEq(UInt_t eq, UInt_t index) const;
155 UInt_t GetDeadColAtEq(UInt_t eq, UInt_t index) const;
156 UInt_t GetDeadRowAtEq(UInt_t eq, UInt_t index) const;
b696414b 157 UInt_t GetNrNoisyEq(UInt_t eq) const;
158 UInt_t GetNoisyEqIdAtEq(UInt_t eq, UInt_t index) const;
478d804c 159 UInt_t GetNoisyHSAtEq(UInt_t eq, UInt_t index) const;
160 UInt_t GetNoisyChipAtEq(UInt_t eq, UInt_t index) const;
161 UInt_t GetNoisyColAtEq(UInt_t eq, UInt_t index) const;
162 UInt_t GetNoisyRowAtEq(UInt_t eq, UInt_t index) const;
6727e2db 163
478d804c 164 UInt_t GetNrBadC(UInt_t eq, UInt_t hs, UInt_t chip) const; // bad = silent or noisy
b696414b 165 UInt_t GetNrSilentC(UInt_t eq, UInt_t hs, UInt_t chip) const; // silent = dead or inactive
6727e2db 166 UInt_t GetNrDeadC(UInt_t eq, UInt_t hs, UInt_t chip) const;
6727e2db 167 UInt_t GetDeadEqIdAtC(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t index) const;
6727e2db 168 UInt_t GetDeadHSAtC(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t index) const;
6727e2db 169 UInt_t GetDeadChipAtC(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t index) const;
6727e2db 170 UInt_t GetDeadColAtC(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t index) const;
6727e2db 171 UInt_t GetDeadRowAtC(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t index) const;
b696414b 172 UInt_t GetNrNoisyC(UInt_t eq, UInt_t hs, UInt_t chip) const;
173 UInt_t GetNoisyEqIdAtC(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t index) const;
174 UInt_t GetNoisyHSAtC(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t index) const;
175 UInt_t GetNoisyChipAtC(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t index) const;
176 UInt_t GetNoisyColAtC(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t index) const;
6727e2db 177 UInt_t GetNoisyRowAtC(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t index) const;
178
179 const Char_t* GetDeadPixelAsTextC(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t index) const;
180 const Char_t* GetNoisyPixelAsTextC(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t index) const;
181
478d804c 182 void ActivateALL();
183 void ActivateEq(UInt_t eq, Bool_t setval = kTRUE);
184 void ActivateHS(UInt_t eq, UInt_t hs, Bool_t setval = kTRUE);
185 void ActivateChip(UInt_t eq, UInt_t hs, UInt_t chip, Bool_t setval = kTRUE);
186
187 void UnSetDeadALL();
188 void SetDeadEq(UInt_t eq, Bool_t setval = kTRUE);
189 void SetDeadHS(UInt_t eq, UInt_t hs, Bool_t setval = kTRUE);
190 void SetDeadChip(UInt_t eq, UInt_t hs, UInt_t chip, Bool_t setval = kTRUE);
191
192 Bool_t IsActiveEq(UInt_t eq) const;
193 Bool_t IsActiveHS(UInt_t eq, UInt_t hs) const;
194 Bool_t IsActiveChip(UInt_t eq, UInt_t hs, UInt_t chip) const;
195
196 Bool_t IsDeadEq(UInt_t eq) const;
197 Bool_t IsDeadHS(UInt_t eq, UInt_t hs) const;
198 Bool_t IsDeadChip(UInt_t eq, UInt_t hs, UInt_t chip) const;
b696414b 199
478d804c 200 Bool_t IsSilentEq(UInt_t eq) const;
201 Bool_t IsSilentHS(UInt_t eq, UInt_t hs) const;
202 Bool_t IsSilentChip(UInt_t eq, UInt_t hs, UInt_t chip) const;
b696414b 203
204
205 UInt_t AddSilentFrom(AliITSOnlineCalibrationSPDhandler* other);
6727e2db 206 UInt_t AddDeadFrom(AliITSOnlineCalibrationSPDhandler* other);
207 UInt_t AddNoisyFrom(AliITSOnlineCalibrationSPDhandler* other);
b15de2d2 208
53ae21ce 209 UInt_t GetNrDiff(AliITSOnlineCalibrationSPDhandler* other) const;
b696414b 210 UInt_t GetNrSilentDiff(AliITSOnlineCalibrationSPDhandler* other) const;
53ae21ce 211 UInt_t GetNrDeadDiff(AliITSOnlineCalibrationSPDhandler* other) const;
212 UInt_t GetNrNoisyDiff(AliITSOnlineCalibrationSPDhandler* other) const;
213 AliITSOnlineCalibrationSPDhandler* GetDiff(AliITSOnlineCalibrationSPDhandler* other) const;
b696414b 214 AliITSOnlineCalibrationSPDhandler* GetSilentDiff(AliITSOnlineCalibrationSPDhandler* other) const;
53ae21ce 215 AliITSOnlineCalibrationSPDhandler* GetDeadDiff(AliITSOnlineCalibrationSPDhandler* other) const;
216 AliITSOnlineCalibrationSPDhandler* GetNoisyDiff(AliITSOnlineCalibrationSPDhandler* other) const;
217
218
b15de2d2 219 private:
6727e2db 220 TString fFileLocation; // location (dir) of files to read and write from
221 AliITSIntMap* fDeadPixelMap[1200]; // lists of dead pixels for each chip
222 AliITSIntMap* fNoisyPixelMap[1200]; // lists of noisy pixels for each chip
223 UInt_t fNrDead[1200]; // nr of dead pixels for each chip
224 UInt_t fNrNoisy[1200]; // nr of noisy pixels for each chip
b696414b 225 Bool_t fActiveEq[20]; // active bit for each equipment
226 Bool_t fActiveHS[20][6]; // active bit for each half-stave
227 Bool_t fActiveChip[20][6][10]; // active bit for each chip
478d804c 228 Bool_t fDeadEq[20]; // dead bit for each equipment
229 Bool_t fDeadHS[20][6]; // dead bit for each half-stave
230 Bool_t fDeadChip[20][6][10]; // dead bit for each chip
b696414b 231
6727e2db 232 Int_t GetKey(UInt_t eq, UInt_t hs, UInt_t chip, UInt_t col, UInt_t row) const
233 {return eq*6*10*32*256 + hs*10*32*256 + chip*32*256 + col*256 + row;}
53ae21ce 234 UInt_t GetEqIdFromKey(Int_t key) const
235 {return key/(6*10*32*256);}
236 UInt_t GetHSFromKey(Int_t key) const
237 {return (key%(6*10*32*256))/(10*32*256);}
238 UInt_t GetChipFromKey(Int_t key) const
239 {return ((key%(6*10*32*256))%(10*32*256))/(32*256);}
240 UInt_t GetColFromKey(Int_t key) const
241 {return (((key%(6*10*32*256))%(10*32*256))%(32*256))/256;}
242 UInt_t GetRowFromKey(Int_t key) const
243 {return (((key%(6*10*32*256))%(10*32*256))%(32*256))%256;}
244 UInt_t GetModuleFromKey(Int_t key) const
6727e2db 245 {return AliITSRawStreamSPD::GetOfflineModuleFromOnline(GetEqIdFromKey(key),GetHSFromKey(key),GetChipFromKey(key));}
53ae21ce 246 UInt_t GetColMFromKey(Int_t key) const
6727e2db 247 {return AliITSRawStreamSPD::GetOfflineColFromOnline(GetEqIdFromKey(key),GetHSFromKey(key),GetChipFromKey(key),GetColFromKey(key));}
248 UInt_t GetRowMFromKey(Int_t key) const
249 {return AliITSRawStreamSPD::GetOfflineRowFromOnline(GetEqIdFromKey(key),GetHSFromKey(key),GetChipFromKey(key),GetRowFromKey(key));}
250
b696414b 251 UInt_t GetGloChip(UInt_t eq, UInt_t hs, UInt_t chip) const {return eq*60 + hs*10 + chip;}
252 UInt_t GetEqGlo(UInt_t gloChip) const {return gloChip/60;}
253 UInt_t GetHSGlo(UInt_t gloChip) const {return (gloChip%60)/10;}
254 UInt_t GetChipGlo(UInt_t gloChip) const {return (gloChip%60)%10;}
6727e2db 255
478d804c 256 void GetChipAndIndexDead(UInt_t module, UInt_t index, UInt_t& gloChip, UInt_t& chipIndex) const;
257 void GetChipAndIndexNoisy(UInt_t module, UInt_t index, UInt_t& gloChip, UInt_t& chipIndex) const;
258 void GetChipAndIndexEqDead(UInt_t eq, UInt_t index, UInt_t& gloChip, UInt_t& chipIndex) const;
259 void GetChipAndIndexEqNoisy(UInt_t eq, UInt_t index, UInt_t& gloChip, UInt_t& chipIndex) const;
260 void GetChipAndIndexTotDead(UInt_t index, UInt_t& gloChip, UInt_t& chipIndex) const;
261 void GetChipAndIndexTotNoisy(UInt_t index, UInt_t& gloChip, UInt_t& chipIndex) const;
6727e2db 262
263 UInt_t GetEqIdFromOffline(UInt_t module) const;
264 UInt_t GetHSFromOffline(UInt_t module) const;
265 UInt_t GetChipFromOffline(UInt_t module, UInt_t colM) const;
266 UInt_t GetColFromOffline(UInt_t module, UInt_t colM) const;
267 UInt_t GetRowFromOffline(UInt_t module, UInt_t rowM) const;
268
269 void RecursiveInsertDead(AliITSCalibrationSPD* calibSPD, UInt_t module, Int_t lowInd, Int_t highInd);
270 void RecursiveInsertNoisy(AliITSCalibrationSPD* calibSPD, UInt_t module, Int_t lowInd, Int_t highInd);
271
272 UInt_t GetNrDeadC2(UInt_t gloChip) const;
6727e2db 273 UInt_t GetDeadEqIdAtC2(UInt_t gloChip, UInt_t index) const;
6727e2db 274 UInt_t GetDeadHSAtC2(UInt_t gloChip, UInt_t index) const;
6727e2db 275 UInt_t GetDeadChipAtC2(UInt_t gloChip, UInt_t index) const;
6727e2db 276 UInt_t GetDeadColAtC2(UInt_t gloChip, UInt_t index) const;
6727e2db 277 UInt_t GetDeadRowAtC2(UInt_t gloChip, UInt_t index) const;
b696414b 278 UInt_t GetNrNoisyC2(UInt_t gloChip) const;
279 UInt_t GetNoisyEqIdAtC2(UInt_t gloChip, UInt_t index) const;
280 UInt_t GetNoisyHSAtC2(UInt_t gloChip, UInt_t index) const;
281 UInt_t GetNoisyChipAtC2(UInt_t gloChip, UInt_t index) const;
282 UInt_t GetNoisyColAtC2(UInt_t gloChip, UInt_t index) const;
6727e2db 283 UInt_t GetNoisyRowAtC2(UInt_t gloChip, UInt_t index) const;
b15de2d2 284
285};
286
287#endif