/************************************************************************** * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * * * Author: The ALICE Off-line Project. * * Contributors are mentioned in the code where appropriate. * * * * Permission to use, copy, modify and distribute this software and its * * documentation strictly for non-commercial purposes is hereby granted * * without fee, provided that the above copyright notice appears in all * * copies and that both the copyright notice and this permission notice * * appear in the supporting documentation. The authors make no claims * * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ /* $Id$ */ //--- // Produces the data needed to calculate the quality assurance. // All data must be mergeable objects. // A. Mastroserio //--- // --- ROOT system --- #include #include #include #include // --- Standard library --- // --- AliRoot header files --- #include "AliESDEvent.h" #include "AliLog.h" #include "AliT0digit.h" #include "AliT0hit.h" #include "AliT0RecPoint.h" #include "AliT0QADataMakerSim.h" #include "AliQAChecker.h" #include "AliT0RawReader.h" ClassImp(AliT0QADataMakerSim) //____________________________________________________________________________ AliT0QADataMakerSim::AliT0QADataMakerSim() : AliQADataMakerSim(AliQA::GetDetName(AliQA::kT0), "T0 Quality Assurance Data Maker") { // ctor /* for(Int_t i=0; i<24; i++) { fhHitsTime[i]=0x0; fhDigCFD[i]=0x0; fhDigLEDamp[i]=0x0; fhRecCFD[i]=0x0; fhRecLEDamp[i]=0x0; fhRecQTC[i]=0x0; } */ // fDetectorDir = fOutput->GetDirectory(GetName()) ; // if (!fDetectorDir) // fDetectorDir = fOutput->mkdir(GetName()) ; } //____________________________________________________________________________ AliT0QADataMakerSim::AliT0QADataMakerSim(const AliT0QADataMakerSim& qadm) : AliQADataMakerSim() { //copy ctor /* for(Int_t i=0; i<24; i++) { fhHitsTime[i]=0x0; fhDigCFD[i]=0x0; fhDigLEDamp[i]=0x0; fhRecCFD[i]=0x0; fhRecLEDamp[i]=0x0; fhRecQTC[i]=0x0; } */ SetName((const char*)qadm.GetName()) ; SetTitle((const char*)qadm.GetTitle()); } //__________________________________________________________________ AliT0QADataMakerSim& AliT0QADataMakerSim::operator = (const AliT0QADataMakerSim& qadm ) { // Equal operator. this->~AliT0QADataMakerSim(); new(this) AliT0QADataMakerSim(qadm); return *this; } //____________________________________________________________________________ void AliT0QADataMakerSim::EndOfDetectorCycle(AliQA::TASKINDEX_t task, TObjArray * list) { //Detector specific actions at end of cycle // do the QA checking AliQAChecker::Instance()->Run(AliQA::kT0, task, list) ; } //____________________________________________________________________________ void AliT0QADataMakerSim::StartOfDetectorCycle() { //Detector specific actions at start of cycle } //____________________________________________________________________________ void AliT0QADataMakerSim::InitHits() { // create Hits histograms in Hits subdir TString timename; TH1F * fhHitsTime[24]; for (Int_t i=0; i<24; i++) { timename ="hHitTime"; timename += i; if(i<12) fhHitsTime[i] = new TH1F(timename.Data(),timename.Data(),100,2000,3000); else fhHitsTime[i] = new TH1F(timename.Data(),timename.Data(),100,12000,13000); Add2HitsList( fhHitsTime[i],i); } /* TH2F *fhHitsEffA = new TH2F("hHitsEffA", "Hits Efficiency A side", 25,-0.5,24.5, 100,12,13 ); Add2HitsList(fhHitsEffA,0); TH2F *fhHitsEffC = new TH2F("hHitsEffC", "Hits Efficiency C side", 25,-0.5,24.5, 100,2,3 ); Add2HitsList(fhHitsEffC,1); */ } //____________________________________________________________________________ void AliT0QADataMakerSim::InitDigits() { // create Digits histograms in Digits subdir /* TH2F * fhDigCFD = new TH2F("fhDigCFD", " CFD digits",25,-0.5,24.5,100,100,1000); Add2DigitsList( fhDigCFD,0); TH2F *fhDigLEDamp = new TH2F("fhDigLEDamp", " LED-CFD digits",25,-0.5,24.5,100,100,1000); Add2DigitsList( fhDigLEDamp,1); TH2F * fhDigQTC = new TH2F("fhDigQTC", " QTC digits",25,-0.5,24.5,100,100,1000); Add2DigitsList( fhDigQTC,2); TH1F * fhDigMean = new TH1F("hDigMean","online mean signal", 100,500,600); Add2DigitsList( fhDigMean,23); */ TString timename, ampname, qtcname; TH1F *fhDigCFD[24]; TH1F * fhDigLEDamp[24]; TH1F *fhDigQTC[24]; for (Int_t i=0; i<24; i++) { timename ="hDigCFD"; ampname = "hDigLED"; qtcname = "hDigQTC"; timename += i; ampname += i; qtcname += i; fhDigCFD[i] = new TH1F(timename.Data(), timename.Data(),100,100,5000); Add2DigitsList( fhDigCFD[i],i); fhDigLEDamp[i] = new TH1F(ampname.Data(), ampname.Data(),100,120000,150000); Add2DigitsList( fhDigLEDamp[i],i+24); fhDigQTC[i] = new TH1F(qtcname.Data(), qtcname.Data(),100,100,500); Add2DigitsList( fhDigQTC[i],i+48); } TH1F* fhDigEff = new TH1F("hDigEff","digits efficiency", 25,-0.5,24.5); Add2DigitsList( fhDigEff,72); TH1F* fhDigMean = new TH1F("hDigMean","online mean signal", 100,500,600); Add2DigitsList( fhDigMean,73); } //____________________________________________________________________________ void AliT0QADataMakerSim::MakeHits(TTree *hitTree) { //fills QA histos for Hits TClonesArray * hits = new TClonesArray("AliT0hit", 1000); TBranch * branch = hitTree->GetBranch("T0") ; if ( ! branch ) { AliWarning("T0 branch in Hit Tree not found") ; } else { if (branch) { branch->SetAddress(&hits); }else{ AliError("Branch T0 hit not found"); exit(111); } Int_t ntracks = (Int_t) hitTree->GetEntries(); if (ntracks<=0) return; // Start loop on tracks in the hits containers for (Int_t track=0; trackGetEntry(track); Int_t nhits = hits->GetEntriesFast(); for (Int_t ihit=0;ihitUncheckedAt(ihit); if (!startHit) { AliError("The unchecked hit doesn't exist"); break; } Int_t pmt=startHit->Pmt(); GetHitsData(pmt-1)->Fill(startHit->Time()) ; } } } } //____________________________________________________________________________ void AliT0QADataMakerSim::MakeDigits( TTree *digitsTree) { //fills QA histos for Digits TArrayI *digCFD = new TArrayI(24); TArrayI *digLED = new TArrayI(24); TArrayI *digQT0 = new TArrayI(24); TArrayI *digQT1 = new TArrayI(24); Int_t refpoint=0; TBranch *brDigits=digitsTree->GetBranch("T0"); AliT0digit *fDigits = new AliT0digit() ; if (brDigits) { brDigits->SetAddress(&fDigits); }else{ AliError(Form("EXEC Branch T0 digits not found")); return; } digitsTree->GetEvent(0); digitsTree->GetEntry(0); brDigits->GetEntry(0); fDigits->GetTimeCFD(*digCFD); fDigits->GetTimeLED(*digLED); fDigits->GetQT0(*digQT0); fDigits->GetQT1(*digQT1); refpoint = fDigits->RefPoint(); for (Int_t i=0; i<24; i++) { if (digCFD->At(i)>0) { Int_t cfd=digCFD->At(i)- refpoint; GetDigitsData(i) ->Fill(cfd); GetDigitsData(i+24) -> Fill(digLED->At(i) - digCFD->At(i)); GetDigitsData(i+48) -> Fill(digQT1->At(i) - digQT0->At(i)); } } delete digCFD; delete digLED; delete digQT0; delete digQT1; }