/************************************************************************** * 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. * **************************************************************************/ /* Produces the data needed to calculate the quality assurance. All data must be mergeable objects. Based on PHOS code written by Y. Schutz CERN July 2007 */ // --- ROOT system --- #include #include #include #include #include #include // --- Standard library --- // --- AliRoot header files --- #include "AliESDCaloCluster.h" #include "AliLog.h" #include "AliEMCALDigit.h" #include "AliEMCALHit.h" #include "AliEMCALQADataMakerSim.h" #include "AliQAChecker.h" #include "AliEMCALSDigitizer.h" ClassImp(AliEMCALQADataMakerSim) //____________________________________________________________________________ AliEMCALQADataMakerSim::AliEMCALQADataMakerSim() : AliQADataMakerSim(AliQAv1::GetDetName(AliQAv1::kEMCAL), "EMCAL Quality Assurance Data Maker") { // ctor } //____________________________________________________________________________ AliEMCALQADataMakerSim::AliEMCALQADataMakerSim(const AliEMCALQADataMakerSim& qadm) : AliQADataMakerSim() { //copy ctor SetName((const char*)qadm.GetName()) ; SetTitle((const char*)qadm.GetTitle()); } //__________________________________________________________________ AliEMCALQADataMakerSim& AliEMCALQADataMakerSim::operator = (const AliEMCALQADataMakerSim& qadm ) { // Assign operator. this->~AliEMCALQADataMakerSim(); new(this) AliEMCALQADataMakerSim(qadm); return *this; } //____________________________________________________________________________ void AliEMCALQADataMakerSim::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray ** list) { //Detector specific actions at end of cycle // do the QA checking ResetEventTrigClasses(); // reset triggers list to select all histos AliQAChecker::Instance()->Run(AliQAv1::kEMCAL, task, list) ; } //____________________________________________________________________________ void AliEMCALQADataMakerSim::InitHits() { // create Hits histograms in Hits subdir const Bool_t expert = kTRUE ; const Bool_t image = kTRUE ; TH1F * h0 = new TH1F("hEmcalHits", "Hits energy distribution in EMCAL;Energy [MeV];Counts", 200, 0., 2.) ; //GeV h0->Sumw2() ; Add2HitsList(h0, 0, !expert, image) ; TH1I * h1 = new TH1I("hEmcalHitsMul", "Hits multiplicity distribution in EMCAL;# of Hits;Entries", 1000, 0, 10000) ; h1->Sumw2() ; Add2HitsList(h1, 1, !expert, image) ; // ClonePerTrigClass(AliQAv1::kHITS); // this should be the last line } //____________________________________________________________________________ void AliEMCALQADataMakerSim::InitDigits() { // create Digits histograms in Digits subdir const Bool_t expert = kTRUE ; const Bool_t image = kTRUE ; TH1I * h0 = new TH1I("hEmcalDigits", "Digits amplitude distribution in EMCAL;Amplitude [ADC counts];Counts", 500, 0, 500) ; h0->Sumw2() ; Add2DigitsList(h0, 0, !expert, image) ; TH1I * h1 = new TH1I("hEmcalDigitsMul", "Digits multiplicity distribution in EMCAL;# of Digits;Entries", 200, 0, 2000) ; h1->Sumw2() ; Add2DigitsList(h1, 1, !expert, image) ; // ClonePerTrigClass(AliQAv1::kDIGITS); // this should be the last line } //____________________________________________________________________________ void AliEMCALQADataMakerSim::InitSDigits() { // create SDigits histograms in SDigits subdir const Bool_t expert = kTRUE ; const Bool_t image = kTRUE ; TH1F * h0 = new TH1F("hEmcalSDigits", "SDigits energy distribution in EMCAL;Energy [MeV];Counts", 200, 0., 20.) ; h0->Sumw2() ; Add2SDigitsList(h0, 0, !expert, image) ; TH1I * h1 = new TH1I("hEmcalSDigitsMul", "SDigits multiplicity distribution in EMCAL;# of SDigits;Entries", 500, 0, 5000) ; h1->Sumw2() ; Add2SDigitsList(h1, 1, !expert, image) ; // ClonePerTrigClass(AliQAv1::kSDIGITS); // this should be the last line } //____________________________________________________________________________ void AliEMCALQADataMakerSim::MakeHits() { //make QA data from Hits FillHitsData(1,fHitsArray->GetEntriesFast()) ; TIter next(fHitsArray) ; AliEMCALHit * hit ; while ( (hit = dynamic_cast(next())) ) { FillHitsData(0, hit->GetEnergy()) ; } } //____________________________________________________________________________ void AliEMCALQADataMakerSim::MakeHits(TTree * hitTree) { // make QA data from Hit Tree if (fHitsArray) fHitsArray->Clear() ; else fHitsArray = new TClonesArray("AliEMCALHit", 1000); TBranch * branch = hitTree->GetBranch("EMCAL") ; if ( ! branch ) { AliWarning("EMCAL branch in Hit Tree not found") ; return;} // branch->SetAddress(&fHitsArray) ; for (Int_t ientry = 0 ; ientry < branch->GetEntries() ; ientry++) { branch->GetEntry(ientry) ; MakeHits() ; fHitsArray->Clear() ; } IncEvCountCycleHits(); IncEvCountTotalHits(); // } //____________________________________________________________________________ void AliEMCALQADataMakerSim::MakeDigits() { // makes data from Digits FillDigitsData(1,fDigitsArray->GetEntriesFast()) ; TIter next(fDigitsArray) ; AliEMCALDigit * digit ; while ( (digit = dynamic_cast(next())) ) { FillDigitsData(0, digit->GetAmp()) ; } } //____________________________________________________________________________ void AliEMCALQADataMakerSim::MakeDigits(TTree * digitTree) { // makes data from Digit Tree if (fDigitsArray) fDigitsArray->Clear("C") ; else fDigitsArray = new TClonesArray("AliEMCALDigit", 1000) ; TBranch * branch = digitTree->GetBranch("EMCAL") ; if ( ! branch ) { AliWarning("EMCAL branch in Digit Tree not found") ; return; } // branch->SetAddress(&fDigitsArray) ; branch->GetEntry(0) ; MakeDigits() ; // IncEvCountCycleDigits(); IncEvCountTotalDigits(); } //____________________________________________________________________________ void AliEMCALQADataMakerSim::MakeSDigits() { // makes data from SDigits //Need a copy of the SDigitizer to calibrate the sdigit amplitude to //energy in GeV AliEMCALSDigitizer* sDigitizer = new AliEMCALSDigitizer(); FillSDigitsData(1,fSDigitsArray->GetEntriesFast()) ; TIter next(fSDigitsArray) ; AliEMCALDigit * sdigit ; while ( (sdigit = dynamic_cast(next())) ) { FillSDigitsData(0, sDigitizer->Calibrate(sdigit->GetAmp())) ; } delete sDigitizer; } //____________________________________________________________________________ void AliEMCALQADataMakerSim::MakeSDigits(TTree * sdigitTree) { // makes data from SDigit Tree if (fSDigitsArray) fSDigitsArray->Clear("C") ; else fSDigitsArray = new TClonesArray("AliEMCALDigit", 1000) ; TBranch * branch = sdigitTree->GetBranch("EMCAL") ; if ( ! branch ) { AliWarning("EMCAL branch in SDigit Tree not found"); return;} // branch->SetAddress(&fSDigitsArray); branch->GetEntry(0); MakeSDigits(); // IncEvCountCycleSDigits(); IncEvCountTotalSDigits(); // } //____________________________________________________________________________ void AliEMCALQADataMakerSim::StartOfDetectorCycle() { //Detector specific actions at start of cycle }