]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ACORDE/AliACORDEQAChecker.cxx
restore threshold getters after parameter dynamics update (fw v. >= A012)
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEQAChecker.cxx
index e1f5f175f0736794214026bc36079b2a363aa6c3..12377b724a22b51546ac1c236aca2332ef3e4770 100755 (executable)
@@ -19,6 +19,7 @@
 //     Mario Rodriguez Cahuantzi <mrodrigu@mail.cern.ch> (FCFM-BUAP) 
 //     Luciano Diaz Gonzalez <luciano.diaz@nucleares.unam.mx> (ICN-UNAM)
 //     Arturo Fernandez <afernan@mail.cern.ch> (FCFM-BUAP)
+//  Last update: Nov. 14t 2009 --> MRC <mrodrigu@mail.cern.ch> (FCFM-BUAP) 
 //...
 
 // --- ROOT system ---
@@ -28,7 +29,8 @@
 #include <TIterator.h> 
 #include <TKey.h> 
 #include <TFile.h> 
-
+#include <TPaveText.h>
+#include <TLine.h>
 // --- Standard library ---
 
 // --- AliRoot header files ---
 #include "AliCDBEntry.h"
 #include "AliQAManager.h"
 
+/*************************************************************************
+   Last update: Oct. 10th 2011 from Mario RC, <mrodrigu@mail.cern.ch>
+       |-> Adding the checker class for raw and esd index
+       |-> Setting the threshold lines and box for DQM shifter
+
+*************************************************************************/
+
 ClassImp(AliACORDEQAChecker)
 
 //____________________________________________________________________________
-Double_t * AliACORDEQAChecker::Check(AliQAv1::ALITASK_t /*index*/)
+
+AliACORDEQAChecker::AliACORDEQAChecker()  :
+AliQACheckerBase("ACORDE","ACORDE Quality Assurance Data Maker"),
+fTextDQMShifterInfo(new TPaveText(35,0.5,55,0.7,"T")),
+fMax(new TLine(0,0.9,60,0.9)),
+fMin(new TLine(0,0.3,60,0.3))
+{
+       // default constructor
+       fMax->SetLineColor(kGreen);
+       fMax->SetLineWidth(3);
+       fMin->SetLineColor(kGreen);
+       fMax->SetLineWidth(3);
+}
+//____________________________________________________________________________
+AliACORDEQAChecker::~AliACORDEQAChecker()
+{
+       // destructor
+       delete fTextDQMShifterInfo;
+       delete fMax;
+       delete fMin;
+}
+//____________________________________________________________________________
+AliACORDEQAChecker::AliACORDEQAChecker(const AliACORDEQAChecker& qac) :
+AliQACheckerBase(qac.GetName(), qac.GetTitle()),
+fTextDQMShifterInfo(new TPaveText(35,0.5,55,0.7,"T")),
+fMax(static_cast<TLine*>(qac.fMax->Clone())),
+fMin(static_cast<TLine*>(qac.fMin->Clone()))
+{
+       //
+}
+//____________________________________________________________________________
+AliACORDEQAChecker& AliACORDEQAChecker::operator = (const AliACORDEQAChecker &qac)
+{
+       
+       fTextDQMShifterInfo = new TPaveText(35,0.5,55,0.7,"T");
+       fMax = static_cast<TLine*>(qac.fMax->Clone());
+       fMin = static_cast<TLine*>(qac.fMin->Clone());
+       return *this;
+}
+//____________________________________________________________________________
+void AliACORDEQAChecker::Check(Double_t * test, AliQAv1::ALITASK_t /*index*/)
 {
-  Double_t * rv = new Double_t[AliRecoParam::kNSpecies] ; 
   for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) 
-    rv[specie] = 0.0 ; 
-  return rv ;  
+    test[specie] = 0.0 ; 
 }
-
-//__________________________________________________________________
-Double_t * AliACORDEQAChecker::Check(AliQAv1::ALITASK_t /*index*/, TObjArray ** list)
+//____________________________________________________________________________
+void AliACORDEQAChecker::Check(Double_t * test, AliQAv1::ALITASK_t /*index*/, TObjArray ** list, const AliDetectorRecoParam * /*recoParam*/)
 {
-
-       Double_t * test = new Double_t[AliRecoParam::kNSpecies] ; 
-       Int_t * count   = new Int_t[AliRecoParam::kNSpecies] ; 
-       Double_t * acoTest = new Double_t[AliRecoParam::kNSpecies];
-
-       // Look at the QAref data for ACORDE
-
-       char * acoOCDBDir = Form("ACORDE/%s/%s",AliQAv1::GetRefOCDBDirName(),AliQAv1::GetRefDataDirName());
-       AliCDBEntry *acoQARefDir = AliQAManager::QAManager()->Get(acoOCDBDir);
-
-       // Check variables set to 0
-
-       for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) 
-       {
-               test[specie] = 0.0 ; 
-               count[specie] = 0 ; 
-               acoTest[specie] = 0.0;
-       }
+// Close version to the final one for the ACORDE QA Checker
+  
+// Loop over the run species (for specie!= cosmic by now we set QA to INFO) 
   
-       for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) 
+  for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) 
+  {
+       if ( !AliQAv1::Instance()->IsEventSpecieSet(specie) ) continue ; 
+       if (list[specie]->GetEntries() == 0) test[specie] = 1.; // Nothing to check
+       else 
        {
-               if (list[specie]->GetEntries() == 0)
-               {  
-                       test[specie] = 1. ; // nothing to check
-                       acoTest[specie] = 1.;
-               }
-               else 
+               TIter next(list[specie]) ; 
+               TH1 * hdata ; // Data created by the AliACORDEQADataMakerXXX (Sim/Rec)
+               while ( (hdata = dynamic_cast<TH1 *>(next())) ) 
                {
-                       TIter next(list[specie]) ; 
-                       TH1 * hdata ;
-                       while ( (hdata = dynamic_cast<TH1 *>(next())) ) 
-                       {
-                               if (hdata) 
-                               { 
-                                       Double_t rv = 0.0 ; 
-                                       if(hdata->GetEntries()>0) rv=1; 
-                                       AliDebug(AliQAv1::GetQADebugLevel(), Form("%s -> %f", hdata->GetName(), rv)) ; 
-                                       count[specie]++ ; 
-                                       test[specie] += rv ; 
-                                       Double_t acoHitsNorm;
-                                       if (hdata->GetMaximum()==1) acoHitsNorm = 1;
-                                       else acoHitsNorm = (hdata->GetMaximum() - 0.50)/hdata->GetMaximum();
-                                       // here we implement the second version for ACORDEQAChecker
-                                       // by the moment we only compare the Mean between the QA histograms and the Reference data 
-                                       if  (acoQARefDir)
-                                       {
-                                               //AliWarning("Using the QA Reference data for ACORDE !!!");
-                                               Double_t acoHistChecked = CheckAcordeRefHits(list[specie],(TObjArray *)acoQARefDir->GetObject());
-                                               if ( (acoHistChecked>0.75) && (acoHistChecked<=1) ) acoTest[specie] = 0.86;
-                                               if ( (acoHistChecked>0.0020) && (acoHistChecked<=0.75) ) acoTest[specie] = 0.251;
-                                               if ( (acoHistChecked>0.0) && (acoHistChecked<=0.0020) ) acoTest[specie] = 0.0010;
-                                               if ( (acoHistChecked>-1.0) && (acoHistChecked<=0.0) ) acoTest[specie] = -0.5;
-       
-                                       }else
-                                       {
-                                               //AliWarning("Using the inner ACORDE QA Checker !!!");
-                                               if ( (acoHitsNorm>0.40) && (acoHitsNorm<=1) ) acoTest[specie] = 0.86;
-                                               if ( (acoHitsNorm>0.0020) && (acoHitsNorm<=0.40) ) acoTest[specie] = 0.251;
-                                               if ( (acoHitsNorm>0.0) && (acoHitsNorm<=0.0020) ) acoTest[specie] = 0.0010;
-                                               if ( (acoHitsNorm>-1.0) && (acoHitsNorm<=0.0) ) acoTest[specie] = -0.5;
-                                       }
-                               }
-                               else
-                               {
-                                       AliError("Data type cannot be processed") ;
-                               }
-                       }
-                       if (count[specie] != 0) 
+                       if (hdata) 
                        { 
-                               if (test[specie]==0) 
+                               Double_t rv = 0.0 ; 
+                               if(hdata->GetEntries()>0) rv=1; 
+                               AliDebug(AliQAv1::GetQADebugLevel(), Form("%s -> %f", hdata->GetName(), rv)) ; 
+                               TString hdataName = hdata->GetName();
+                               if (hdata->GetListOfFunctions()->GetEntries() == 0  && (hdataName.Contains("HitsSL0_DQM")||(hdataName.Contains("HitsAMU_DQM")))){
+                                       hdata->GetListOfFunctions()->Add(fTextDQMShifterInfo);
+                                        hdata->GetListOfFunctions()->Add(fMax);
+                                        hdata->GetListOfFunctions()->Add(fMin);
+
+                               }
+                               // Here we use the QAref ACORDE data from fRefOCDBSubDir
+                               
+                               if ( (fRefOCDBSubDir[specie]) && (hdataName.Contains("ACORDEBitPattern")) ) 
                                {
-                                       test[specie] = 0.5;  //upper limit value to set kWARNING flag for a task
-                               }
-                               else 
+                                       TH1 * href = NULL;
+                                       if (fRefSubDir) href = static_cast<TH1*>(fRefSubDir->Get(hdata->GetName()));
+                                       else if (fRefOCDBSubDir[specie]) href = static_cast<TH1*>(fRefOCDBSubDir[specie]->FindObject(hdata->GetName()));
+                                       test[specie] = CheckAcordeRefHits(href,hdata);
+                               }else if (hdataName.Contains("ACORDEBitPattern")||hdataName.Contains("HitsSL0_DQM")||hdataName.Contains("HitsAMU_DQM"))
+                               // Here we use an inner QA Checher without the QAref data
                                {
-                                       if (acoQARefDir) test[specie] = acoTest[specie];
-                                       else
+                                       Float_t acoDataMax = hdata->GetMaximum();
+                                       Int_t flagAcoQAChecker = 0;
+                                       Int_t flagAcoQA = 0;
+                                       if (acoDataMax == 0) continue;
+                                       for(Int_t i=0;i<60;i++)
                                        {
-                                               test[specie] = acoTest[specie];
+                                               if ((hdata->GetBinContent(i)/acoDataMax) < 0.75) flagAcoQAChecker++; 
+                                               if (hdataName.Contains("HitsSL0_DQM")||hdataName.Contains("HitsAMU_DQM")){
+                                                       if (hdata->GetBinContent(i)<0.29) flagAcoQA++;
+                                               }
                                        }
-                               }
-                       }
-               }
-       }
-       return test ; 
+                                       if (hdataName.Contains("ACORDEBitPattern")){
+                                               Double_t simpleFlag = 1.-flagAcoQAChecker/60.;
+                                               if ( (simpleFlag >= 0.90) && (simpleFlag <= 1.0) ) test[specie] = 0.75; // INFO
+                                               if ( (simpleFlag >= 0.70) && (simpleFlag < 0.90) ) test[specie] = 0.50; // WARNING
+                                               if ( (simpleFlag >= 0.25) && (simpleFlag < 0.70) ) test[specie] = 0.25; // ERROR
+                                               if ( (simpleFlag >= 0.0) && (simpleFlag < 0.25) )  test[specie] = -1.0; // FATAL
+                                       } else if (hdataName.Contains("HitsSL0_DQM")||hdataName.Contains("HitsAMU_DQM")){
+                                               if (flagAcoQA < 100) test[specie] = 0.75;
+                                               else test[specie] = 0.3;
+                                       }
+
+
+                               }       
+
+                               // Setting Warning message for possible Empty Events with the ACORDE-Trigger
+                                       
+                               if (hdataName.Contains("ACORDEMultiplicity") && (hdata->GetBinContent(0)!=0)) AliWarning("Empty event registered with ACORDE Trigger !!!");
+                                       
+                               
+                       }else AliError("Data type cannot be processed") ;
+                       if (fTextDQMShifterInfo)
+                       {
+                               fTextDQMShifterInfo->Clear();
+                               if (test[specie] > 0.3){
+                                       fTextDQMShifterInfo->SetFillColor(kGreen);
+                                       fTextDQMShifterInfo->AddText("ACORDE: O.K.");
+                               }else{
+                                       fTextDQMShifterInfo->SetFillColor(kRed);
+                                       fTextDQMShifterInfo->AddText("ACORDE: Not, O.K.");
+                                       fTextDQMShifterInfo->AddText("CALL THE EXPERTS");
+                               }
+                       }
+                               
+               }
+       }
+    if ( (specie == AliRecoParam::kHighMult) || (specie == AliRecoParam::kLowMult) || (specie == AliRecoParam::kCalib) ) test[specie] = 0.75;
+  }
 }
-Double_t AliACORDEQAChecker::CheckAcordeRefHits(TObjArray *HistAcordeList, TObjArray *AcordeRef) const
+//____________________________________________________________________________
+Double_t AliACORDEQAChecker::CheckAcordeRefHits(const TH1 * href, const TH1 * hdata) const
 {
-       Double_t acordeTest = 0;
-       TIter next(AcordeRef);
-       TIter next1(HistAcordeList);
-       TH1 *histoAcordeRef;
-       TH1 *histoAcorde;
-       Float_t acordeHistoQAMaker=0;
-       Float_t meanACOQAReference=0;
-       Float_t meanACOQAMaker=0;
-       Float_t test1ACORDE = 0;
-       while((histoAcordeRef=(TH1*)next()) && (histoAcorde=(TH1*)next1())) 
+       Double_t test = 0.;
+       Int_t flag=0;
+       for (Int_t i=0;i<60;i++)
        {
-               for(Int_t i=0;i<60;i++) acordeHistoQAMaker=acordeHistoQAMaker + histoAcorde->GetBinContent(i)/histoAcorde->GetMaximum();
-               meanACOQAReference = histoAcordeRef->GetMean();
-               meanACOQAMaker = acordeHistoQAMaker/60;
-               test1ACORDE = TMath::Abs(meanACOQAReference-meanACOQAMaker);
-               if (test1ACORDE<0.45) acordeTest = 0.86;
-               if (test1ACORDE > 0.45) acordeTest = 0.50;
-               if (test1ACORDE > 0.70) acordeTest = 0.25;
+               if (TMath::Abs(href->GetBinContent(i)-hdata->GetBinContent(i))>10) flag++;
        }
-       return acordeTest;
+       if ((flag>50)&&(flag<=60)) test = -1.;
+       if ((flag>30)&&(flag<=50)) test = 0.25;
+       if ((flag>10)&&(flag<=30)) test = 0.5;
+       if ((flag>0)&&(flag<=10)) test = 0.75;
+       return test;
 }