]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ACORDE/AliACORDEQAChecker.cxx
fix minor bug: add task argument was not passed to tak
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEQAChecker.cxx
index ecbf16bade2de00f771febf266e8496f62471625..3333119d1981ee82eff3ac9bbc6b02d8fd5ad719 100755 (executable)
@@ -54,15 +54,12 @@ ClassImp(AliACORDEQAChecker)
 
 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))
+fTextDQMShifterInfo(new TPaveText(2.2,0.90,2.9,0.99,"T")),
+fMax(new TLine(1,0.5,3,0.5))
 {
        // default constructor
        fMax->SetLineColor(kGreen);
        fMax->SetLineWidth(3);
-       fMin->SetLineColor(kGreen);
-       fMax->SetLineWidth(3);
 }
 //____________________________________________________________________________
 AliACORDEQAChecker::~AliACORDEQAChecker()
@@ -70,24 +67,21 @@ 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()))
+fTextDQMShifterInfo(new TPaveText(2.2,0.90,2.9,0.99,"T")),
+fMax(static_cast<TLine*>(qac.fMax->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());
+       // use cpy option from constructor
+       if (&qac==this) return *this;
+       new (this) AliACORDEQAChecker(qac);
        return *this;
 }
 //____________________________________________________________________________
@@ -105,6 +99,7 @@ void AliACORDEQAChecker::Check(Double_t * test, AliQAv1::ALITASK_t /*index*/, TO
   
   for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) 
   {
+       test[specie] = 1.0;
        if ( !AliQAv1::Instance()->IsEventSpecieSet(specie) ) continue ; 
        if (list[specie]->GetEntries() == 0) test[specie] = 1.; // Nothing to check
        else 
@@ -113,77 +108,77 @@ void AliACORDEQAChecker::Check(Double_t * test, AliQAv1::ALITASK_t /*index*/, TO
                TH1 * hdata ; // Data created by the AliACORDEQADataMakerXXX (Sim/Rec)
                while ( (hdata = dynamic_cast<TH1 *>(next())) ) 
                {
-                       if (hdata) 
+                       //if (hdata) 
+                       if (hdata->GetEntries()!=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);
-
+                               //if (hdata->GetListOfFunctions()->GetEntries() == 0) continue;  
+                                               
+                               if (hdataName.Contains("fhACORDEStatusAMU_DQM"))
+                               {
+                                       if (!hdata->GetListOfFunctions()->Contains(fTextDQMShifterInfo))
+                                               hdata->GetListOfFunctions()->Add(fTextDQMShifterInfo);
+                                       if (!hdata->GetListOfFunctions()->Contains(fMax))
+                                               hdata->GetListOfFunctions()->Add(fMax);
                                }
-                               // Here we use the QAref ACORDE data from fRefOCDBSubDir
-                               
+                               // check with OCDB ref. data
                                if ( (fRefOCDBSubDir[specie]) && (hdataName.Contains("ACORDEBitPattern")) ) 
                                {
                                        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
+                               }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++)
+                                       if (hdataName.Contains("ACORDEBitPattern"))
+                                               // Here we use an inner QA Checher without the QAref data
                                        {
-                                               if ((hdata->GetBinContent(i)/acoDataMax) < 0.75) flagAcoQAChecker++; 
-                                               if (hdataName.Contains("HitsSL0_DQM")||hdataName.Contains("HitsAMU_DQM")){
-                                                       if (hdata->GetBinContent(i)<0.29) flagAcoQA++;
+                                               Float_t acoDataMax = hdata->GetMaximum();
+                                               Int_t flagAcoQAChecker = 0;
+                                               if (acoDataMax == 0) continue;
+                                               for(Int_t i=0;i<60;i++)
+                                               {
+                                                       if ((hdata->GetBinContent(i)/acoDataMax) < 0.75) flagAcoQAChecker++; 
                                                }
-                                       }
-                                       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 < 30) test[specie] = 0.75;
-                                               else test[specie] = 0.3;
+                                               if (test[specie]>0) rv = test[specie];
+                                               else rv = 1.0;
                                        }
-
-
-                               }       
-
-                               // 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 (hdataName.Contains("fhACORDEStatusAMU_DQM"))
+                                       {
+                                               Float_t goodModules = hdata->GetBinContent(1);
+                                               Float_t badModules = hdata->GetBinContent(2);
+                                               if (goodModules >= badModules)
+                                                       test[specie] = 0.75;
+                                               else test[specie] = 0.30;
+                                               
+                                       }        // check for DQM condition
+                                       rv = test[specie];
+                                       if (fTextDQMShifterInfo) // DQM-flag asignment
+                                       {
+                                               fTextDQMShifterInfo->Clear();
+                                               if (rv > 0.4){
+                                                       fTextDQMShifterInfo->SetFillColor(kGreen);
+                                                       fTextDQMShifterInfo->AddText("ACORDE: O.K.");
+                                               }else{
+                                                       fTextDQMShifterInfo->SetFillColor(kRed);
+                                                       fTextDQMShifterInfo->AddText("ACORDE: Not, O.K.");
+                                               }
+                                       } // end DQM flag asignment
+                               }// NO OCDB checking
+                       } // hdata with entries
+                       else AliError("Data type cannot be processed") ;
+               } // loop over histograms from QADataMaker
+       }  // end checker
     if ( (specie == AliRecoParam::kHighMult) || (specie == AliRecoParam::kLowMult) || (specie == AliRecoParam::kCalib) ) test[specie] = 0.75;
-  }
+  } // end of species
 }
 //____________________________________________________________________________
 Double_t AliACORDEQAChecker::CheckAcordeRefHits(const TH1 * href, const TH1 * hdata) const