]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliQAv1.cxx
modification(by Levente) to solve the problem in the QA mentioned in the bug report...
[u/mrichter/AliRoot.git] / STEER / AliQAv1.cxx
CommitLineData
4e25ac79 1
2/**************************************************************************
3 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * *
5 * Author: The ALICE Off-line Project. *
6 * Contributors are mentioned in the code where appropriate. *
7 * *
8 * Permission to use, copy, modify and distribute this software and its *
9 * documentation strictly for non-commercial purposes is hereby granted *
10 * without fee, provided that the above copyright notice appears in all *
11 * copies and that both the copyright notice and this permission notice *
12 * appear in the supporting documentation. The authors make no claims *
13 * about the suitability of this software for any purpose. It is *
14 * provided "as is" without express or implied warranty. *
15 **************************************************************************/
16/* $Id: AliQAv1.cxx 31503 2009-03-16 11:01:16Z schutz $ */
17
18//////////////////////////////////////////////////////////////////////////////
19//
20// Quality Assurance Object//_________________________________________________________________________
21// Quality Assurance object. The QA status is held in one word per detector,
22// each bit corresponds to a different status.
23// bit 0-3 : QA raised during simulation (RAW)
24// bit 4-7 : QA raised during simulation (SIM)
25// bit 8-11 : QA raised during reconstruction (REC)
26// bit 12-15 : QA raised during ESD checking (ESD)
27// bit 16-19 : QA raised during analysis (ANA)
28// Each of the 4 bits corresponds to a severity level of increasing importance
29// from lower to higher bit (INFO, WARNING, ERROR, FATAL)
30//
31//*-- Yves Schutz CERN, July 2007
32//////////////////////////////////////////////////////////////////////////////
33
34
35#include <cstdlib>
36// --- ROOT system ---
34709735 37#include <TClass.h>
4e25ac79 38#include <TFile.h>
6188eeaf 39#include <TH1.h>
4e25ac79 40#include <TSystem.h>
41#include <TROOT.h>
42
43// --- Standard library ---
44
45// --- AliRoot header files ---
46#include "AliLog.h"
47#include "AliQAv1.h"
48
49
50ClassImp(AliQAv1)
49466ea2 51AliQAv1 * AliQAv1::fgQA = 0x0 ;
52TFile * AliQAv1::fgQADataFile = 0x0 ;
53TString AliQAv1::fgQADataFileName = "QA" ; // will transform into Det.QA.run.root
54TFile * AliQAv1::fgQARefFile = 0x0 ;
55TString AliQAv1::fgQARefDirName = "" ;
56TString AliQAv1::fgQARefFileName = "QA.root" ;
57TFile * AliQAv1::fgQAResultFile = 0x0 ;
58TString AliQAv1::fgQAResultDirName = "" ;
59TString AliQAv1::fgQAResultFileName = "QA.root" ;
60TString AliQAv1::fgDetNames[] = {"ITS", "TPC", "TRD", "TOF", "PHOS", "HMPID", "EMCAL", "MUON", "FMD",
61 "ZDC", "PMD", "T0", "VZERO", "ACORDE", "HLT", "Global", "CORR"} ;
62TString AliQAv1::fgGRPPath = "GRP/GRP/Data" ;
63TString AliQAv1::fgTaskNames[] = {"Raws", "Hits", "SDigits", "Digits", "DigitsR", "RecPoints", "TrackSegments", "RecParticles", "ESDs"} ;
5aae1dab 64TString AliQAv1::fgModeNames[] = {"", "Sim", "Rec", "QA"} ;
49466ea2 65const TString AliQAv1::fgkLabLocalFile = "file://" ;
66const TString AliQAv1::fgkLabLocalOCDB = "local://" ;
67const TString AliQAv1::fgkLabAliEnOCDB = "alien://" ;
68const TString AliQAv1::fgkRefFileName = "QA.root" ;
69const TString AliQAv1::fgkQAName = "QA" ;
70const TString AliQAv1::fgkQACorrNtName = "CorrQA" ;
71const TString AliQAv1::fgkRefOCDBDirName = "QA" ;
72TString AliQAv1::fgRefDataDirName = "" ;
73const TString AliQAv1::fgkQARefOCDBDefault = "alien://folder=/alice/QA/20" ;
74const TString AliQAv1::fgkExpert = "Expert" ;
ecc8c39d 75const UInt_t AliQAv1::fgkExpertBit = BIT(19);
76const UInt_t AliQAv1::fgkQABit = BIT(20) ;
77const UInt_t AliQAv1::fgkImageBit = BIT(21) ;
49466ea2 78const Int_t AliQAv1::fgkQADebugLevel = 99 ;
79const TString AliQAv1::fImageFileName = "QAImage" ;
99737f39 80const TString AliQAv1::fImageFileFormat = "ps" ;
49466ea2 81const UShort_t AliQAv1::fgkMaxQAObjects = 10000 ;
fec0891b 82
4e25ac79 83//____________________________________________________________________________
84AliQAv1::AliQAv1() :
85 TNamed("", ""),
86 fNdet(kNDET),
87 fNEventSpecies(AliRecoParam::kNSpecies),
88 fLengthQA(fNdet*fNEventSpecies),
89 fQA(new ULong_t[fLengthQA]),
90 fDet(kNULLDET),
91 fTask(kNULLTASK),
92 fEventSpecie(AliRecoParam::kDefault),
93 fEventSpecies(new Bool_t[fNEventSpecies])
94{
95 // default constructor
96 memset(fQA,0,fLengthQA*sizeof(ULong_t));
97 memset(fEventSpecies,kFALSE,fNEventSpecies*sizeof(Bool_t));
98}
99
100//____________________________________________________________________________
101AliQAv1::AliQAv1(const AliQAv1& qa) :
102 TNamed(qa),
103 fNdet(qa.fNdet),
104 fNEventSpecies(qa.fNEventSpecies),
105 fLengthQA(qa.fLengthQA),
106 fQA(new ULong_t[fLengthQA]),
107 fDet(qa.fDet),
108 fTask(qa.fTask),
109 fEventSpecie(qa.fEventSpecie),
110 fEventSpecies(new Bool_t[fNEventSpecies])
111{
112 // cpy ctor
113 memcpy(fQA,qa.fQA,fLengthQA*sizeof(ULong_t));
114 memcpy(fEventSpecies,qa.fEventSpecies,fNEventSpecies*sizeof(Bool_t));
115}
116
117//_____________________________________________________________________________
118AliQAv1& AliQAv1::operator = (const AliQAv1& qa)
119{
120 // assignment operator
121 if(&qa != this) {
122 TNamed::operator=(qa);
123 fNdet = qa.fNdet;
124 fNEventSpecies = qa.fNEventSpecies;
125 fLengthQA = qa.fLengthQA;
126
127 if(fQA) delete [] fQA;
128 fQA = new ULong_t[fLengthQA];
129 memcpy(fQA,qa.fQA,fLengthQA*sizeof(ULong_t));
130
131 fDet = qa.fDet;
132 fTask = qa.fTask;
133 fEventSpecie = qa.fEventSpecie;
134 if(fEventSpecies) delete [] fEventSpecies;
135 fEventSpecies = new Bool_t[fNEventSpecies];
136 memcpy(fEventSpecies,qa.fEventSpecies,fNEventSpecies*sizeof(Bool_t));
137 }
138 return *this;
139}
140
141//_______________________________________________________________
142AliQAv1::AliQAv1(const Int_t qalength, ULong_t * qa, const Int_t eslength, Bool_t * es) :
143TNamed("QA", "Quality Assurance status"),
144fNdet(kNDET),
145fNEventSpecies(eslength),
146fLengthQA(qalength),
147fQA(new ULong_t[fLengthQA]),
148fDet(kNULLDET),
149fTask(kNULLTASK),
150fEventSpecie(AliRecoParam::kDefault),
151fEventSpecies(new Bool_t[fNEventSpecies])
152{
153 // constructor to be used
154 memcpy(fQA, qa, fLengthQA*sizeof(ULong_t));
155 memcpy(fEventSpecies, es, fNEventSpecies*sizeof(Bool_t));
156}
157
158//_______________________________________________________________
159AliQAv1::AliQAv1(const DETECTORINDEX_t det) :
160 TNamed("QA", "Quality Assurance status"),
161 fNdet(kNDET),
162 fNEventSpecies(AliRecoParam::kNSpecies),
163 fLengthQA(fNdet*fNEventSpecies),
164 fQA(new ULong_t[fLengthQA]),
165 fDet(det),
166 fTask(kNULLTASK),
167 fEventSpecie(AliRecoParam::kDefault),
168 fEventSpecies(new Bool_t[fNEventSpecies])
169{
170 // constructor to be used
171 if (! CheckRange(det) ) fDet = kNULLDET ;
172 memset(fQA,0,fLengthQA*sizeof(ULong_t));
173 memset(fEventSpecies,kFALSE,fNEventSpecies*sizeof(Bool_t));
174}
175
176//_______________________________________________________________
177AliQAv1::AliQAv1(const ALITASK_t tsk) :
178 TNamed("QA", "Quality Assurance status"),
179 fNdet(kNDET),
180 fNEventSpecies(AliRecoParam::kNSpecies),
181 fLengthQA(fNdet*fNEventSpecies),
182 fQA(new ULong_t[fLengthQA]),
183 fDet(kNULLDET),
184 fTask(tsk),
185 fEventSpecie(AliRecoParam::kDefault),
186 fEventSpecies(new Bool_t[fNEventSpecies])
187{
188 // constructor to be used in the AliRoot module (SIM, REC, ESD or ANA)
189 if (! CheckRange(tsk) ) fTask = kNULLTASK ;
190 memset(fQA,0,fLengthQA*sizeof(ULong_t));
191 memset(fEventSpecies,kFALSE,fNEventSpecies*sizeof(Bool_t));
192}
193
194//____________________________________________________________________________
195AliQAv1::~AliQAv1()
196{
197 // dtor
198 delete [] fQA;
199 delete [] fEventSpecies;
200}
201
202//_______________________________________________________________
203void AliQAv1::Close()
204{
205 // close the open files
206 if (fgQADataFile)
207 if (fgQADataFile->IsOpen())
208 fgQADataFile->Close() ;
209 if (fgQAResultFile)
210 if (fgQAResultFile->IsOpen())
211 fgQAResultFile->Close() ;
212 if (fgQARefFile)
213 if (fgQARefFile->IsOpen())
214 fgQARefFile->Close() ;
215}
216
217//_______________________________________________________________
218Bool_t AliQAv1::CheckFatal() const
219{
220 // check if any FATAL status is set
221 Bool_t rv = kFALSE ;
222 Int_t index ;
223 for (index = 0; index < kNDET ; index++)
224 rv = rv || IsSet(DETECTORINDEX_t(index), fTask, fEventSpecie, kFATAL) ;
225 return rv ;
226}
227
228//_______________________________________________________________
229Bool_t AliQAv1::CheckRange(DETECTORINDEX_t det) const
230{
231 // check if detector is in given detector range: 0-kNDET
232
233 Bool_t rv = ( det < 0 || det > kNDET ) ? kFALSE : kTRUE ;
234 if (!rv)
235 AliFatal(Form("Detector index %d is out of range: 0 <= index <= %d", det, kNDET)) ;
236 return rv ;
237}
238
239//_______________________________________________________________
240Bool_t AliQAv1::CheckRange(ALITASK_t task) const
241{
242 // check if task is given taskk range: 0:kNTASK
243 Bool_t rv = ( task < kRAW || task > kNTASK ) ? kFALSE : kTRUE ;
244 if (!rv)
245 AliFatal(Form("Module index %d is out of range: 0 <= index <= %d", task, kNTASK)) ;
246 return rv ;
247}
248
249//_______________________________________________________________
250Bool_t AliQAv1::CheckRange(QABIT_t bit) const
251{
252 // check if bit is in given bit range: 0-kNBit
253
254 Bool_t rv = ( bit < 0 || bit > kNBIT ) ? kFALSE : kTRUE ;
255 if (!rv)
256 AliFatal(Form("Status bit %d is out of range: 0 <= bit <= %d", bit, kNBIT)) ;
257 return rv ;
258}
259
260//_______________________________________________________________
261Bool_t AliQAv1::CheckRange(AliRecoParam::EventSpecie_t es) const
262{
263 // check if bit is in given bit range: 0-kNBit
264 Bool_t rv = kFALSE ;
265 switch (es) {
266 case AliRecoParam::kDefault:
267 rv = kTRUE ;
268 break ;
269 case AliRecoParam::kLowMult:
270 rv = kTRUE ;
271 break ;
272 case AliRecoParam::kHighMult:
273 rv = kTRUE ;
274 break ;
275 case AliRecoParam::kCosmic:
276 rv = kTRUE ;
277 break ;
278 case AliRecoParam::kCalib:
279 rv = kTRUE ;
280 break ;
281 }
282 if (!rv)
283 AliFatal(Form("Event Specie %d is not valid", es)) ;
284 return rv ;
285}
286
287//_______________________________________________________________
288const char * AliQAv1::GetAliTaskName(ALITASK_t tsk)
289{
290 // returns the char name corresponding to module index
4e25ac79 291 switch (tsk) {
292 case kNULLTASK:
293 break ;
294 case kRAW:
86017bd8 295 return "RAW" ;
4e25ac79 296 break ;
297 case kSIM:
86017bd8 298 return "SIM" ;
4e25ac79 299 break ;
300 case kREC:
86017bd8 301 return "REC" ;
4e25ac79 302 break ;
303 case kESD:
86017bd8 304 return "ESD" ;
4e25ac79 305 break ;
306 case kANA:
86017bd8 307 return "ANA" ;
4e25ac79 308 break ;
309 default:
86017bd8 310 return "" ;
4e25ac79 311 break ;
312 }
86017bd8 313 return "" ;
4e25ac79 314}
315
316//_______________________________________________________________
317const char * AliQAv1::GetBitName(QABIT_t bit) const
318{
319 // returns the char name corresponding to bit
320 TString bitName ;
321 switch (bit) {
322 case kNULLBit:
f31c45c9 323 bitName = "NONE" ;
4e25ac79 324 break ;
325 case kINFO:
326 bitName = "INFO" ;
327 break ;
328 case kWARNING:
329 bitName = "WARNING" ;
330 break ;
331 case kERROR:
332 bitName = "ERROR" ;
333 break ;
334 case kFATAL:
335 bitName = "FATAL" ;
336 break ;
337 default:
338 bit = kNULLBit ;
339 break ;
340 }
341 return bitName.Data() ;
342}
343
6188eeaf 344//_______________________________________________________________
345TH1 * AliQAv1::GetData(TObjArray** list, Int_t index, AliRecoParam::EventSpecie_t eventSpecie)
346{
347 // retrieve QA data from the list at a given index and for a given event specie
348 TH1 * rv = NULL ;
349 Int_t esindex = AliRecoParam::AConvert(eventSpecie) ;
350 TObjArray * arr = list[esindex] ;
351 if (arr) {
352 if ( index > AliQAv1::GetMaxQAObj() ) {
353 AliErrorClass(Form("Max number of authorized QA objects is %d", AliQAv1::GetMaxQAObj())) ;
354 } else {
355 if ( arr->At(index) ) {
356 rv = static_cast<TH1*>(arr->At(index)) ;
357 }
358 }
359 }
360 return rv ;
361}
362
4e25ac79 363//_______________________________________________________________
364AliQAv1::DETECTORINDEX_t AliQAv1::GetDetIndex(const char * name)
365{
366 // returns the detector index corresponding to a given name
367 TString sname(name) ;
368 DETECTORINDEX_t rv = kNULLDET ;
369 for (Int_t det = 0; det < kNDET ; det++) {
370 if ( GetDetName(det) == sname ) {
371 rv = DETECTORINDEX_t(det) ;
372 break ;
373 }
374 }
375 return rv ;
376}
377
378//_______________________________________________________________
379const char * AliQAv1::GetDetName(Int_t det)
380{
381 // returns the detector name corresponding to a given index (needed in a loop)
382
383 if ( det >= 0 && det < kNDET)
384 return (fgDetNames[det]).Data() ;
385 else
386 return NULL ;
387}
388
389//_______________________________________________________________
390TFile * AliQAv1::GetQADataFile(const char * name, Int_t run)
391{
392 // opens the file to store the detectors Quality Assurance Data Maker results
393 const char * temp = Form("%s.%s.%d.root", name, fgQADataFileName.Data(), run) ;
394 TString opt ;
395 if (! fgQADataFile ) {
396 if (gSystem->AccessPathName(temp))
397 opt = "NEW" ;
398 else
399 opt = "UPDATE" ;
400 fgQADataFile = TFile::Open(temp, opt.Data()) ;
401 } else {
402 if ( strcmp(temp, fgQADataFile->GetName()) != 0 ) {
eca4fa66 403 fgQADataFile = static_cast<TFile *>(gROOT->FindObject(temp)) ;
4e25ac79 404 if ( !fgQADataFile ) {
eca4fa66 405 if (gSystem->AccessPathName(temp))
406 opt = "NEW" ;
407 else
408 opt = "UPDATE" ;
4e25ac79 409 fgQADataFile = TFile::Open(temp, opt.Data()) ;
410 }
411 }
412 }
413 return fgQADataFile ;
414}
415
634696f5 416//_____________________________________________________________________________
417AliQAv1::MODE_t AliQAv1::Mode(TASKINDEX_t task) {
418 // return "rec" or "sim" depending on the task
419
420 switch (task) {
421 case AliQAv1::kRAWS:
422 return kRECMODE ;
423 break;
424 case AliQAv1::kHITS:
425 return kSIMMODE ;
426 break;
427 case AliQAv1::kSDIGITS:
428 return kSIMMODE ;
429 break;
430 case AliQAv1::kDIGITS:
431 return kSIMMODE ;
432 break;
433 case AliQAv1::kDIGITSR:
434 return kRECMODE ;
435 break;
436 case AliQAv1::kRECPOINTS:
437 return kRECMODE ;
438 break ;
439 case AliQAv1::kTRACKSEGMENTS:
440 return kRECMODE ;
441 break;
442 case AliQAv1::kRECPARTICLES:
443 return kRECMODE ;
444 break;
445 case AliQAv1::kESDS:
446 return kRECMODE ;
447 break;
448 default:
449 break;
450 }
0f0c06de 451 return AliQAv1::kNULLMODE;
634696f5 452}
453
4e25ac79 454//_____________________________________________________________________________
455TFile * AliQAv1::GetQADataFile(const char * fileName)
456{
457 // Open if necessary the Data file and return its pointer
458
cf5fddb1 459 if (!fgQADataFile) {
460 if (!fileName)
461 fileName = AliQAv1::GetQADataFileName() ;
462 if (!gSystem->AccessPathName(fileName)) {
463 fgQADataFile = TFile::Open(fileName) ;
464 } else {
465 AliFatalClass(Form("File %s not found", fileName)) ;
466 }
467 }
4e25ac79 468 return fgQADataFile ;
469}
470
471//_______________________________________________________________
472TFile * AliQAv1::GetQAResultFile()
473{
f31c45c9 474 // opens the file to store the Quality Assurance Data Checker results
a04582a1 475 if (fgQAResultFile) {
476 if (fgQAResultFile->IsOpen())
86017bd8 477 fgQAResultFile->Close();
a04582a1 478 delete fgQAResultFile;
3136db6f 479 }
3136db6f 480 TString dirName(fgQAResultDirName) ;
481 if ( dirName.Contains(fgkLabLocalFile))
482 dirName.ReplaceAll(fgkLabLocalFile, "") ;
483 TString fileName(dirName + fgQAResultFileName) ;
484 TString opt("") ;
485 if ( !gSystem->AccessPathName(fileName) )
486 opt = "UPDATE" ;
487 else {
488 if ( gSystem->AccessPathName(dirName) )
489 gSystem->mkdir(dirName) ;
490 opt = "NEW" ;
491 }
492 fgQAResultFile = TFile::Open(fileName, opt) ;
a04582a1 493 return fgQAResultFile ;
4e25ac79 494}
495
f31c45c9 496//_______________________________________________________________
ecb7b7f9 497AliQAv1::QABIT_t AliQAv1::GetQAStatusBit(AliRecoParam::EventSpecie_t es, DETECTORINDEX_t det, ALITASK_t tsk) const
f31c45c9 498{
499 // returns the QA bit set
500 QABIT_t rv = kNULLBit ;
501 if ( es == AliRecoParam::kDefault)
502 es = fEventSpecie ;
503 if ( det == kNULLDET )
504 det = fDet ;
505 if ( tsk == kNULLTASK )
506 tsk = fTask ;
507 for (Int_t bit = kINFO ; bit < kNBIT ; bit++) {
508 if (IsSet(det, tsk, es, QABIT_t(bit)))
509 rv = QABIT_t(bit) ;
510 }
511 return rv ;
512}
513
4e25ac79 514//_______________________________________________________________
515AliQAv1::TASKINDEX_t AliQAv1::GetTaskIndex(const char * name)
516{
517 // returns the detector index corresponding to a given name
518 TString sname(name) ;
519 TASKINDEX_t rv = kNULLTASKINDEX ;
520 for (Int_t tsk = 0; tsk < kNTASKINDEX ; tsk++) {
521 if ( GetTaskName(tsk) == sname ) {
522 rv = TASKINDEX_t(tsk) ;
523 break ;
524 }
525 }
526 return rv ;
527}
528
529//_______________________________________________________________
530Bool_t AliQAv1::IsSet(DETECTORINDEX_t det, ALITASK_t tsk, Int_t ies, QABIT_t bit) const
531{
532 // Checks is the requested bit is set
533
534 const AliRecoParam::EventSpecie_t es = AliRecoParam::Convert(ies) ;
535 return IsSet(det, tsk, es, bit) ;
536
537}
538
539//_______________________________________________________________
540Bool_t AliQAv1::IsSet(DETECTORINDEX_t det, ALITASK_t tsk, AliRecoParam::EventSpecie_t es, QABIT_t bit) const
541{
542 // Checks is the requested bit is set
543
544 CheckRange(det) ;
545 CheckRange(tsk) ;
546 CheckRange(bit) ;
547 CheckRange(es) ;
548
549 ULong_t offset = Offset(tsk) ;
550 ULong_t status = GetStatus(det, es) ;
551 offset+= bit ;
552 status = (status & 1 << offset) != 0 ;
553 return status ;
554}
555
556//_______________________________________________________________
557Bool_t AliQAv1::IsSetAny(DETECTORINDEX_t det, ALITASK_t tsk, AliRecoParam::EventSpecie_t es) const
558{
559 // Checks is the requested bit is set
560
561 CheckRange(det) ;
562 CheckRange(tsk) ;
563 CheckRange(es) ;
564
565 ULong_t offset = Offset(tsk) ;
566 ULong_t status = GetStatus(det, es) ;
567 ULong_t st = 0 ;
568 for ( Int_t bit = 0 ; bit < kNBIT ; bit++) {
569 offset+= bit ;
570 st += (status & 1 << offset) != 0 ;
571 }
572 if ( st == 0 )
573 return kFALSE ;
574 else
575 return kTRUE ;
576}
577//_______________________________________________________________
578Bool_t AliQAv1::IsSetAny(DETECTORINDEX_t det, AliRecoParam::EventSpecie_t es) const
579{
580 // Checks is the requested bit is set
581
582 CheckRange(det) ;
583 CheckRange(es) ;
584
585 ULong_t status = GetStatus(det, es) ;
586 ULong_t st = 0 ;
587 for ( Int_t tsk = 0 ; tsk < kNTASK ; tsk++) {
588 ULong_t offset = Offset(ALITASK_t(tsk)) ;
589 for ( Int_t bit = 0 ; bit < kNBIT ; bit++) {
590 offset+= bit ;
591 st += (status & 1 << offset) != 0 ;
592 }
593 }
594 if ( st == 0 )
595 return kFALSE ;
596 else
597 return kTRUE ;
598}
599
600//_______________________________________________________________
601AliQAv1 * AliQAv1::Instance()
602{
603 // Get an instance of the singleton. The only authorized way to call the ctor
604
605 if ( ! fgQA) {
a04582a1 606 GetQAResultFile() ;
607 fgQA = static_cast<AliQAv1 *>(fgQAResultFile->Get("QA")) ;
4e25ac79 608 if ( ! fgQA )
609 fgQA = new AliQAv1() ;
eca4fa66 610 }
4e25ac79 611 return fgQA ;
612}
613
614//_______________________________________________________________
615AliQAv1 * AliQAv1::Instance(const Int_t qalength, ULong_t * qa, const Int_t eslength, Bool_t * es)
616{
617 // Get an instance of the singleton. The only authorized way to call the ctor
618
619 if ( ! fgQA)
620 fgQA = new AliQAv1(qalength, qa, eslength, es) ;
621 return fgQA ;
622}
623
624//_______________________________________________________________
625AliQAv1 * AliQAv1::Instance(const DETECTORINDEX_t det)
626{
627 // Get an instance of the singleton. The only authorized way to call the ctor
628
629 if ( ! fgQA) {
a04582a1 630 GetQAResultFile() ;
631 fgQA = static_cast<AliQAv1 *>(fgQAResultFile->Get(GetQAName())) ;
4e25ac79 632 if ( ! fgQA )
eca4fa66 633 fgQA = new AliQAv1(det) ;
4e25ac79 634 }
635 fgQA->Set(det) ;
636 return fgQA ;
637}
638
639//_______________________________________________________________
640AliQAv1 * AliQAv1::Instance(const ALITASK_t tsk)
641{
642 // Get an instance of the singleton. The only authorized way to call the ctor
643
644 if ( ! fgQA)
645 switch (tsk) {
646 case kNULLTASK:
647 break ;
648 case kRAW:
649 fgQA = new AliQAv1(tsk) ;
650 break ;
651 case kSIM:
652 fgQA = new AliQAv1(tsk) ;
653 break ;
654 case kREC:
34709735 655 AliInfoClass("fgQA = gAlice->GetQA()") ;
4e25ac79 656 break ;
657 case kESD:
eca4fa66 658 AliInfoClass("fgQA = static_cast<AliQAv1 *> (esdFile->Get(\"QA\")") ;
4e25ac79 659 break ;
660 case kANA:
eca4fa66 661 AliInfoClass("fgQA = static_cast<AliQAv1 *> (esdFile->Get(\"QA\")") ;
4e25ac79 662 break ;
663 case kNTASK:
664 break ;
665 }
666 if (fgQA)
667 fgQA->Set(tsk) ;
668 return fgQA ;
669}
670
671//_______________________________________________________________
672AliQAv1 * AliQAv1::Instance(const TASKINDEX_t tsk)
673{
674 // get an instance of the singleton.
675
676 ALITASK_t index = kNULLTASK ;
677
678 if ( tsk == kRAWS )
679 index = kRAW ;
680 else if (tsk < kDIGITS)
681 index = kSIM ;
682 else if (tsk < kRECPARTICLES)
683 index = kREC ;
684 else if (tsk == kESDS)
685 index = kESD ;
686
687 return Instance(index) ;
688}
689
690//_______________________________________________________________
691void AliQAv1::Merge(TCollection * list) {
692 // Merge the QA resuls in the list into this single AliQAv1 object
693
694 for (Int_t det = 0 ; det < kNDET ; det++) {
695 Set(DETECTORINDEX_t(det)) ;
696 for (Int_t task = 0 ; task < kNTASK ; task++) {
697 Set(ALITASK_t(task)) ;
698 for (Int_t bit = 0 ; bit < kNBIT ; bit++) {
699 TIter next(list) ;
700 AliQAv1 * qa ;
701 while ( (qa = (AliQAv1*)next() ) ) {
702 for (Int_t es = 0 ; es < fNEventSpecies ; es++) {
703 if (qa->IsSet(DETECTORINDEX_t(det), ALITASK_t(task), es, QABIT_t(bit)))
704 Set(QABIT_t(bit), es) ;
705 }
706 } // qa list
707 } // bit
708 } // task
709 } // detector
710}
711
712//_______________________________________________________________
713ULong_t AliQAv1::Offset(ALITASK_t tsk) const
714{
715 // Calculates the bit offset for a given module (SIM, REC, ESD, ANA)
716
717 CheckRange(tsk) ;
718
719 ULong_t offset = 0 ;
720 switch (tsk) {
721 case kNULLTASK:
722 break ;
723 case kRAW:
724 offset+= 0 ;
725 break ;
726 case kSIM:
727 offset+= 4 ;
728 break ;
729 case kREC:
730 offset+= 8 ;
731 break ;
732 case kESD:
733 offset+= 12 ;
734 break ;
735 case kANA:
736 offset+= 16 ;
737 break ;
738 case kNTASK:
739 break ;
740 }
741
742 return offset ;
743}
744
b872fee3 745//_______________________________________________________________
746void AliQAv1::Reset(DETECTORINDEX_t det, ALITASK_t tsk, AliRecoParam::EventSpecie_t es)
747{
748 // resets all the bits for a given tsk and event specie
749 CheckRange(det) ;
750 CheckRange(tsk) ;
751 CheckRange(es) ;
752
753 ULong_t offset = Offset(tsk) ;
754 ULong_t status = GetStatus(det, es) ;
755 for ( Int_t bit = 0 ; bit < kNBIT ; bit++) {
756 offset+= bit ;
757 status = status & ~1 << offset ;
758 }
759 SetStatus(det, es, status) ;
760}
761
4e25ac79 762//_______________________________________________________________
763void AliQAv1::ResetStatus(DETECTORINDEX_t det)
764{
765 // reset the status of det for all event specie
766 for (Int_t es = 0 ; es < fNEventSpecies ; es++)
767 fQA[det*fNdet+es] = 0 ;
768}
769
770//_______________________________________________________________
771void AliQAv1::Set(QABIT_t bit, Int_t ies)
772{
773 // Set the status bit of the current detector in the current module and for the current event specie
774 Set(bit, AliRecoParam::Convert(ies)) ;
775}
776
777//_______________________________________________________________
778void AliQAv1::Set(QABIT_t bit, AliRecoParam::EventSpecie_t es)
779{
780 // Set the status bit of the current detector in the current module and for the current event specie
781
782 SetStatusBit(fDet, fTask, es, bit) ;
783}
784
785//_____________________________________________________________________________
786void AliQAv1::SetQARefStorage(const char * name)
787{
788 // Set the root directory where the QA reference data are stored
789
790 fgQARefDirName = name ;
791 if ( fgQARefDirName.Contains(fgkLabLocalFile) )
792 fgQARefFileName = fgkRefFileName ;
793 else if ( fgQARefDirName.Contains(fgkLabLocalOCDB) )
794 fgQARefFileName = fgkQAName ;
795 else if ( fgQARefDirName.Contains(fgkLabAliEnOCDB) )
796 fgQARefFileName = fgkQAName ;
797
798 else {
34709735 799 AliErrorClass(Form("ERROR: %s is an invalid storage definition\n", name)) ;
4e25ac79 800 fgQARefDirName = "" ;
801 fgQARefFileName = "" ;
802 }
803 TString tmp(fgQARefDirName) ; // + fgQARefFileName) ;
34709735 804 AliInfoClass(Form("AliQAv1::SetQARefDir: QA references are in %s\n", tmp.Data() )) ;
4e25ac79 805}
806
807//_____________________________________________________________________________
808void AliQAv1::SetQAResultDirName(const char * name)
809{
810 // Set the root directory where to store the QA status object
811
812 fgQAResultDirName.Prepend(name) ;
34709735 813 AliInfoClass(Form("AliQAv1::SetQAResultDirName: QA results are in %s\n", fgQAResultDirName.Data())) ;
4e25ac79 814 if ( fgQAResultDirName.Contains(fgkLabLocalFile))
815 fgQAResultDirName.ReplaceAll(fgkLabLocalFile, "") ;
816 fgQAResultFileName.Prepend(fgQAResultDirName) ;
817}
818
819//_______________________________________________________________
820void AliQAv1::SetStatusBit(DETECTORINDEX_t det, ALITASK_t tsk, AliRecoParam::EventSpecie_t es, QABIT_t bit)
821{
822 // Set the status bit for a given detector and a given task
823
824 CheckRange(det) ;
825 CheckRange(tsk) ;
826 CheckRange(bit) ;
827 CheckRange(es) ;
b872fee3 828
829 Reset(det, tsk, es) ;
830
4e25ac79 831 ULong_t offset = Offset(tsk) ;
832 ULong_t status = GetStatus(det, es) ;
833 offset+= bit ;
834 status = status | 1 << offset ;
835 SetStatus(det, es, status) ;
836}
837
838//_______________________________________________________________
839void AliQAv1::Show(DETECTORINDEX_t det) const
840{
841 // dispplay the QA status word
842 if ( det == kNULLDET)
843 det = fDet ;
844 for (Int_t ies = 0 ; ies < fNEventSpecies ; ies++) {
eca4fa66 845 if ( IsEventSpecieSet(ies) )
846 ShowStatus(det, kNULLTASK, AliRecoParam::ConvertIndex(ies)) ;
4e25ac79 847 }
848}
849
850//_______________________________________________________________
851void AliQAv1::ShowAll() const
852{
853 // dispplay the QA status word
854 Int_t index ;
855 for (index = 0 ; index < kNDET ; index++) {
856 for (Int_t tsk = kRAW ; tsk < kNTASK ; tsk++) {
857 for (Int_t ies = 0 ; ies < fNEventSpecies ; ies++) {
eca4fa66 858 if ( IsEventSpecieSet(ies) )
859 ShowStatus(DETECTORINDEX_t(index), ALITASK_t(tsk), AliRecoParam::ConvertIndex(ies)) ;
4e25ac79 860 }
861 }
862 }
863}
864
865//_______________________________________________________________
866void AliQAv1::ShowStatus(DETECTORINDEX_t det, ALITASK_t tsk, AliRecoParam::EventSpecie_t es) const
867{
868 // Prints the full QA status of a given detector
869 CheckRange(det) ;
870 CheckRange(es) ;
871 ULong_t status = GetStatus(det, es) ;
872 ULong_t tskStatus[kNTASK] ;
873 tskStatus[kRAW] = status & 0x0000f ;
874 tskStatus[kSIM] = status & 0x000f0 ;
875 tskStatus[kREC] = status & 0x00f00 ;
876 tskStatus[kESD] = status & 0x0f000 ;
877 tskStatus[kANA] = status & 0xf0000 ;
878
879 AliInfo(Form("====> QA Status for %8s %8s raw =0x%x, sim=0x%x, rec=0x%x, esd=0x%x, ana=0x%x", GetDetName(det).Data(), AliRecoParam::GetEventSpecieName(es),
880 tskStatus[kRAW], tskStatus[kSIM], tskStatus[kREC], tskStatus[kESD], tskStatus[kANA] )) ;
881 if (tsk == kNULLTASK) {
882 for (Int_t itsk = kRAW ; itsk < kNTASK ; itsk++) {
883 ShowASCIIStatus(es, det, ALITASK_t(itsk), tskStatus[itsk]) ;
884 }
885 } else {
886 ShowASCIIStatus(es, det, tsk, tskStatus[tsk]) ;
887 }
888}
889
890//_______________________________________________________________
891void AliQAv1::ShowASCIIStatus(AliRecoParam::EventSpecie_t es, DETECTORINDEX_t det, ALITASK_t tsk, const ULong_t status) const
892{
893 // print the QA status in human readable format
86017bd8 894 const QABIT_t bit = GetQAStatusBit(es, det, tsk) ;
f31c45c9 895 if ( bit != kNULLBit ) {
86017bd8 896 AliInfoClass(Form(" %8s %8s %4s \n", AliRecoParam::GetEventSpecieName(es), GetDetName(det).Data(), GetAliTaskName(tsk))) ;
de402dc0 897 AliInfoClass(Form(" %8s %8s %4s 0x%4lx, Problem signalled: %8s \n", AliRecoParam::GetEventSpecieName(es), GetDetName(det).Data(), GetAliTaskName(tsk), status, GetBitName(bit))) ;
f31c45c9 898 }
4e25ac79 899}
900
901//_______________________________________________________________
902void AliQAv1::UnSet(QABIT_t bit, Int_t ies)
903{
904 // UnSet the status bit of the current detector in the current module
905 UnSet(bit, AliRecoParam::Convert(ies)) ;
906}
907
908//_______________________________________________________________
909void AliQAv1::UnSet(QABIT_t bit, AliRecoParam::EventSpecie_t es)
910{
911 // UnSet the status bit of the current detector in the current module
912
913 UnSetStatusBit(fDet, fTask, es, bit) ;
914}
915
916//_______________________________________________________________
917void AliQAv1::UnSetStatusBit(DETECTORINDEX_t det, ALITASK_t tsk, AliRecoParam::EventSpecie_t es, QABIT_t bit)
918{
919 // UnSet the status bit for a given detector and a given task
920
921 CheckRange(det) ;
922 CheckRange(tsk) ;
923 CheckRange(bit) ;
924 CheckRange(es) ;
925
926 ULong_t offset = Offset(tsk) ;
927 ULong_t status = GetStatus(det, es) ;
928 offset+= bit ;
929 status = status & 0 << offset ;
930 SetStatus(det, es, status) ;
931}