]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliQAChecker.cxx
datamember added in AliGeomManager with number of alignable volumes per subdetector...
[u/mrichter/AliRoot.git] / STEER / AliQAChecker.cxx
index 22173614a260677a7571065e2b962d790a6c779b..21035a801d535d92277872ddd634b584bed1c7a8 100644 (file)
 //                                                                           //
 ///////////////////////////////////////////////////////////////////////////////
 
+#include "AliCDBEntry.h"
+#include "AliCDBManager.h"
+#include "AliCDBStorage.h"
+#include "AliRunInfo.h" 
 #include "AliLog.h"
 #include "AliModule.h" 
 #include "AliQA.h"
 #include "AliQAChecker.h"
 #include "AliQACheckerBase.h"
+#include "AliCorrQAChecker.h"
+#include "AliGlobalQAChecker.h"
+#include "AliGRPObject.h"
 
 #include <TKey.h>
 #include <TObjArray.h>
+#include <TObjString.h>
 #include <TPluginManager.h> 
 #include <TROOT.h>
 #include <TStopwatch.h> 
 #include <TString.h> 
 #include <TSystem.h> 
 #include <TList.h>
+#include <TNtupleD.h>
 
 ClassImp(AliQAChecker)
   AliQAChecker * AliQAChecker::fgQAChecker = 0x0 ;
-  TFile   * AliQAChecker::fgQAResultFile        = 0x0 ;  
-//  TString   AliQAChecker::fgQAResultDirName     = "local://RUN/";  
-//  TString   AliQAChecker::fgQAResultFileName    = "QA.root" ; 
 
 //_____________________________________________________________________________
 AliQAChecker::AliQAChecker(const char* name, const char* title) :
   TNamed(name, title),
   fDataFile(0x0), 
-//  fRefDirName("./Ref/"), 
-//  fRefName("QA.root"), 
+  fRunInfo(0x0), 
+  fRunInfoOwner(kFALSE), 
+  fRefFile(0x0), 
   fFoundDetectors(".")
 {
   // ctor: initialise checkers and open the data file   
   for (Int_t det = 0 ; det < AliQA::kNDET ; det++) 
     fCheckers[det] = NULL ; 
-  
-//  fRefDirName.Append(fRefName) ; 
 }
 
 //_____________________________________________________________________________
 AliQAChecker::AliQAChecker(const AliQAChecker& qac) :
   TNamed(qac),
   fDataFile(qac.fDataFile), 
-//  fRefDirName(qac.fRefDirName), 
-//  fRefName(qac.fRefName), 
+  fRunInfo(qac.fRunInfo), 
+  fRunInfoOwner(kFALSE),   
+  fRefFile(qac.fRefFile), 
   fFoundDetectors(qac.fFoundDetectors)
 {
   // copy constructor
@@ -85,119 +91,180 @@ AliQAChecker& AliQAChecker::operator = (const AliQAChecker& qac)
 AliQAChecker::~AliQAChecker()
 {
 // clean up
+  if (fRunInfo)
+    delete fRunInfo ; 
   delete [] fCheckers ; 
-  fgQAResultFile->Close() ; 
+  AliQA::Close() ; 
 }
 
 //_____________________________________________________________________________
-TFile * AliQAChecker:: GetDataFile(const char * fileName)
+  AliQACheckerBase * AliQAChecker::GetDetQAChecker(Int_t det)
 {
-  // Open if necessary the Data file and return its pointer
+       // Gets the Quality Assurance checker for the detector specified by its name
+       
+       if (fCheckers[det]) 
+    return fCheckers[det];
+
+       AliQACheckerBase * qac = NULL ;
 
-  if (!fDataFile) 
-       if (!fileName) 
-               fileName = AliQA::GetDataName() ; 
-       if  (!gSystem->AccessPathName(fileName)) {
-               fDataFile =  TFile::Open(fileName) ;
+       TString detName(AliQA::GetDetName(det)) ; 
+       
+       if (det == AliQA::kGLOBAL) {
+               qac = new AliGlobalQAChecker() ; 
+       } else if (det == AliQA::kCORR) {
+               qac = new AliCorrQAChecker() ; 
        } else {
-               AliFatal(Form("File %s not found", fileName)) ; 
+               AliDebug(1, Form("Retrieving QA checker for %s", detName.Data())) ; 
+               TPluginManager* pluginManager = gROOT->GetPluginManager() ;
+               TString qacName = "Ali" + detName + "QAChecker" ;
+
+               // first check if a plugin is defined for the quality assurance checker
+               TPluginHandler* pluginHandler = pluginManager->FindHandler("AliQAChecker", detName.Data());
+               // if not, add a plugin for it
+               if (!pluginHandler) {
+                       //AliInfo(Form("defining plugin for %s", qacName.Data()));
+                       TString libs = gSystem->GetLibraries();
+               
+                       if (libs.Contains("lib" + detName + "base.so") || (gSystem->Load("lib" + detName + "base.so") >= 0))
+                               pluginManager->AddHandler("AliQAChecker", detName, qacName, detName + "qac", qacName + "()");
+                       else 
+                               pluginManager->AddHandler("AliQAChecker", detName, qacName, detName, qacName + "()");
+
+                       pluginHandler = pluginManager->FindHandler("AliQAChecker", detName);    
+
+                       if (pluginHandler && (pluginHandler->LoadPlugin() == 0)) 
+                               qac = (AliQACheckerBase *) pluginHandler->ExecPlugin(0);
+  
+               }
        }
-  return fDataFile ; 
+       if (qac) 
+               fCheckers[det] = qac ;
+       
+       return qac ; 
+}
+//_____________________________________________________________________________
+void AliQAChecker::GetRefSubDir(const char * det, const char * task, TDirectory *& dirFile, TObjArray *& dirOCDB)     
+{ 
+  // Opens and returns the file with the reference data 
+       
+  dirFile = NULL ; 
+  dirOCDB = NULL ; 
+  TString refStorage(AliQA::GetQARefStorage()) ; 
+  //refStorage += AliQA::GetQARefFileName() ;
+  if (refStorage.Contains(AliQA::GetLabLocalFile())) { 
+    refStorage.ReplaceAll(AliQA::GetLabLocalFile(), "") ; 
+    if ( fRefFile ) 
+      if ( fRefFile->IsOpen() ) 
+                                       fRefFile->Close() ; 
+    fRefFile = TFile::Open(refStorage.Data()) ; 
+    if (!fRefFile) { 
+      AliError(Form("Cannot find reference file %s", refStorage.Data())) ; 
+      dirFile = NULL ; 
+    }
+    dirFile = fRefFile->GetDirectory(det) ; 
+    if (!dirFile) {
+      AliWarning(Form("Directory %s not found in %d", det, refStorage.Data())) ; 
+    } else {
+                       dirFile = dirFile->GetDirectory(task) ; 
+      if (!dirFile) 
+                               AliWarning(Form("Directory %s/%s not found in %s", det, task, refStorage.Data())) ; 
+    }  
+  } else if (refStorage.Contains(AliQA::GetLabLocalOCDB()) || refStorage.Contains(AliQA::GetLabAliEnOCDB())) { 
+    AliCDBManager* man = AliCDBManager::Instance() ;
+    if ( strcmp(AliQA::GetRefDataDirName(), "") == 0 ) { // the name of the last level of the directory is not set (RUNTYPE)
+      // Get it from RunInfo
+      if (!fRunInfo)  // not yet set, get the info from GRP
+                               LoadRunInfoFromGRP() ; 
+      AliQA::SetQARefDataDirName(fRunInfo->GetRunType()) ;
+    }
+    if ( ! man->GetLock() ) { 
+      man->SetDefaultStorage(AliQA::GetQARefStorage()) ; 
+      man->SetSpecificStorage("*", AliQA::GetQARefStorage()) ;
+    }
+    char * detOCDBDir = Form("%s/%s/%s", det, AliQA::GetRefOCDBDirName(), AliQA::GetRefDataDirName()) ; 
+    AliInfo(Form("Reference QA data are taken from %s", detOCDBDir)) ;
+    AliCDBEntry * entry = man->Get(detOCDBDir, man->GetRun()) ;
+    if (entry) {
+      TList * listDetQAD = dynamic_cast<TList *>(entry->GetObject()) ;
+      if ( listDetQAD ) 
+                               dirOCDB = dynamic_cast<TObjArray *>(listDetQAD->FindObject(task)) ; 
+    }
+  }
 }
 
 //_____________________________________________________________________________
-TFile * AliQAChecker:: GetQAResultFile() 
+AliQAChecker * AliQAChecker::Instance()
 {
-  // Check if file to store QA exists, if not create it
-
-  if (fgQAResultFile) { 
-    if (fgQAResultFile->IsOpen()){
-      fgQAResultFile->Close() ; 
-      fgQAResultFile = 0x0 ; 
-    }
-  }   
-//  if ( fgQAResultFileName.Contains("local://")) 
-//    fgQAResultFileName.ReplaceAll("local:/", "") ;
-//  
-//  TString opt("") ; 
-//  if ( !gSystem->AccessPathName(fgQAResultFileName) )
-//    opt = "UPDATE" ; 
-//  else 
-//    opt = "NEW" ; 
-//  fgQAResultFile = TFile::Open(fgQAResultFileName, opt) ;   
-//      
-  fgQAResultFile = AliQA::GetQAResultFile() ; 
-  return fgQAResultFile ; 
+       // returns unique instance of the checker
+  if ( ! fgQAChecker ) 
+   fgQAChecker = new AliQAChecker() ; 
+  return fgQAChecker ;  
 }
 
 //_____________________________________________________________________________
-  AliQACheckerBase * AliQAChecker::GetDetQAChecker(Int_t det)
+void AliQAChecker::LoadRunInfoFromGRP() 
 {
-  // Gets the Quality Assurance checker for the detector specified by its name
-  
-  if (fCheckers[det]) 
-    return fCheckers[det];
+  AliCDBManager* man = AliCDBManager::Instance() ;
+  AliCDBEntry* entry = man->Get(AliQA::GetGRPPath().Data());
+  AliGRPObject* grpObject = 0x0;
+  if (entry) {
+
+         TMap* m = dynamic_cast<TMap*>(entry->GetObject());  // old GRP entry
+
+         if (m) {
+           AliInfo("It is a map");
+           //m->Print();
+           grpObject = new AliGRPObject();
+                grpObject->ReadValuesFromMap(m);
+    }
 
- TString detName(AliQA::GetDetName(det)) ; 
+    else {
+           AliInfo("It is a new GRP object");
+        grpObject = dynamic_cast<AliGRPObject*>(entry->GetObject());  // new GRP entry
+    }
 
-  AliInfo(Form("Retrieving QA checker for %s", detName.Data())) ; 
-  TPluginManager* pluginManager = gROOT->GetPluginManager() ;
-  TString qacName = "Ali" + detName + "QAChecker" ;
+    entry->SetOwner(0);
+    AliCDBManager::Instance()->UnloadFromCache("GRP/GRP/Data");
+  }
 
-  AliQACheckerBase * qac = NULL ;
-  // first check if a plugin is defined for the quality assurance checker
-  TPluginHandler* pluginHandler = pluginManager->FindHandler("AliQAChecker", detName.Data());
-  // if not, add a plugin for it
-  if (!pluginHandler) {
-    //AliInfo(Form("defining plugin for %s", qacName.Data()));
-    TString libs = gSystem->GetLibraries();
-   if (libs.Contains("lib" + detName + "base.so") || (gSystem->Load("lib" + detName + "base.so") >= 0))
-      pluginManager->AddHandler("AliQAChecker", detName, qacName, detName + "qac", qacName + "()");
-    else 
-      pluginManager->AddHandler("AliQAChecker", detName, qacName, detName, qacName + "()");
+  if (!grpObject) {
+     AliFatal("No GRP entry found in OCDB!");
+  }
 
-   pluginHandler = pluginManager->FindHandler("AliQAChecker", detName);
+  TString lhcState = grpObject->GetLHCState();
+  if (lhcState==AliGRPObject::GetInvalidString()) {
+    AliError("GRP/GRP/Data entry:  missing value for the LHC state ! Using UNKNOWN");
+    lhcState = "UNKNOWN";
+  }
 
-  if (pluginHandler && (pluginHandler->LoadPlugin() == 0)) 
-    qac = (AliQACheckerBase *) pluginHandler->ExecPlugin(0);
-  
-  if (qac) 
-    fCheckers[det] = qac ; 
+  TString beamType = grpObject->GetBeamType();
+  if (beamType==AliGRPObject::GetInvalidString()) {
+    AliError("GRP/GRP/Data entry:  missing value for the beam type ! Using UNKNOWN");
+    beamType = "UNKNOWN";
   }
 
- return qac ; 
-}
+  Float_t beamEnergy = grpObject->GetBeamEnergy();
+  if (beamEnergy==AliGRPObject::GetInvalidFloat()) {
+    AliError("GRP/GRP/Data entry:  missing value for the beam energy ! Using 0");
+    beamEnergy = 0;
+  }
 
+  TString runType = grpObject->GetRunType();
+  if (runType==AliGRPObject::GetInvalidString()) {
+    AliError("GRP/GRP/Data entry:  missing value for the run type ! Using UNKNOWN");
+    runType = "UNKNOWN";
+  }
 
-//_____________________________________________________________________________
-TDirectory * AliQAChecker::GetRefSubDir(const char * det, const char * task)     
-{ 
-  // Opens and returns the file with the reference data 
-  TFile * f = AliQA::GetQARefFile() ; //TFile::Open(fRefDirName, "READ") ;
-  TDirectory * rv = NULL ; 
-  if (!f) { 
-    AliError(Form("Cannot find reference file %s", (AliQA::GetQARefFileName()))) ; 
-    return rv ; 
+  Int_t activeDetectors = grpObject->GetDetectorMask();
+  if (activeDetectors==AliGRPObject::GetInvalidInt()) {
+    AliError("GRP/GRP/Data entry:  missing value for the detector mask ! Using 1074790399");
+    activeDetectors = 1074790399;
   }
-  rv = f->GetDirectory(det) ; 
-  if (!rv) {
-    AliWarning(Form("Directory %s not found in %d", det, (AliQA::GetQARefFileName()))) ; 
-  } else {
-    rv = rv->GetDirectory(task) ; 
-    if (!rv) 
-      AliWarning(Form("Directory %s/%s not found in %s", det, task, (AliQA::GetQARefFileName()))) ; 
-  }  
-  return rv ; 
-}
 
-//_____________________________________________________________________________
-AliQAChecker * AliQAChecker::Instance()
-{
-       // returns unique instance of the checker
-  if ( ! fgQAChecker ) 
-   fgQAChecker = new AliQAChecker() ; 
-  return fgQAChecker ;  
+  fRunInfo = new AliRunInfo(lhcState, beamType, beamEnergy, runType, activeDetectors);
+
+  fRunInfoOwner = kTRUE ; 
 }
 
 //_____________________________________________________________________________
@@ -212,11 +279,11 @@ Bool_t AliQAChecker::Run(const char * fileName)
   stopwatch.Start();
 
   //search for all detectors QA directories
-  TList * detKeyList = GetDataFile(fileName)->GetListOfKeys() ; 
+  TList * detKeyList = AliQA::GetQADataFile(fileName)->GetListOfKeys() ; 
   TIter nextd(detKeyList) ; 
   TKey * detKey ; 
   while ( (detKey = dynamic_cast<TKey *>(nextd()) ) ) {
-    AliInfo(Form("Found %s", detKey->GetName())) ;
+    AliDebug(1, Form("Found %s", detKey->GetName())) ;
     //Check which detector
     TString detName ; 
     TString detNameQA(detKey->GetName()) ; 
@@ -229,7 +296,7 @@ Bool_t AliQAChecker::Run(const char * fileName)
        break ; 
       }
     } 
-    TDirectory * detDir = GetDataFile(fileName)->GetDirectory(detKey->GetName()) ; 
+    TDirectory * detDir = AliQA::GetQADataFile(fileName)->GetDirectory(detKey->GetName()) ; 
     TList * taskKeyList = detDir->GetListOfKeys() ;
     TIter nextt(taskKeyList) ; 
     TKey * taskKey ; 
@@ -244,7 +311,7 @@ Bool_t AliQAChecker::Run(const char * fileName)
                AliInfo(Form("QA checker found for %s", detName.Data())) ; 
       if (!qac)
                AliFatal(Form("QA checker not found for %s", detName.Data())) ; 
-      AliQA::ALITASK index = AliQA::kNULLTASK ; 
+      AliQA::ALITASK_t index = AliQA::kNULLTASK ; 
       if ( taskName == AliQA::GetTaskName(AliQA::kHITS) ) 
                index = AliQA::kSIM ; 
       if ( taskName == AliQA::GetTaskName(AliQA::kSDIGITS) ) 
@@ -259,15 +326,17 @@ Bool_t AliQAChecker::Run(const char * fileName)
                index = AliQA::kREC ; 
       if ( taskName == AliQA::GetTaskName(AliQA::kESDS) ) 
                index = AliQA::kESD ; 
-      qac->Init(AliQA::DETECTORINDEX(det)) ; 
-
-         TDirectory * refDir = GetRefSubDir(detNameQA.Data(), taskName.Data()) ;
-         if ( refDir ) { 
-               qac->SetRefandData(refDir, taskDir) ; 
-               qac->Run(index) ; 
+      qac->Init(AliQA::DETECTORINDEX_t(det)) ; 
+
+         TDirectory * refDir    = NULL ; 
+         TObjArray * refOCDBDir = NULL ;       
+         GetRefSubDir(detNameQA.Data(), taskName.Data(), refDir, refOCDBDir) ;
+         if ( refDir || refOCDBDir) {
+                 qac->SetRefandData(refDir, refOCDBDir, taskDir) ;
+                 qac->Run(index) ; 
          }
-    }
- }
+       }
 }
   AliInfo("QA performed for following detectors:") ; 
   for ( Int_t det = 0; det < AliQA::kNDET; det++) {
     if (fFoundDetectors.Contains(AliQA::GetDetName(det))) {
@@ -283,69 +352,49 @@ Bool_t AliQAChecker::Run(const char * fileName)
 }
 
 //_____________________________________________________________________________
-Bool_t AliQAChecker::Run(AliQA::DETECTORINDEX det, AliQA::TASKINDEX task, TList * list)
+Bool_t AliQAChecker::Run(AliQA::DETECTORINDEX_t det, AliQA::TASKINDEX_t task, TObject * obj)
 {
-  // run the Quality Assurance Checker for detector det, for task task starting from data in list
+       // run the Quality Assurance Checker for detector det, for task task starting from data in list
 
-  AliQACheckerBase * qac = GetDetQAChecker(det) ; 
-  if (qac)
-    AliInfo(Form("QA checker found for %s", AliQA::GetDetName(det).Data())) ;
-  if (!qac)
-       AliFatal(Form("QA checker not found for %s", AliQA::GetDetName(det).Data())) ; 
+       AliQACheckerBase * qac = GetDetQAChecker(det) ; 
+       if (qac)
+               AliDebug(1, Form("QA checker found for %s", AliQA::GetDetName(det).Data())) ;
+       if (!qac)
+               AliError(Form("QA checker not found for %s", AliQA::GetDetName(det).Data())) ; 
   
-  AliQA::ALITASK index = AliQA::kNULLTASK ; 
-  if ( task == AliQA::kRAWS ) 
+       AliQA::ALITASK_t index = AliQA::kNULLTASK ; 
+       if ( task == AliQA::kRAWS ) 
                index = AliQA::kRAW ; 
-  else if ( task == AliQA::kHITS ) 
+       else if ( task == AliQA::kHITS ) 
                index = AliQA::kSIM ; 
-  else if ( task == AliQA::kSDIGITS ) 
+       else if ( task == AliQA::kSDIGITS ) 
                index = AliQA::kSIM ; 
-  else if ( task == AliQA::kDIGITS ) 
+       else if ( task == AliQA::kDIGITS ) 
                index = AliQA::kSIM ; 
-  else if ( task == AliQA::kRECPOINTS ) 
+       else if ( task == AliQA::kRECPOINTS ) 
                index = AliQA::kREC ; 
-  else if ( task == AliQA::kTRACKSEGMENTS ) 
+       else if ( task == AliQA::kTRACKSEGMENTS ) 
                index = AliQA::kREC ; 
-  else if ( task == AliQA::kRECPARTICLES ) 
+       else if ( task == AliQA::kRECPARTICLES ) 
                index = AliQA::kREC ; 
-  else if ( task == AliQA::kESDS ) 
+       else if ( task == AliQA::kESDS ) 
                index = AliQA::kESD ; 
 
-  TDirectory * refDir = GetRefSubDir(AliQA::GetDetName(det).Data(), AliQA::GetTaskName(task).Data()) ;
-  if ( refDir ) { 
+       TDirectory * refDir    = NULL ; 
+       TObjArray * refOCDBDir = NULL ; 
        qac->Init(det) ; 
-       qac->SetRefandData(refDir) ; 
-       qac->Run(index, list) ; 
+       GetRefSubDir(AliQA::GetDetName(det), AliQA::GetTaskName(task), refDir, refOCDBDir) ;
+       if ( refDir || refOCDBDir)  // references found
+         qac->SetRefandData(refDir, refOCDBDir) ; 
+       
+  TString className(obj->ClassName()) ; 
+  if (className.Contains(TObjArray::Class()->GetName())) {
+    qac->Run(index, static_cast<TObjArray *>(obj)) ; 
+  } else if (className.Contains(TNtupleD::Class()->GetName())) {
+    qac->Run(index, static_cast<TNtupleD *>(obj)) ; 
+  } else {
+    AliError(Form("%s class not implemented", className.Data())) ; 
+    return kFALSE ; 
   }
-  return kTRUE ; 
-  
+       return kTRUE ; 
 }
-
-//_____________________________________________________________________________
-//void AliQAChecker::SetQAResultDirName(const char * name)
-//{
-//  // Set the root directory where to store the QA status object
-//
-//  fgQAResultDirName.Prepend(name) ; 
-//  AliInfo(Form("QA results are in  %s", fgQAResultDirName.Data())) ;
-//  if ( fgQAResultDirName.Contains("local://")) 
-//    fgQAResultDirName.ReplaceAll("local:/", "") ;
-//  fgQAResultFileName.Prepend(fgQAResultDirName) ;
-//}
-
-//_____________________________________________________________________________
-//void AliQAChecker::SetRefDirName(const char * name)
-//{
-//  // Set the root directory of reference data
-//
-//  fRefDirName.Prepend(name) ; 
-//  fRefDirName.Append(fRefName) ; 
-//  AliInfo(Form("Reference data are taken from %s", fRefDirName.Data())) ;
-//  if ( fRefDirName.Contains("local://")) 
-//    fRefDirName.ReplaceAll("local:/", "") ; 
-//}
-//
-
-
-
-