]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONPadStatusMaker.cxx
Fix bug in WriteLocalMasks, use same iteration as in ReadLocalMasks
[u/mrichter/AliRoot.git] / MUON / AliMUONPadStatusMaker.cxx
CommitLineData
2c780493 1/**************************************************************************
2* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3* *
4* Author: The ALICE Off-line Project. *
5* Contributors are mentioned in the code where appropriate. *
6* *
7* Permission to use, copy, modify and distribute this software and its *
8* documentation strictly for non-commercial purposes is hereby granted *
9* without fee, provided that the above copyright notice appears in all *
10* copies and that both the copyright notice and this permission notice *
11* appear in the supporting documentation. The authors make no claims *
12* about the suitability of this software for any purpose. It is *
13* provided "as is" without express or implied warranty. *
14**************************************************************************/
15
16// $Id$
78649106 17
3d1463c8 18//-----------------------------------------------------------------------------
2c780493 19/// \class AliMUONPadStatusMaker
20///
21/// Make a 2DStore of pad statuses, using different sources of information,
22/// like pedestal values, gain values, and HV values.
23///
78649106 24/// \author Laurent Aphecetche
3d1463c8 25//-----------------------------------------------------------------------------
2c780493 26
27#include "AliMUONPadStatusMaker.h"
28
29#include "AliMUON2DMap.h"
9044498f 30#include "AliMUON2DStoreValidator.h"
31#include "AliMUONCalibParamNI.h"
2c780493 32#include "AliMUONCalibrationData.h"
411a502a 33#include "AliMUONLogger.h"
34#include "AliMUONRecoParam.h"
49e396d9 35#include "AliMUONStringIntMap.h"
7eafe398 36#include "AliMUONTrackerData.h"
411a502a 37#include "AliMUONVCalibParam.h"
2ce1c72b 38
2c780493 39#include "AliMpArea.h"
49e396d9 40#include "AliMpArrayI.h"
411a502a 41#include "AliMpCDB.h"
8d8e920c 42#include "AliMpConstants.h"
49e396d9 43#include "AliMpDDLStore.h"
2c780493 44#include "AliMpDEManager.h"
49e396d9 45#include "AliMpDetElement.h"
49e110ec 46#include "AliMpDCSNamer.h"
411a502a 47#include "AliMpManuIterator.h"
49e396d9 48#include "AliMpManuUID.h"
2ce1c72b 49
50#include "AliCDBEntry.h"
51#include "AliCDBManager.h"
52#include "AliCodeTimer.h"
53#include "AliDCSValue.h"
54#include "AliLog.h"
55
9044498f 56#include <Riostream.h>
49e396d9 57#include <TArrayI.h>
58#include <TExMap.h>
004a9ccd 59#include <TFile.h>
60#include <TKey.h>
9044498f 61#include <TMap.h>
004a9ccd 62#include <TROOT.h>
9044498f 63#include <TString.h>
004a9ccd 64#include <TSystem.h>
2c780493 65
78649106 66/// \cond CLASSIMP
2c780493 67ClassImp(AliMUONPadStatusMaker)
78649106 68/// \endcond
2c780493 69
70//_____________________________________________________________________________
71AliMUONPadStatusMaker::AliMUONPadStatusMaker(const AliMUONCalibrationData& calibData)
72dae9ff 72: fkCalibrationData(calibData),
004a9ccd 73fGainA1Limits(0,1E30),
74fGainA2Limits(-1E-30,1E30),
75fGainThresLimits(0,4095),
76fHVSt12Limits(0,5000),
77fHVSt345Limits(0,5000),
78fPedMeanLimits(0,4095),
79fPedSigmaLimits(0,4095),
7eafe398 80fManuOccupancyLimits(0,1.0),
411a502a 81fBuspatchOccupancyLimits(0,1.0),
7eafe398 82fDEOccupancyLimits(0,1.0),
004a9ccd 83fStatus(new AliMUON2DMap(true)),
00977a64 84fHV(0x0),
004a9ccd 85fPedestals(calibData.Pedestals()),
86fGains(calibData.Gains()),
7eafe398 87fTrackerData(0x0)
2c780493 88{
004a9ccd 89 /// ctor
7eafe398 90 if ( calibData.OccupancyMap() )
004a9ccd 91 {
7eafe398 92 /// create a tracker data from the occupancy map
93 fTrackerData = new AliMUONTrackerData("OCC","OCC",*(calibData.OccupancyMap()));
411a502a 94 }
00977a64 95 if ( calibData.HV() )
96 {
97 /// Only create the fHV internal store if there are some HV values available
98 fHV = new TExMap;
99 }
2c780493 100}
101
102//_____________________________________________________________________________
103AliMUONPadStatusMaker::~AliMUONPadStatusMaker()
104{
71a2d3aa 105 /// dtor.
411a502a 106
49e396d9 107 delete fStatus;
108 delete fHV;
7eafe398 109 delete fTrackerData;
2c780493 110}
111
112//_____________________________________________________________________________
49e396d9 113TString
114AliMUONPadStatusMaker::AsString(Int_t status)
2c780493 115{
49e396d9 116 /// return a human readable version of the integer status
004a9ccd 117
659e1281 118 if ( status == 0 )
119 {
120 return "Brave New World";
121 }
122
49e396d9 123 Int_t pedStatus;
124 Int_t gainStatus;
125 Int_t hvStatus;
7eafe398 126 Int_t occStatus;
004a9ccd 127
7eafe398 128 DecodeStatus(status,pedStatus,hvStatus,gainStatus,occStatus);
004a9ccd 129
130 TString s;
131
132 if ( pedStatus & kPedMeanZero ) s += "& Ped Mean is Zero ";
133 if ( pedStatus & kPedMeanTooLow ) s += "& Ped Mean Too Low ";
134 if ( pedStatus & kPedMeanTooHigh ) s += "& Ped Mean Too High ";
135 if ( pedStatus & kPedSigmaTooLow ) s += "& Ped Sigma Too Low ";
136 if ( pedStatus & kPedSigmaTooHigh ) s += "& Ped Sigma Too High ";
137 if ( pedStatus & kPedMissing ) s += "& Ped is missing ";
138
139 if ( gainStatus & kGainA1TooLow ) s+="& Gain A1 is Too Low ";
140 if ( gainStatus & kGainA1TooHigh ) s+="& Gain A1 is Too High ";
141 if ( gainStatus & kGainA2TooLow ) s+="& Gain A2 is Too Low ";
142 if ( gainStatus & kGainA2TooHigh ) s+="& Gain A2 is Too High ";
143 if ( gainStatus & kGainThresTooLow ) s+="& Gain Thres is Too Low ";
144 if ( gainStatus & kGainThresTooHigh ) s+="& Gain Thres is Too High ";
145 if ( gainStatus & kGainMissing ) s+="& Gain is missing ";
146
147 if ( hvStatus & kHVError ) s+="& HV is on error ";
148 if ( hvStatus & kHVTooLow ) s+="& HV is Too Low ";
149 if ( hvStatus & kHVTooHigh ) s+="& HV is Too High ";
150 if ( hvStatus & kHVChannelOFF ) s+="& HV has channel OFF ";
151 if ( hvStatus & kHVSwitchOFF ) s+="& HV has switch OFF ";
152 if ( hvStatus & kHVMissing ) s+="& HV is missing ";
153
7eafe398 154 if ( occStatus & kManuOccupancyTooHigh ) s+="& manu occupancy too high ";
155 if ( occStatus & kManuOccupancyTooLow ) s+="& manu occupancy too low ";
156 if ( occStatus & kBusPatchOccupancyTooHigh ) s+="& bus patch occupancy too high ";
157 if ( occStatus & kBusPatchOccupancyTooLow ) s+="& bus patch occupancy too low ";
158 if ( occStatus & kDEOccupancyTooHigh ) s+="& DE occupancy too high ";
159 if ( occStatus & kDEOccupancyTooLow ) s+="& DE occupancy too low ";
49e396d9 160
004a9ccd 161 if ( s[0] == '&' ) s[0] = ' ';
162
163 return s;
164}
49e396d9 165
004a9ccd 166//_____________________________________________________________________________
167TString
168AliMUONPadStatusMaker::AsCondition(Int_t mask)
169{
170 /// return a human readable version of the mask's equivalent condition
171
172 TString s(AsString(mask));
173
174 s.ReplaceAll("&","|");
175
49e396d9 176 return s;
2c780493 177}
178
96199305 179//_____________________________________________________________________________
49e396d9 180Int_t
181AliMUONPadStatusMaker::BuildStatus(Int_t pedStatus,
182 Int_t hvStatus,
004a9ccd 183 Int_t gainStatus,
7eafe398 184 Int_t occStatus)
96199305 185{
49e396d9 186 /// Build a complete status from specific parts (ped,hv,gain)
8d8e920c 187
49e396d9 188 return ( hvStatus & 0xFF ) | ( ( pedStatus & 0xFF ) << 8 ) |
004a9ccd 189 ( ( gainStatus & 0xFF ) << 16 ) |
7eafe398 190 ( ( occStatus & 0xFF ) << 24 ) ;
49e396d9 191}
192
193//_____________________________________________________________________________
194void
195AliMUONPadStatusMaker::DecodeStatus(Int_t status,
196 Int_t& pedStatus,
197 Int_t& hvStatus,
004a9ccd 198 Int_t& gainStatus,
7eafe398 199 Int_t& occStatus)
49e396d9 200{
201 /// Decode complete status into specific parts (ped,hv,gain)
96199305 202
7eafe398 203 occStatus = ( status & 0xFF000000 ) >> 24;
49e396d9 204 gainStatus = ( status & 0xFF0000 ) >> 16;
205 pedStatus = ( status & 0xFF00 ) >> 8;
206 hvStatus = (status & 0xFF);
96199305 207}
208
2c780493 209//_____________________________________________________________________________
210Bool_t
49e396d9 211AliMUONPadStatusMaker::HVSt12Status(Int_t detElemId, Int_t sector,
212 Bool_t& hvChannelTooLow,
213 Bool_t& hvChannelTooHigh,
214 Bool_t& hvChannelON) const
2c780493 215{
216 /// Get HV status for one HV sector of St12
217
218 /// For a given PCB in a given DE, get the HV status (both the channel
219 /// and the switch).
220 /// Returns false if hv switch changed during the run.
221
99c136e1 222 AliCodeTimerAuto("",0)
49e396d9 223
00977a64 224 if (!fHV) return kFALSE;
225
2c780493 226 Bool_t error = kFALSE;
227 hvChannelTooLow = kFALSE;
228 hvChannelTooHigh = kFALSE;
229 hvChannelON = kTRUE;
49e396d9 230
49e110ec 231 AliMpDCSNamer hvNamer("TRACKER");
2c780493 232
49e110ec 233 TString hvChannel(hvNamer.DCSChannelName(detElemId,sector));
2c780493 234
72dae9ff 235 TMap* hvMap = fkCalibrationData.HV();
49e396d9 236 TPair* hvPair = static_cast<TPair*>(hvMap->FindObject(hvChannel.Data()));
2c780493 237 if (!hvPair)
238 {
239 AliError(Form("Did not find expected alias (%s) for DE %d",
240 hvChannel.Data(),detElemId));
241 error = kTRUE;
242 }
243 else
244 {
245 TObjArray* values = static_cast<TObjArray*>(hvPair->Value());
246 if (!values)
247 {
248 AliError(Form("Could not get values for alias %s",hvChannel.Data()));
249 error = kTRUE;
250 }
251 else
252 {
253 // find out min and max value, and makes a cut
254 Float_t hvMin(1E9);
255 Float_t hvMax(0);
256 TIter next(values);
257 AliDCSValue* val;
258
259 while ( ( val = static_cast<AliDCSValue*>(next()) ) )
260 {
261 Float_t hv = val->GetFloat();
262 hvMin = TMath::Min(hv,hvMin);
263 hvMax = TMath::Max(hv,hvMax);
264 }
265
266 float lowThreshold = fHVSt12Limits.X();
267 float highThreshold = fHVSt12Limits.Y();
268
269 if ( hvMin < lowThreshold ) hvChannelTooLow = kTRUE;
270 if ( hvMax > highThreshold ) hvChannelTooHigh = kTRUE;
271 if ( hvMin < 1 ) hvChannelON = kFALSE;
272 }
273 }
274
275 return error;
276}
277
ca913045 278//_____________________________________________________________________________
279Float_t
280AliMUONPadStatusMaker::SwitchValue(const TObjArray& dcsArray)
281{
282 /// Loop over the dcs value for a single switch to decide whether
283 /// we should consider it on or off
284
285 // we'll count the number of ON/OFF for this pad, to insure
286 // consistency (i.e. if status changed during the run, we should
287 // at least notify this fact ;-) and hope it's not the norm)
288 Int_t nTrue(0);
289 Int_t nFalse(0);
290 TIter next(&dcsArray);
291 AliDCSValue* val;
292
293 while ( ( val = static_cast<AliDCSValue*>(next()) ) )
294 {
295 if ( val->GetBool() )
296 {
297 ++nTrue;
298 }
299 else
300 {
301 ++nFalse;
302 }
303 }
304
305 if ( (nTrue>0 && nFalse>0) )
306 {
307 // change of state during the run, consider it off
308 return 0.0;
309 }
310
311 if ( nFalse )
312 {
313 /// switch = FALSE means the HV was flowding up to the PCB.
314 /// i.e. switch = FALSE = ON
315 return 1.0;
316 }
317
318 return 0.0;
319}
320
2c780493 321//_____________________________________________________________________________
322Bool_t
49e396d9 323AliMUONPadStatusMaker::HVSt345Status(Int_t detElemId, Int_t pcbIndex,
324 Bool_t& hvChannelTooLow,
325 Bool_t& hvChannelTooHigh,
326 Bool_t& hvChannelON,
327 Bool_t& hvSwitchON) const
2c780493 328{
329 /// For a given PCB in a given DE, get the HV status (both the channel
330 /// and the switch).
331 /// Returns false if something goes wrong (in particular if
332 /// hv switch changed during the run).
333
99c136e1 334 AliCodeTimerAuto("",0)
49e396d9 335
00977a64 336 if (!fHV) return kFALSE;
337
2c780493 338 Bool_t error = kFALSE;
339 hvChannelTooLow = kFALSE;
340 hvChannelTooHigh = kFALSE;
341 hvSwitchON = kTRUE;
342 hvChannelON = kTRUE;
343
49e110ec 344 AliMpDCSNamer hvNamer("TRACKER");
2c780493 345
49e110ec 346 TString hvChannel(hvNamer.DCSChannelName(detElemId));
2c780493 347
72dae9ff 348 TMap* hvMap = fkCalibrationData.HV();
49e396d9 349
350 TPair* hvPair = static_cast<TPair*>(hvMap->FindObject(hvChannel.Data()));
2c780493 351 if (!hvPair)
352 {
353 AliError(Form("Did not find expected alias (%s) for DE %d",
354 hvChannel.Data(),detElemId));
355 error = kTRUE;
356 }
357 else
358 {
359 TObjArray* values = static_cast<TObjArray*>(hvPair->Value());
360 if (!values)
361 {
362 AliError(Form("Could not get values for alias %s",hvChannel.Data()));
363 error = kTRUE;
364 }
365 else
366 {
367 // find out min and max value, and makes a cut
368 Float_t hvMin(1E9);
369 Float_t hvMax(0);
370 TIter next(values);
371 AliDCSValue* val;
372
373 while ( ( val = static_cast<AliDCSValue*>(next()) ) )
374 {
375 Float_t hv = val->GetFloat();
376 hvMin = TMath::Min(hv,hvMin);
377 hvMax = TMath::Max(hv,hvMax);
378 }
379
380 float lowThreshold = fHVSt345Limits.X();
381 float highThreshold = fHVSt345Limits.Y();
382
383 if ( hvMin < lowThreshold ) hvChannelTooLow = kTRUE;
49e396d9 384 else if ( hvMax > highThreshold ) hvChannelTooHigh = kTRUE;
2c780493 385 if ( hvMin < 1 ) hvChannelON = kFALSE;
386 }
387 }
388
49e110ec 389 TString hvSwitch(hvNamer.DCSSwitchName(detElemId,pcbIndex));
49e396d9 390 TPair* switchPair = static_cast<TPair*>(hvMap->FindObject(hvSwitch.Data()));
2c780493 391 if (!switchPair)
392 {
393 AliError(Form("Did not find expected alias (%s) for DE %d PCB %d",
394 hvSwitch.Data(),detElemId,pcbIndex));
395 error = kTRUE;
396 }
397 else
398 {
399 TObjArray* values = static_cast<TObjArray*>(switchPair->Value());
400 if (!values)
401 {
402 AliError(Form("Could not get values for alias %s",hvSwitch.Data()));
403 error = kTRUE;
404 }
405 else
406 {
ca913045 407 Float_t sv = SwitchValue(*values);
408 if ( sv < 0.99 ) hvSwitchON = kFALSE;
2c780493 409 }
410 }
411 return error;
412}
413
414//_____________________________________________________________________________
49e396d9 415Int_t
416AliMUONPadStatusMaker::HVStatus(Int_t detElemId, Int_t manuId) const
2c780493 417{
49e396d9 418 /// Get HV status of one manu
2c780493 419
99c136e1 420 AliCodeTimerAuto("",0)
2c780493 421
00977a64 422 if ( !fHV ) return kMissing;
49e396d9 423
424 Long_t lint = fHV->GetValue(AliMpManuUID::BuildUniqueID(detElemId,manuId));
2c780493 425
49e396d9 426 if ( lint )
427 {
428 return (Int_t)(lint - 1);
429 }
430
431 Int_t status(0);
2c780493 432
49e110ec 433 AliMpDCSNamer hvNamer("TRACKER");
2c780493 434
49e396d9 435 switch ( AliMpDEManager::GetStationType(detElemId) )
2c780493 436 {
4e51cfd2 437 case AliMp::kStation12:
2c780493 438 {
49e396d9 439 int sector = hvNamer.ManuId2Sector(detElemId,manuId);
440 if ( sector >= 0 )
2c780493 441 {
49e396d9 442 Bool_t hvChannelTooLow, hvChannelTooHigh, hvChannelON;
443 Bool_t error = HVSt12Status(detElemId,sector,
444 hvChannelTooLow,
445 hvChannelTooHigh,
446 hvChannelON);
447 if ( error ) status |= kHVError;
448 if ( hvChannelTooLow ) status |= kHVTooLow;
449 if ( hvChannelTooHigh ) status |= kHVTooHigh;
450 if ( !hvChannelON ) status |= kHVChannelOFF;
451 // assign this status to all the other manus handled by the same HV channel
452 SetHVStatus(detElemId,sector,status);
453 }
454 }
455 break;
456 case AliMp::kStation345:
457 {
458 int pcbIndex = hvNamer.ManuId2PCBIndex(detElemId,manuId);
459 if ( pcbIndex >= 0 )
460 {
461 Bool_t hvChannelTooLow, hvChannelTooHigh, hvChannelON,hvSwitchON;
462 Bool_t error = HVSt345Status(detElemId,pcbIndex,
463 hvChannelTooLow,hvChannelTooHigh,
464 hvChannelON,hvSwitchON);
465 if ( error ) status |= kHVError;
466 if ( hvChannelTooLow ) status |= kHVTooLow;
467 if ( hvChannelTooHigh ) status |= kHVTooHigh;
468 if ( !hvSwitchON ) status |= kHVSwitchOFF;
469 if ( !hvChannelON) status |= kHVChannelOFF;
470 // assign this status to all the other manus handled by the same HV channel
471 SetHVStatus(detElemId,pcbIndex,status);
2c780493 472 }
2c780493 473 }
49e396d9 474 break;
475 default:
476 break;
2c780493 477 }
478
49e396d9 479 return status;
480}
481
482//_____________________________________________________________________________
483AliMUONVCalibParam*
484AliMUONPadStatusMaker::Neighbours(Int_t detElemId, Int_t manuId) const
485{
486 /// Get the neighbours parameters for a given manu
72dae9ff 487 AliMUONVStore* neighbourStore = fkCalibrationData.Neighbours();
49e396d9 488 return static_cast<AliMUONVCalibParam*>(neighbourStore->FindObject(detElemId,manuId));
2c780493 489}
490
491//_____________________________________________________________________________
8d8e920c 492AliMUONVStore*
49e396d9 493AliMUONPadStatusMaker::NeighboursStore() const
2c780493 494{
49e396d9 495 /// Return the store containing all the neighbours
72dae9ff 496 return fkCalibrationData.Neighbours();
49e396d9 497}
498
499//_____________________________________________________________________________
500AliMUONVCalibParam*
501AliMUONPadStatusMaker::ComputeStatus(Int_t detElemId, Int_t manuId) const
502{
503 /// Compute the status of a given manu, using all available information,
504 /// i.e. pedestals, gains, and HV
2c780493 505
49e396d9 506 AliMUONVCalibParam* param = new AliMUONCalibParamNI(1,AliMpConstants::ManuNofChannels(),detElemId,manuId,-1);
507 fStatus->Add(param);
004a9ccd 508
49e396d9 509 AliMUONVCalibParam* pedestals = static_cast<AliMUONVCalibParam*>(fPedestals->FindObject(detElemId,manuId));
510
511 AliMUONVCalibParam* gains = static_cast<AliMUONVCalibParam*>(fGains->FindObject(detElemId,manuId));
2c780493 512
49e396d9 513 Int_t hvStatus = HVStatus(detElemId,manuId);
514
7eafe398 515 Int_t occStatus = OccupancyStatus(detElemId,manuId);
2c780493 516
49e396d9 517 for ( Int_t manuChannel = 0; manuChannel < param->Size(); ++manuChannel )
2c780493 518 {
49e396d9 519 Int_t pedStatus(0);
520
521 if (pedestals)
2c780493 522 {
49e396d9 523 Float_t pedMean = pedestals->ValueAsFloatFast(manuChannel,0);
524 Float_t pedSigma = pedestals->ValueAsFloatFast(manuChannel,1);
525 if ( pedMean < fPedMeanLimits.X() ) pedStatus |= kPedMeanTooLow;
526 else if ( pedMean > fPedMeanLimits.Y() ) pedStatus |= kPedMeanTooHigh;
527 if ( pedSigma < fPedSigmaLimits.X() ) pedStatus |= kPedSigmaTooLow;
528 else if ( pedSigma > fPedSigmaLimits.Y() ) pedStatus |= kPedSigmaTooHigh;
529 if ( pedMean == 0 ) pedStatus |= kPedMeanZero;
530 }
531 else
532 {
533 pedStatus = kPedMissing;
534 }
535
536 Int_t gainStatus(0);
537
538 if ( gains )
539 {
540 Float_t a0 = gains->ValueAsFloatFast(manuChannel,0);
541 Float_t a1 = gains->ValueAsFloatFast(manuChannel,1);
542 Float_t thres = gains->ValueAsFloatFast(manuChannel,2);
543
004a9ccd 544 if ( a0 < fGainA1Limits.X() ) gainStatus |= kGainA1TooLow;
545 else if ( a0 > fGainA1Limits.Y() ) gainStatus |= kGainA1TooHigh;
546 if ( a1 < fGainA2Limits.X() ) gainStatus |= kGainA2TooLow;
547 else if ( a1 > fGainA2Limits.Y() ) gainStatus |= kGainA2TooHigh;
49e396d9 548 if ( thres < fGainThresLimits.X() ) gainStatus |= kGainThresTooLow;
549 else if ( thres > fGainThresLimits.Y() ) gainStatus |= kGainThresTooHigh;
2c780493 550 }
49e396d9 551 else
552 {
553 gainStatus = kGainMissing;
554 }
2b8a1212 555
7eafe398 556 Int_t status = BuildStatus(pedStatus,hvStatus,gainStatus,occStatus);
49e396d9 557
558 param->SetValueAsIntFast(manuChannel,0,status);
2c780493 559 }
560
49e396d9 561 return param;
2c780493 562}
563
004a9ccd 564//_____________________________________________________________________________
565Int_t
7eafe398 566AliMUONPadStatusMaker::OccupancyStatus(Int_t detElemId, Int_t manuId) const
004a9ccd 567{
568 /// Get the "other" status for a given manu
7eafe398 569
570 Int_t rv(0);
571
004a9ccd 572 if ( fTrackerData )
573 {
7eafe398 574 const Int_t occIndex = 2;
575
576 Double_t occ = fTrackerData->DetectionElement(detElemId,occIndex);
577
578 if ( occ <= fDEOccupancyLimits.X() )
579 {
580 rv |= kDEOccupancyTooLow;
581 }
582 else if ( occ > fDEOccupancyLimits.Y() )
004a9ccd 583 {
7eafe398 584 rv |= kDEOccupancyTooHigh;
004a9ccd 585 }
7eafe398 586
587 Int_t busPatchId = AliMpDDLStore::Instance()->GetBusPatchId(detElemId,manuId);
588
589 occ = fTrackerData->BusPatch(busPatchId,occIndex);
590
411a502a 591 if ( occ <= fBuspatchOccupancyLimits.X() )
7eafe398 592 {
593 rv |= kBusPatchOccupancyTooLow;
594 }
411a502a 595 else if ( occ > fBuspatchOccupancyLimits.Y() )
7eafe398 596 {
597 rv |= kBusPatchOccupancyTooHigh;
598 }
599
600 occ = fTrackerData->Manu(detElemId,manuId,occIndex);
601
602 if ( occ <= fManuOccupancyLimits.X() )
603 {
604 rv |= kManuOccupancyTooLow;
605 }
606 else if ( occ > fManuOccupancyLimits.Y() )
004a9ccd 607 {
7eafe398 608 rv |= kManuOccupancyTooHigh;
004a9ccd 609 }
610 }
7eafe398 611 return rv;
004a9ccd 612}
613
2c780493 614//_____________________________________________________________________________
49e396d9 615AliMUONVCalibParam*
616AliMUONPadStatusMaker::PadStatus(Int_t detElemId, Int_t manuId) const
2c780493 617{
004a9ccd 618 /// Get the status container for a given manu
2c780493 619
49e396d9 620 AliMUONVCalibParam* param = static_cast<AliMUONVCalibParam*>(fStatus->FindObject(detElemId,manuId));
621 if (!param)
96199305 622 {
49e396d9 623 // not already there, so compute it now
99c136e1 624 AliCodeTimerAuto("ComputeStatus",0);
49e396d9 625 param = ComputeStatus(detElemId,manuId);
96199305 626 }
49e396d9 627 return param;
2c780493 628}
629
630//_____________________________________________________________________________
49e396d9 631Int_t
632AliMUONPadStatusMaker::PadStatus(Int_t detElemId, Int_t manuId, Int_t manuChannel) const
2c780493 633{
49e396d9 634 /// Get the status for a given channel
2c780493 635
49e396d9 636 AliMUONVCalibParam* param = static_cast<AliMUONVCalibParam*>(fStatus->FindObject(detElemId,manuId));
637 if (!param)
2c780493 638 {
49e396d9 639 // not already there, so compute it now
640 param = ComputeStatus(detElemId,manuId);
641 }
642 return param->ValueAsInt(manuChannel,0);
2c780493 643}
644
645//_____________________________________________________________________________
646void
49e396d9 647AliMUONPadStatusMaker::SetHVStatus(Int_t detElemId, Int_t index, Int_t status) const
2c780493 648{
49e396d9 649 /// Assign status to all manus in a given HV "zone" (defined by index, meaning
650 /// is different thing from St12 and St345)
651
99c136e1 652 AliCodeTimerAuto("",0)
49e396d9 653
654 AliMpDetElement* de = AliMpDDLStore::Instance()->GetDetElement(detElemId);
2c780493 655
49e396d9 656 const AliMpArrayI* manus = de->ManusForHV(index);
2c780493 657
49e396d9 658 for ( Int_t i = 0; i < manus->GetSize(); ++ i )
2c780493 659 {
49e396d9 660 Int_t manuId = manus->GetValue(i);
661 fHV->Add(AliMpManuUID::BuildUniqueID(detElemId,manuId),status + 1);
2c780493 662 }
663}
411a502a 664
665//_____________________________________________________________________________
666void
667AliMUONPadStatusMaker::SetLimits(const AliMUONRecoParam& recoParams)
668{
669 /// Set the limits from the recoparam
670
671 SetHVSt12Limits(recoParams.HVSt12LowLimit(),recoParams.HVSt12HighLimit());
672 SetHVSt345Limits(recoParams.HVSt345LowLimit(),recoParams.HVSt345HighLimit());
673
674 SetPedMeanLimits(recoParams.PedMeanLowLimit(),recoParams.PedMeanHighLimit());
675 SetPedSigmaLimits(recoParams.PedSigmaLowLimit(),recoParams.PedSigmaHighLimit());
676
677 SetGainA1Limits(recoParams.GainA1LowLimit(),recoParams.GainA1HighLimit());
678 SetGainA2Limits(recoParams.GainA2LowLimit(),recoParams.GainA2HighLimit());
679 SetGainThresLimits(recoParams.GainThresLowLimit(),recoParams.GainThresHighLimit());
680
681 SetManuOccupancyLimits(recoParams.ManuOccupancyLowLimit(),recoParams.ManuOccupancyHighLimit());
682 SetBuspatchOccupancyLimits(recoParams.BuspatchOccupancyLowLimit(),recoParams.BuspatchOccupancyHighLimit());
683 SetDEOccupancyLimits(recoParams.DEOccupancyLowLimit(),recoParams.DEOccupancyHighLimit());
684}
685
686//_____________________________________________________________________________
687void
688AliMUONPadStatusMaker::Report(UInt_t mask)
689{
690 /// Report the number of bad pads, according to the mask,
691 /// and the various reasons why they are bad (with occurence rates)
692
693 AliInfo("");
99c136e1 694 AliCodeTimerAuto("",0);
411a502a 695
696 AliMUONLogger log(1064008);
697
698 Int_t nBadPads(0);
699 Int_t nPads(0);
700
701 AliMpManuIterator it;
702
703 Int_t detElemId, manuId;
704
705 while ( it.Next(detElemId,manuId) )
706 {
707 AliMpDetElement* de = AliMpDDLStore::Instance()->GetDetElement(detElemId);
708
709 for ( Int_t i = 0; i < AliMpConstants::ManuNofChannels(); ++i )
710 {
711 if ( de->IsConnectedChannel(manuId,i) )
712 {
713 ++nPads;
714
715 Int_t status = PadStatus(detElemId,manuId,i);
716
659e1281 717 if ( mask && ( status & mask) ) // note that if mask == 0, all pads are good...
411a502a 718 {
719 ++nBadPads;
720 log.Log(AsString(status));
721 }
722 }
723 }
724 }
725
726 TString msg;
727 Int_t ntimes;
728
729 cout << Form("According to mask %x (human readable form below) %6d pads are bad (over a total of %6d, i.e. %7.2f %%)",
730 mask,nBadPads,nPads,nPads ? nBadPads*100.0/nPads : 0.0) << endl;
731 cout << AliMUONPadStatusMaker::AsCondition(mask) << endl;
732 cout << "--------" << endl;
733
734 while ( log.Next(msg,ntimes) )
735 {
736 cout << Form("The message (%120s) occured %15d times (%7.4f %%)",msg.Data(),ntimes,ntimes*100.0/nPads) << endl;
737 }
738
739}
740