X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=STEER%2FAliQADataMaker.cxx;h=7c77dfc1eca0089d229b630a3828b50c9ea3838a;hb=583e63b8cc5bcb315a36593ccc48f486c2907bbf;hp=55a6b7008853a337918e18983c6c0a0be8135013;hpb=940d8e5f03337195650d230fdaee24568e91ca1f;p=u%2Fmrichter%2FAliRoot.git diff --git a/STEER/AliQADataMaker.cxx b/STEER/AliQADataMaker.cxx index 55a6b700885..7c77dfc1eca 100644 --- a/STEER/AliQADataMaker.cxx +++ b/STEER/AliQADataMaker.cxx @@ -24,11 +24,23 @@ // // --- ROOT system --- +#include #include #include #include #include #include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include // --- Standard library --- @@ -38,22 +50,31 @@ #include "AliQAChecker.h" #include "AliESDEvent.h" #include "AliRawReader.h" +#include "AliDetectorRecoParam.h" + ClassImp(AliQADataMaker) //____________________________________________________________________________ -AliQADataMaker::AliQADataMaker(const char * name, const char * title) : +AliQADataMaker::AliQADataMaker(const Char_t * name, const Char_t * title) : TNamed(name, title), fOutput(0x0), fDetectorDir(0x0), fDetectorDirName(""), - fCurrentCycle(-1), + fCurrentCycle(0), fCycle(9999999), fCycleCounter(0), - fRun(0) + fWriteExpert(kFALSE), + fParameterList(new TList*[AliRecoParam::kNSpecies]), + fRun(0), + fEventSpecie(AliRecoParam::kDefault), + fDigitsArray(NULL) { // ctor fDetectorDirName = GetName() ; + for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) { + fParameterList[specie] = NULL ; + } } //____________________________________________________________________________ @@ -65,43 +86,94 @@ AliQADataMaker::AliQADataMaker(const AliQADataMaker& qadm) : fCurrentCycle(qadm.fCurrentCycle), fCycle(qadm.fCycle), fCycleCounter(qadm.fCycleCounter), - fRun(qadm.fRun) + fWriteExpert(qadm.fWriteExpert), + fParameterList(qadm.fParameterList), + fRun(qadm.fRun), + fEventSpecie(qadm.fEventSpecie), + fDigitsArray(NULL) { //copy ctor fDetectorDirName = GetName() ; + for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) { + fParameterList[specie] = qadm.fParameterList[specie] ; + // fImage[specie] = qadm.fImage[specie] ; + } +} + +//____________________________________________________________________________ +AliQADataMaker::~AliQADataMaker() +{ + for (Int_t esIndex = 0 ; esIndex < AliRecoParam::kNSpecies ; esIndex++) { + if (fParameterList[esIndex] ) + delete fParameterList[esIndex] ; + } + delete[] fParameterList ; + + if (fDigitsArray) { + fDigitsArray->Clear() ; + delete fDigitsArray ; + } } //____________________________________________________________________________ -Int_t AliQADataMaker::Add2List(TH1 * hist, const Int_t index, TObjArray * list) +Int_t AliQADataMaker::Add2List(TH1 * hist, const Int_t index, TObjArray ** list, const Bool_t expert, const Bool_t image, const Bool_t saveForCorr) { // Set histograms memory resident and add to the list // Maximm allowed is 10000 - TString className(hist->ClassName()) ; - if( ! className.BeginsWith("T") ) { - AliError(Form("QA data Object must be a generic ROOT object and not %s", className.Data())) ; -// return -1 ; - } - if ( index > 10000 ) { - AliError("Max number of authorized QA objects is 10000") ; - return -1 ; - } else { - hist->SetDirectory(0) ; - list->AddAtAndExpand(hist, index) ; - return list->GetLast() ; - } + + Int_t rv = -1 ; + TClass * classType = hist->Class() ; + TString className(classType->GetName()) ; + if( ! className.BeginsWith("T") && ! classType->InheritsFrom("TH1") ) { + AliError(Form("QA data Object must be a generic ROOT object and derive fom TH1 and not %s", className.Data())) ; + } else if ( index > AliQAv1::GetMaxQAObj() ) { + AliError(Form("Max number of authorized QA objects is %d", AliQAv1::GetMaxQAObj())) ; + } else { + hist->SetDirectory(0) ; + if (expert) + hist->SetBit(AliQAv1::GetExpertBit()) ; + if (image) + hist->SetBit(AliQAv1::GetImageBit()) ; + const Char_t * name = Form("%s_%s", AliRecoParam::GetEventSpecieName(fEventSpecie), hist->GetName()) ; + hist->SetName(name) ; + if(saveForCorr) { + const Char_t * cname = Form("%s_%s", list[AliRecoParam::AConvert(AliRecoParam::kDefault)]->GetName(), hist->GetName()) ; + TParameter * p = new TParameter(cname, 9999.9999) ; + if ( fParameterList[AliRecoParam::AConvert(fEventSpecie)] == NULL ) + fParameterList[AliRecoParam::AConvert(fEventSpecie)] = new TList() ; + fParameterList[AliRecoParam::AConvert(fEventSpecie)]->Add(p) ; + } + list[AliRecoParam::AConvert(fEventSpecie)]->AddAtAndExpand(hist, index) ; + rv = list[AliRecoParam::AConvert(fEventSpecie)]->GetLast() ; + } + return rv ; +} + +//____________________________________________________________________________ +TH1 * AliQADataMaker::CloneMe(TH1 * hist, Int_t specie) const +{ + // clones a histogram + const Char_t * name = Form("%s_%s", AliRecoParam::GetEventSpecieName(specie), hist->GetName()) ; + TH1 * hClone = static_cast(hist->Clone(name)) ; + if ( hist->TestBit(AliQAv1::GetExpertBit()) ) + hClone->SetBit(AliQAv1::GetExpertBit()) ; + if ( hist->TestBit(AliQAv1::GetImageBit()) ) + hClone->SetBit(AliQAv1::GetImageBit()) ; + return hClone ; } //____________________________________________________________________________ -void AliQADataMaker::DefaultEndOfDetectorCycle(AliQA::TASKINDEX_t task) +void AliQADataMaker::DefaultEndOfDetectorCycle(AliQAv1::TASKINDEX_t task) { // this method must be oveloaded by detectors // sets the QA result to Fatal - AliQA::Instance(AliQA::GetDetIndex(GetName())) ; - AliQA * qa = AliQA::Instance(task) ; - qa->Set(AliQA::kFATAL) ; - AliQA::GetQAResultFile()->cd() ; - qa->Write(AliQA::GetQAName(), kWriteDelete) ; - AliQA::GetQAResultFile()->Close() ; + AliQAv1::Instance(AliQAv1::GetDetIndex(GetName())) ; + AliQAv1 * qa = AliQAv1::Instance(task) ; + for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) + qa->Set(AliQAv1::kFATAL, specie) ; + AliQAv1::GetQAResultFile()->cd() ; + qa->Write(AliQAv1::GetQAName(), kWriteDelete) ; + AliQAv1::GetQAResultFile()->Close() ; } //____________________________________________________________________________ @@ -113,27 +185,64 @@ void AliQADataMaker::Finish() const } //____________________________________________________________________________ -TObject * AliQADataMaker::GetData(TObjArray * list, const Int_t index) +TObject * AliQADataMaker::GetData(TObjArray ** list, const Int_t index) { - // Returns the QA object at index. Limit is 100. - if (list) { - if ( index > 10000 ) { - AliError("Max number of authorized QA objects is 10000") ; - return NULL ; - } else { - return list->At(index) ; - } - } else { + // Returns the QA object at index. Limit is AliQAv1::GetMaxQAObj() + if ( ! list ) { AliError("Data list is NULL !!") ; return NULL ; } + + SetEventSpecie(fEventSpecie) ; + Int_t esindex = AliRecoParam::AConvert(fEventSpecie) ; + TH1 * histClone = NULL ; + TObjArray * arr = list[esindex] ; + if (arr) { + if ( ! arr->GetEntriesFast() ) { + // Initializes the histograms + TString arrName(arr->GetName()) ; + if (arrName.Contains(AliQAv1::GetTaskName(AliQAv1::kRAWS))) + InitRaws() ; + else if (arrName.Contains(AliQAv1::GetTaskName(AliQAv1::kHITS))) + InitHits() ; + else if (arrName.Contains(AliQAv1::GetTaskName(AliQAv1::kSDIGITS))) + InitSDigits() ; + else if (arrName.Contains(AliQAv1::GetTaskName(AliQAv1::kDIGITS))) + InitDigits() ; + else if (arrName.Contains(AliQAv1::GetTaskName(AliQAv1::kDIGITSR))) + InitDigits() ; + else if (arrName.Contains(AliQAv1::GetTaskName(AliQAv1::kRECPOINTS))) + InitRecPoints() ; + else if (arrName.Contains(AliQAv1::GetTaskName(AliQAv1::kESDS))) + InitESDs() ; + } + if ( index > AliQAv1::GetMaxQAObj() ) { + AliError(Form("Max number of authorized QA objects is %d", AliQAv1::GetMaxQAObj())) ; + } else { + if ( arr->At(index) ) { + histClone = static_cast(arr->At(index)) ; + } + } + } + return histClone ; } -//____________________________________________________________________________ -void AliQADataMaker::Reset(const Bool_t sameCycle) -{ - // Resets defaut value of data members - if (!sameCycle) { - fCycleCounter = 0 ; - } +//____________________________________________________________________________ +TObjArray* AliQADataMaker::Init(AliQAv1::TASKINDEX_t task, AliRecoParam::EventSpecie_t es, Int_t cycles) +{ + // Initialializes and returns the QAData list for a given event specie + TObjArray ** ar = Init(task, cycles) ; + return ar[AliRecoParam::AConvert(es)] ; +} + +//____________________________________________________________________________ +Bool_t AliQADataMaker::IsValidEventSpecie(Int_t eventSpecieIndex, TObjArray ** list) +{ + // check if event specie was present in current run or + // if histograms of this event specie have been created + if (! AliQAv1::Instance(AliQAv1::GetDetIndex(GetName()))->IsEventSpecieSet(AliRecoParam::ConvertIndex(eventSpecieIndex)) || ! list[eventSpecieIndex]->GetEntriesFast() ) + return kFALSE ; + else + return kTRUE ; } +