]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ACORDE/AliACORDEQAChecker.cxx
Fix of ACORDE-QAChecker
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEQAChecker.cxx
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 //  Checks the quality assurance for ACORDE. 
17 //  Default implementation
18 //  Authors:
19 //      Mario Rodriguez Cahuantzi <mrodrigu@mail.cern.ch> (FCFM-BUAP) 
20 //      Luciano Diaz Gonzalez <luciano.diaz@nucleares.unam.mx> (ICN-UNAM)
21 //      Arturo Fernandez <afernan@mail.cern.ch> (FCFM-BUAP)
22 //  Last update: Nov. 14t 2009 --> MRC <mrodrigu@mail.cern.ch> (FCFM-BUAP) 
23 //...
24
25 // --- ROOT system ---
26 #include <TClass.h>
27 #include <TH1F.h> 
28 #include <TH1I.h> 
29 #include <TIterator.h> 
30 #include <TKey.h> 
31 #include <TFile.h> 
32
33 // --- Standard library ---
34
35 // --- AliRoot header files ---
36 #include "AliLog.h"
37 #include "AliQAv1.h"
38 #include "AliQAChecker.h"
39 #include "AliACORDEQAChecker.h"
40 #include "AliCDBEntry.h"
41 #include "AliQAManager.h"
42
43 ClassImp(AliACORDEQAChecker)
44
45 //____________________________________________________________________________
46 Double_t * AliACORDEQAChecker::Check(AliQAv1::ALITASK_t /*index*/)
47 {
48   Double_t * rv = new Double_t[AliRecoParam::kNSpecies] ; 
49   for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) 
50     rv[specie] = 0.0 ; 
51   return rv ;  
52 }
53 //____________________________________________________________________________
54 Double_t * AliACORDEQAChecker::Check(AliQAv1::ALITASK_t /*index*/, TObjArray ** list, AliDetectorRecoParam * /*recoParam*/)
55 {
56
57 // Close version to the final one for the ACORDE QA Checker
58
59   Double_t * test = new Double_t[AliRecoParam::kNSpecies]  ; 
60   Double_t * acoTest = new Double_t[AliRecoParam::kNSpecies] ;
61   
62 // Loop over the run species (for specie!= cosmic by now we set QA to INFO) 
63   
64   for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) 
65   {
66         if ( !AliQAv1::Instance()->IsEventSpecieSet(specie) ) continue ; 
67         if (list[specie]->GetEntries() == 0) acoTest[specie] = 1.; // Nothing to check
68         else 
69         {
70                 TIter next(list[specie]) ; 
71                 TH1 * hdata ; // Data created by the AliACORDEQADataMakerXXX (Sim/Rec)
72                 while ( (hdata = dynamic_cast<TH1 *>(next())) ) 
73                 {
74                         if (hdata) 
75                         { 
76                                 Double_t rv = 0.0 ; 
77                                 if(hdata->GetEntries()>0) rv=1; 
78                                 AliDebug(AliQAv1::GetQADebugLevel(), Form("%s -> %f", hdata->GetName(), rv)) ; 
79                                 TString hdataName = hdata->GetName();
80                                 
81                                 // Here we use the QAref ACORDE data from fRefOCDBSubDir
82                                 
83                                 if ( (fRefOCDBSubDir[specie]) && (hdataName.Contains("ACORDEBitPattern")) ) 
84                                 {
85                                         TH1 * href = NULL;
86                                         if (fRefSubDir) href = static_cast<TH1*>(fRefSubDir->Get(hdata->GetName()));
87                                         else if (fRefOCDBSubDir[specie]) href = static_cast<TH1*>(fRefOCDBSubDir[specie]->FindObject(hdata->GetName()));
88                                         acoTest[specie] = CheckAcordeRefHits(href,hdata);
89                                 }else if (hdataName.Contains("ACORDEBitPattern"))
90                                 // Here we use an inner QA Checher without the QAref data
91                                 {
92                                         Float_t acoDataMax = hdata->GetMaximum();
93                                         Int_t flagAcoQA = 0;
94                                         if (acoDataMax!=0)
95                                         {
96                                                 for(Int_t i=0;i<60;i++)
97                                                 {
98                                                         if ((hdata->GetBinContent(i)/acoDataMax) < 0.75) flagAcoQA++; 
99                                                 }
100                                         }
101                                         Double_t simpleFlag = 1.-flagAcoQA/60.;
102                                         if ( (simpleFlag >= 0.90) && (simpleFlag <= 1.0) ) acoTest[specie] = 0.75; // INFO
103                                         if ( (simpleFlag >= 0.70) && (simpleFlag < 0.90) ) acoTest[specie] = 0.50; // WARNING
104                                         if ( (simpleFlag >= 0.25) && (simpleFlag < 0.70) ) acoTest[specie] = 0.25; // ERROR
105                                         if ( (simpleFlag >= 0.0) && (simpleFlag < 0.25) )  acoTest[specie] = -1.0; // FATAL
106                                 }       
107                                 // Setting Warning message for possible Empty Events with the ACORDE-Trigger
108                                         
109                                 if (hdataName.Contains("ACORDEMultiplicity") && (hdata->GetBinContent(0)!=0)) AliWarning("Empty event registered with ACORDE Trigger !!!");
110                                         
111                                 
112                         }else AliError("Data type cannot be processed") ;
113                                 
114                 }
115         }
116         if ( (specie == AliRecoParam::kHighMult) || (specie == AliRecoParam::kLowMult) || (specie == AliRecoParam::kCalib) ) acoTest[specie] = 0.75;
117         test[specie] = acoTest[specie]; // Assign of the acoTest to the test for final QAChecker value  
118   }
119         return test ; 
120 }
121 //____________________________________________________________________________
122 Double_t AliACORDEQAChecker::CheckAcordeRefHits(const TH1 * href, const TH1 * hdata) const
123 {
124         Double_t acoTest = 0.;
125         Int_t flag=0;
126         for (Int_t i=0;i<60;i++)
127         {
128                 if (TMath::Abs(href->GetBinContent(i)-hdata->GetBinContent(i))>10) flag++;
129         }
130         if ((flag>50)&&(flag<=60)) acoTest = -1.;
131         if ((flag>30)&&(flag<=50)) acoTest = 0.25;
132         if ((flag>10)&&(flag<=30)) acoTest = 0.5;
133         if ((flag>0)&&(flag<=10)) acoTest = 0.75;
134         return acoTest;
135 }