]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ACORDE/AliACORDEQAChecker.cxx
71479a46eec3fdcc6300ff8e57d347c5ab583d18
[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 #include <TPaveText.h>
33 #include <TLine.h>
34 // --- Standard library ---
35
36 // --- AliRoot header files ---
37 #include "AliLog.h"
38 #include "AliQAv1.h"
39 #include "AliQAChecker.h"
40 #include "AliACORDEQAChecker.h"
41 #include "AliCDBEntry.h"
42 #include "AliQAManager.h"
43
44 /*************************************************************************
45    Last update: Oct. 10th 2011 from Mario RC, <mrodrigu@mail.cern.ch>
46         |-> Adding the checker class for raw and esd index
47         |-> Setting the threshold lines and box for DQM shifter
48
49 *************************************************************************/
50
51 ClassImp(AliACORDEQAChecker)
52
53 //____________________________________________________________________________
54
55 AliACORDEQAChecker::AliACORDEQAChecker()  :
56 AliQACheckerBase("ACORDE","ACORDE Quality Assurance Data Maker"),
57 fTextDQMShifterInfo(new TPaveText(35,0.5,55,0.7,"T")),
58 fMax(new TLine(0,0.9,60,0.9)),
59 fMin(new TLine(0,0.3,60,0.3))
60 {
61         // default constructor
62         fMax->SetLineColor(kGreen);
63         fMax->SetLineWidth(3);
64         fMin->SetLineColor(kGreen);
65         fMax->SetLineWidth(3);
66 }
67 //____________________________________________________________________________
68 AliACORDEQAChecker::~AliACORDEQAChecker()
69 {
70         // destructor
71         delete fTextDQMShifterInfo;
72         delete fMax;
73         delete fMin;
74 }
75 //____________________________________________________________________________
76 AliACORDEQAChecker::AliACORDEQAChecker(const AliACORDEQAChecker& qac) :
77 AliQACheckerBase(qac.GetName(), qac.GetTitle()),
78 fTextDQMShifterInfo(new TPaveText(35,0.5,55,0.7,"T")),
79 fMax(static_cast<TLine*>(qac.fMax->Clone())),
80 fMin(static_cast<TLine*>(qac.fMin->Clone()))
81 {
82         //
83 }
84 //____________________________________________________________________________
85 AliACORDEQAChecker& AliACORDEQAChecker::operator = (const AliACORDEQAChecker &qac)
86 {
87         // use cpy option from constructor
88         if (&qac==this) return *this;
89         new (this) AliACORDEQAChecker(qac);
90         return *this;
91 }
92 //____________________________________________________________________________
93 void AliACORDEQAChecker::Check(Double_t * test, AliQAv1::ALITASK_t /*index*/)
94 {
95   for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) 
96     test[specie] = 0.0 ; 
97 }
98 //____________________________________________________________________________
99 void AliACORDEQAChecker::Check(Double_t * test, AliQAv1::ALITASK_t /*index*/, TObjArray ** list, const AliDetectorRecoParam * /*recoParam*/)
100 {
101 // Close version to the final one for the ACORDE QA Checker
102   
103 // Loop over the run species (for specie!= cosmic by now we set QA to INFO) 
104   
105   for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) 
106   {
107         if ( !AliQAv1::Instance()->IsEventSpecieSet(specie) ) continue ; 
108         if (list[specie]->GetEntries() == 0) test[specie] = 1.; // Nothing to check
109         else 
110         {
111                 TIter next(list[specie]) ; 
112                 TH1 * hdata ; // Data created by the AliACORDEQADataMakerXXX (Sim/Rec)
113                 while ( (hdata = dynamic_cast<TH1 *>(next())) ) 
114                 {
115                         if (hdata) 
116                         { 
117                                 Double_t rv = 0.0 ; 
118                                 if(hdata->GetEntries()>0) rv=1; 
119                                 AliDebug(AliQAv1::GetQADebugLevel(), Form("%s -> %f", hdata->GetName(), rv)) ; 
120                                 TString hdataName = hdata->GetName();
121                                 if (hdata->GetListOfFunctions()->GetEntries() == 0  && (hdataName.Contains("HitsSL0_DQM")||(hdataName.Contains("HitsAMU_DQM")))){
122                                         hdata->GetListOfFunctions()->Add(fTextDQMShifterInfo);
123                                         hdata->GetListOfFunctions()->Add(fMax);
124                                         hdata->GetListOfFunctions()->Add(fMin);
125
126                                 }
127                                 // Here we use the QAref ACORDE data from fRefOCDBSubDir
128                                 
129                                 if ( (fRefOCDBSubDir[specie]) && (hdataName.Contains("ACORDEBitPattern")) ) 
130                                 {
131                                         TH1 * href = NULL;
132                                         if (fRefSubDir) href = static_cast<TH1*>(fRefSubDir->Get(hdata->GetName()));
133                                         else if (fRefOCDBSubDir[specie]) href = static_cast<TH1*>(fRefOCDBSubDir[specie]->FindObject(hdata->GetName()));
134                                         test[specie] = CheckAcordeRefHits(href,hdata);
135                                 }else if (hdataName.Contains("ACORDEBitPattern")||hdataName.Contains("HitsSL0_DQM")||hdataName.Contains("HitsAMU_DQM"))
136                                 // Here we use an inner QA Checher without the QAref data
137                                 {
138                                         Float_t acoDataMax = hdata->GetMaximum();
139                                         Int_t flagAcoQAChecker = 0;
140                                         Int_t flagAcoQA = 0;
141                                         if (acoDataMax == 0) continue;
142                                         for(Int_t i=0;i<60;i++)
143                                         {
144                                                 if ((hdata->GetBinContent(i)/acoDataMax) < 0.75) flagAcoQAChecker++; 
145                                                 if (hdataName.Contains("HitsSL0_DQM")||hdataName.Contains("HitsAMU_DQM")){
146                                                         if (hdata->GetBinContent(i)<0.29) flagAcoQA++;
147                                                 }
148                                         }
149                                         if (hdataName.Contains("ACORDEBitPattern")){
150                                                 Double_t simpleFlag = 1.-flagAcoQAChecker/60.;
151                                                 if ( (simpleFlag >= 0.90) && (simpleFlag <= 1.0) ) test[specie] = 0.75; // INFO
152                                                 if ( (simpleFlag >= 0.70) && (simpleFlag < 0.90) ) test[specie] = 0.50; // WARNING
153                                                 if ( (simpleFlag >= 0.25) && (simpleFlag < 0.70) ) test[specie] = 0.25; // ERROR
154                                                 if ( (simpleFlag >= 0.0) && (simpleFlag < 0.25) )  test[specie] = -1.0; // FATAL
155                                         } else if (hdataName.Contains("HitsSL0_DQM")||hdataName.Contains("HitsAMU_DQM")){
156                                                 if (flagAcoQA < 100) test[specie] = 0.75;
157                                                 else test[specie] = 0.3;
158                                         }
159
160
161                                 }       
162
163                                 // Setting Warning message for possible Empty Events with the ACORDE-Trigger
164                                         
165                                 if (hdataName.Contains("ACORDEMultiplicity") && (hdata->GetBinContent(0)!=0)) AliWarning("Empty event registered with ACORDE Trigger !!!");
166                                         
167                                 
168                         }else AliError("Data type cannot be processed") ;
169                         if (fTextDQMShifterInfo)
170                         {
171                                 fTextDQMShifterInfo->Clear();
172                                 if (test[specie] > 0.3){
173                                         fTextDQMShifterInfo->SetFillColor(kGreen);
174                                         fTextDQMShifterInfo->AddText("ACORDE: O.K.");
175                                 }else{
176                                         fTextDQMShifterInfo->SetFillColor(kRed);
177                                         fTextDQMShifterInfo->AddText("ACORDE: Not, O.K.");
178                                         fTextDQMShifterInfo->AddText("CALL THE EXPERTS");
179                                 }
180                         }
181                                 
182                 }
183         }
184     if ( (specie == AliRecoParam::kHighMult) || (specie == AliRecoParam::kLowMult) || (specie == AliRecoParam::kCalib) ) test[specie] = 0.75;
185   }
186 }
187 //____________________________________________________________________________
188 Double_t AliACORDEQAChecker::CheckAcordeRefHits(const TH1 * href, const TH1 * hdata) const
189 {
190         Double_t test = 0.;
191         Int_t flag=0;
192         for (Int_t i=0;i<60;i++)
193         {
194                 if (TMath::Abs(href->GetBinContent(i)-hdata->GetBinContent(i))>10) flag++;
195         }
196         if ((flag>50)&&(flag<=60)) test = -1.;
197         if ((flag>30)&&(flag<=50)) test = 0.25;
198         if ((flag>10)&&(flag<=30)) test = 0.5;
199         if ((flag>0)&&(flag<=10)) test = 0.75;
200         return test;
201 }