/************************************************************************** * 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. // // // // Author: // // Sylwester Radomski (radomski@physi.uni-heidelberg.de) // // // //////////////////////////////////////////////////////////////////////////// // --- ROOT system --- #include #include #include #include #include #include #include #include // --- AliRoot header files --- #include "AliESDEvent.h" #include "AliLog.h" #include "AliRawReader.h" #include "AliTRDcluster.h" #include "AliTRDQADataMakerRec.h" #include "AliTRDgeometry.h" #include "AliTRDrawStream.h" #include "AliTRDdigitsManager.h" #include "AliTRDSignalIndex.h" #include "AliTRDarrayADC.h" #include "AliQAChecker.h" ClassImp(AliTRDQADataMakerRec) //____________________________________________________________________________ AliTRDQADataMakerRec::AliTRDQADataMakerRec() : AliQADataMakerRec(AliQAv1::GetDetName(AliQAv1::kTRD), "TRD Quality Assurance Data Maker") { // // Default constructor } //____________________________________________________________________________ AliTRDQADataMakerRec::AliTRDQADataMakerRec(const AliTRDQADataMakerRec& qadm) : AliQADataMakerRec() { // // Copy constructor // SetName((const char*)qadm.GetName()) ; SetTitle((const char*)qadm.GetTitle()); } //__________________________________________________________________ AliTRDQADataMakerRec& AliTRDQADataMakerRec::operator=(const AliTRDQADataMakerRec& qadm) { // // Equal operator. // this->~AliTRDQADataMakerRec(); new(this) AliTRDQADataMakerRec(qadm); return *this; } //____________________________________________________________________________ void AliTRDQADataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray ** list) { // // Detector specific actions at end of cycle // //TStopwatch watch; //watch.Start(); ResetEventTrigClasses(); AliDebug(AliQAv1::GetQADebugLevel(), "End of TRD cycle"); // for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) { // loop over event types // if (!IsValidEventSpecie(specie, list)) continue; SetEventSpecie(AliRecoParam::ConvertIndex(specie)); // for (int itc=-1;itcDivide(mnCls); } // if (task == AliQAv1::kRECPOINTS) { // TH1F * hist = new TH1F("fitHist", "", 200, -0.5, 199.5); TObjArray& arrRP = *GetRecPointsDataOfTrigClass(itc); // RS Histos matching to trigger class // fill detector map; TH1* h0 = (TH1*) arrRP[0]; TH1* detMap = (TH1*) arrRP[87]; if (h0 && detMap) { for(Int_t i = 0 ; i < 540 ; i++) { Double_t v = h0->GetBinContent(i+1); Int_t sm = i/30; Int_t det = i%30; Int_t bin = detMap->FindBin(sm, det); detMap->SetBinContent(bin, v); } } // // Rec points full chambers TH2* h2tmp = (TH2*) arrRP[1]; TH1* h12 = (TH1*) arrRP[12]; TH1* h13 = (TH1*) arrRP[13]; if (h2tmp && h12 && h13) { for (Int_t i = 0 ; i < 540 ; i++) { //AliDebug(AliQAv1::GetQADebugLevel(), Form("I = %d", i)); hist->Reset(); // project TH2F into TH1F for(Int_t b = 1 ; b < hist->GetXaxis()->GetNbins()-1 ; b++) { Double_t xvalue = hist->GetBinCenter(b); Int_t bin = h2tmp->FindBin(i,xvalue); Double_t value = h2tmp->GetBinContent(bin); hist->SetBinContent(b, value); } //AliDebug(AliQAv1::GetQADebugLevel(), Form("Sum = %d %f\n", i, hist->GetSum())); if (hist->GetSum() < 100) continue; // not enougth data in a chamber // hist->Fit("landau", "q0", "goff", 10, 180); TF1 *fit = hist->GetFunction("landau"); h12->Fill(fit->GetParameter(1)); h13->Fill(fit->GetParameter(2)); } } // // time-bin by time-bin sm by sm TH3* h3tmp = (TH3*) arrRP[10]; if (h3tmp) { for(Int_t i=0; i<18; i++) { // loop over super-modules for(Int_t j=0; jReset(); for(Int_t b = 1 ; b < hist->GetXaxis()->GetNbins()-1 ; b++) { Double_t xvalue = hist->GetBinCenter(b); Double_t svalue = 0.0; for(Int_t det = i*30 ; det < (i+1)*30 ; det++) { // loop over detectors Int_t bin = h3tmp->FindBin(det,j,xvalue); Double_t value = h3tmp->GetBinContent(bin); svalue += value; } //AliDebug(AliQAv1::GetQADebugLevel(), Form("v = %f\n", value)); hist->SetBinContent(b, svalue); } // if (hist->GetSum() < 100) continue; // hist->Fit("landau", "q0", "goff", 10, 180); TF1 *fit = hist->GetFunction("landau"); // TH1 *hi = (TH1*)arrRP[14+18+i]; if (!hi) continue; hi->SetMarkerStyle(20); Int_t bin = hi->FindBin(j); // printf("%d %d %d\n", det, j, bin); // Double_t value = TMath::Abs(fit->GetParameter(1)); Double_t error = TMath::Abs(fit->GetParError(1)); // if (value/error < 3) continue; // insuficient statistics // hi->SetBinContent(bin, value); hi->SetBinError(bin, error); } // j } // i // // for numerical convergence TF1 *form = new TF1("formLandau", "landau", 0, 200); // // time-bin by time-bin chamber by chamber for (Int_t i=0; i<540; i++) { for(Int_t j=0; jReset(); for(Int_t b = 1 ; b < hist->GetXaxis()->GetNbins()-1 ; b++) { Double_t xvalue = hist->GetBinCenter(b); Int_t bin = h3tmp->FindBin(i,j,xvalue); Double_t value = h3tmp->GetBinContent(bin); //AliDebug(AliQAv1::GetQADebugLevel(), Form("v = %f\n", value)); hist->SetBinContent(b, value); } // if (hist->GetSum() < 100) continue; form->SetParameters(1000, 60, 20); hist->Fit(form, "q0", "goff", 20, 180); Int_t sm = i/30; Int_t det = i%30; TH1 *hi = (TH1*)arrRP[14+sm]; if (!hi) continue; Int_t bin = hi->FindBin(det,j); // printf("%d %d %d\n", det, j, bin); // Double_t value = TMath::Abs(form->GetParameter(1)); Double_t error = TMath::Abs(form->GetParError(1)); // if (value/error < 3) continue; // hi->SetBinContent(bin, value); hi->SetBinError(bin, error); } // j } // i } // h3tmp if (hist) delete hist; } // RECPOINTS // ////////////////////////// // const Int_t knbits = 6; // const char *suf[knbits] = {"TPCi", "TPCo", "TPCz", "TRDo", "TRDr", "TRDz"}; //const char *sufRatio[4] = {"TRDrTRDo", "TRDoTPCo", "TRDrTPCo", "TRDzTPCo"}; if (task == AliQAv1::kESDS) { // const Int_t knRatio = 4; const Int_t kN[knRatio] = {4,3,4,5}; const Int_t kD[knRatio] = {3,1,1,3}; // TObjArray& arrES = *GetESDsDataOfTrigClass(itc); // RS Histos matching to trigger class // create ratios for(Int_t type = 0 ; type < 2 ; type++) { for(Int_t i = 0 ; i < knRatio ; i++) { TH1 *ratio = (TH1*)arrES[19 + 2*i + type]; TH1 *histN = (TH1*)arrES[3 + 2*kN[i] + type]; TH1 *histD = (TH1*)arrES[3 + 2*kD[i] + type]; if ( ! (ratio && histN && histD) ) continue; BuildRatio(ratio, histN, histD); //ratio->Reset(); //ratio->Add(histN); //ratio->Divide(histD); } } // ratio for the fraction of electrons per stack TH1 *histN = (TH1*)arrES[33]; TH1 *histD = (TH1*)arrES[32]; TH1 *ratio = (TH1*)arrES[34]; BuildRatio(ratio, histN, histD); } // ESDs } // RS: loop over eventual clones per trigger class } // loop over species // call the checker AliQAChecker::Instance()->Run(AliQAv1::kTRD, task, list) ; // } //____________________________________________________________________________ void AliTRDQADataMakerRec::InitESDs() { // // Create ESDs histograms in ESDs subdir // const Bool_t expert = kTRUE ; const Bool_t image = kTRUE ; const Int_t kNhist = 36+5+4; TH1 *hist[kNhist]; Int_t histoCounter = -1 ; hist[++histoCounter] = new TH1F("qaTRD_esd_ntracks", "TRD esd ntracks;Number of tracks;Counts", 300, -0.5, 299.5); hist[++histoCounter] = new TH1F("qaTRD_esd_sector", "TRD esd sector;Sector;Counts", 18, -0.5, 17.7); hist[++histoCounter] = new TH1F("qaTRD_esd_bits", "TRD esd bits;Bits;Counts", 64, -0.5, 63.5); const Int_t knbits = 6; const char *suf[knbits] = {"TPCi", "TPCo", "TPCz", "TRDo", "TRDr", "TRDz"}; // histo = 3 for(Int_t i=0; iSumw2(); Add2ESDsList(hist[i], i, !expert, image); } // ClonePerTrigClass(AliQAv1::kESDS); // this should be the last line } //____________________________________________________________________________ void AliTRDQADataMakerRec::InitRecPoints() { // // Create Reconstructed Points histograms in RecPoints subdir // const Bool_t expert = kTRUE ; const Bool_t image = kTRUE ; //printf("Helo from Init rec points\n"); const Int_t kNhist = 14 + 4 * 18 + 2 + 9;// + 540; TH1 *hist[kNhist]; hist[0] = new TH1F("qaTRD_recPoints_det", "RRD recPoints det;Detector ID of the cluster;Counts", 540, -0.5, 539.5); hist[1] = new TH2F("qaTRD_recPoints_amp", "TRD recPoints amp;Amplitude;??", 540, -0.5, 539, 200, -0.5, 199.5); hist[2] = new TH1F("qaTRD_recPoints_npad", "TRD recPoints npad;Number of Pads;Counts", 12, -0.5, 11.5); hist[3] = new TH1F("qaTRD_recPoints_dist2", "TRD recPoints dist2;residuals [2pad];Counts", 100, -1, 1); hist[4] = new TH1F("qaTRD_recPoints_dist3", "TRD recPoints dist3;residuals [3pad];Counts", 100, -1, 1); hist[5] = new TH1F("qaTRD_recPoints_dist4", "TRD recPoints dist4;residuals [4pad];Counts", 100, -1, 1); hist[6] = new TH1F("qaTRD_recPoints_dist5", "TRD recPoints dist5;residuals [5pad];Counts", 100, -1, 1); hist[7] = new TH2F("qaTRD_recPoints_rowCol", "TRDrecPointsrowCol;row;col", 16, -0.5, 15.5, 145, -0.5, 144.5); hist[8] = new TH1F("qaTRD_recPoints_time", "TRDrecPoints time;time bin;Counts", kTimeBin, -0.5, kTimeBin-0.5); hist[9] = new TH1F("qaTRD_recPoints_nCls", "TRD recPoints nCls;number of clusters;Counts", 500, -0.5, 499.5); hist[10] = new TH3F("qaTRD_recPoints_sigTime", "TRD recPoints sigTime;chamber;time bin;signal", 540, -0.5, 539.5, kTimeBin, -0.5, kTimeBin-0.5, 200, -0.5, 199.5); hist[11] = new TProfile("qaTRD_recPoints_prf", "TRD recPoints prf;distance;center of gravity;Counts" , 120, -0.6, 0.6, -1.2, 1.2, ""); hist[12] = new TH1F("qaTRD_recPoints_ampMPV", "TRD recPoints ampMPV;amplitude MPV;Counts", 150, 0, 150); hist[13] = new TH1F("qaTRD_recPoints_ampSigma", "TRD recPoints ampSigma;amplitude Sigma;Counts", 200, 0, 200); // chamber by chamber for(Int_t i=0; i<18; i++) { hist[14+i] = new TH2F(Form("qaTRD_recPoints_sigTime_sm%d",i), Form("sm%d;det;time bin",i), 30, -0.5, 29.5, kTimeBin, -0.5, kTimeBin-0.5); hist[14+i]->SetMinimum(0); hist[14+i]->SetMaximum(150); } // time bin by time bin sm-by-sm for(Int_t i=0; i<18; i++) { hist[14+18+i] = new TH1F(Form("qaTRD_recPoints_sigTimeShape_sm%d", i), Form("sm%d;time bin;signal",i), kTimeBin, -0.5, kTimeBin-0.5); hist[14+18+i]->SetMaximum(150); } // str = 50 for(Int_t i=0; i<18; i++) { hist[50+i] = new TH1F(Form("qaTRD_recPoints_nCls_sm%d",i), Form("sm%d;time bin;number of clusters",i), kTimeBin, -0.5, kTimeBin-0.5); } // str = 68 for(Int_t i=0; i<18; i++) { hist[68+i] = new TH1F(Form("qaTRD_recPoints_totalCharge_sm%d", i), Form("sm%d;time bin;total charge", i), kTimeBin, -0.5, kTimeBin-0.5); } hist[86] = new TH1F("qaTRD_recPoints_signal", "TRD recPoints signal;amplitude;Counts", 400, -0.5, 399.5); hist[87] = new TH2F("qaTRD_recPoints_detMap", "TRD recPoints detMap;sm;chamber;Counts", 18, -0.5, 17.5, 30, -0.5, 29.5); // amplitude as a function of the pad size for(Int_t i=0; i<9; i++) { hist[88+i] = new TH1F(Form("qaTRD_recPoints_signalNpad_%d", i+2), Form("qaTRD_recPoints_signalNpad_%d;amplitude, ADC", i+2), 400, -0.5, 399.5); } // one 2D histogram per chamber // for(Int_t i=0; i<540; i++) { // hist[88+i] = new TH2F(Form("qaTRD_recPoints_map%d", i), ";col;row", 16, -0.5, 15.5, 144, -0.5, 143.5); //} for(Int_t i=0; iSumw2(); Add2RecPointsList(hist[i], i, !expert, image); } // ClonePerTrigClass(AliQAv1::kRECPOINTS); // this should be the last line } //____________________________________________________________________________ void AliTRDQADataMakerRec::InitRaws() { // // create Raws histograms in Raws subdir // const Bool_t expert = kTRUE ; const Bool_t saveCorr = kTRUE ; const Bool_t image = kTRUE ; AliInfo("Initialization of QA for Raw Data"); const Int_t kNhist = 7; TH1 *hist[kNhist]; hist[0] = new TH2F("qaTRD_raws_nADC","number of ADC channels;sector;detector", 18, -0.5, 17.5, 30, -0.5, 29.5); hist[1] = new TH2F("qaTRD_raws_nCls", "number of clusters;sector;detector", 18, -0.5, 17.5, 30, -0.5, 29.5); hist[2] = new TH2F("qaTRD_raws_meanSig", "mean signal;sector;detector", 18, -0.5, 17.5, 30, -0.5, 29.5); hist[3] = new TH1F("qaTRD_raws_ADC", "ADC amplitude;ADC counts", 100, -0.5, 99.5); hist[4] = new TH1F("qaTRD_raws_Cls", "Cluster amplitude; ADC counts", 100, -0.5, 199.5); hist[5] = new TH2F("qaTRD_raws_ClsTb", "Clusters vs Time Bin;time bin;amoplitude", 30, -0.5, 29.5, 200, -0.5, 199.5); hist[6] = new TH2F("qaTRD_raws_ClsAmpDet", ";detector;amplitude", 540, -0.5, 539.5, 100, 0, 200); /* hist[0] = new TH2F("qaTRD_raws_DataVolume", ";Sector;Data Volume, kB", 18, -0.5, 17.5, 100, 0, 30); hist[1] = new TH2F("qaTRD_raws_HC", "Data Headers;Sector;HC", 18, -0.5, 17.5, 60, -0.5, 59.5); hist[2] = new TH2F("qaTRD_raws_LME", "Link Monitor Error;Sector;HC", 18, -0.5, 17.5, 60, -0.5, 59.5); hist[3] = new TH1F("qaTRD_rawd_cls", "Clusters amplitude;ADC counts", 100, 0, 200); hist[4] = new TH2F("qaTRD_raws_clsTB", "amplitude - time bins;time bin;amplitude" 30, -0.5, 29.5, 100, 0, 200); hist[5] = new TH2F("qaTRD_raws_clsSec", "amplitude in sectors;Sector;amplitude, ADCs" 18, -0.5, 17.5); */ // register for(Int_t i=0; iSumw2(); Add2RawsList(hist[i], i, !expert, image, !saveCorr); } // ClonePerTrigClass(AliQAv1::kRAWS); // this should be the last line } //____________________________________________________________________________ void AliTRDQADataMakerRec::MakeESDs(AliESDEvent * esd) { // // Make QA data from ESDs // Int_t nTracks = esd->GetNumberOfTracks(); FillESDsData(0,nTracks); // track loop for (Int_t iTrack = 0; iTrackGetTrack(iTrack); const AliExternalTrackParam *paramOut = track->GetOuterParam(); const AliExternalTrackParam *paramIn = track->GetInnerParam(); // long track .. if (!paramIn) continue; if (!paramOut) continue; // not a kink if (track->GetKinkIndex(0) > 0) continue; Double_t extZ = GetExtZ(paramIn); if (TMath::Abs(extZ) > 320) continue; // acceptance cut // .. in the acceptance Int_t sector = GetSector(paramOut->GetAlpha()); Int_t stack = GetStack(paramOut); UInt_t u = 1; UInt_t status = track->GetStatus(); for(Int_t bit=0; bit<32; bit++) if (u<GetParameter(); // parameters at the Outer plane Double_t pt = paramOut->Pt(); //1./TMath::Abs(val[4]); for(Int_t b=0; bGetTRDncls0()); // refitted only if (!bit[4]) continue; //fQuality->Fill(track->GetTRDQuality()); //fBudget->Fill(track->GetTRDBudget()); //fSignal->Fill(track->GetTRDsignal()); FillESDsData(1,sector); FillESDsData(18,track->GetP(), track->GetTRDsignal()); FillESDsData(27,track->GetTRDQuality()); FillESDsData(28,track->GetTRDBudget()); FillESDsData(29,track->GetTRDchi2()); FillESDsData(30,track->GetTRDTimBin(0)); FillESDsData(31,track->GetTRDntrackletsPID()); // dedx for(Int_t k=0; k<4; ++k) { Double_t dedx = 0; for(Int_t j=0; j<6; j++) { dedx += track->GetTRDslice(j, k-1); } FillESDsData(41+k,paramOut->GetP(), dedx/6.); } // probabilities if (status & AliESDtrack::kTRDpid) { for(Int_t k=0; kGetTRDpid(k)); } // probabilities uniformity if (track->GetTRDntrackletsPID() < 6) continue; FillESDsData(35,paramOut->GetZ()/paramOut->GetX()); Int_t idx = 5 * sector + stack; FillESDsData(32,idx); // all tracks if (track->GetTRDpid(AliPID::kElectron) > 0.9) FillESDsData(33,idx); // electrons only /* hist[27] = new TH1F("qaTRD_esd_quality", ";quality", 120, 0, 12); hist[28] = new TH1F("qaTRD_esd_budget", ";NN", 110, -1000, 100); hist[29] = new TH1F("qaTRD_esd_chi2", ";chi2", 300, 0, 100); hist[30] = new TH1F("qaTRD_esd_timeBin", 7, -0.5, 6.5); hist[31] = new TH1F("qaTRD_esd_pidQuality", 7, -0.5, 6.5); */ /* // PID only if (status & AliESDtrack::kTRDpid) { for(Int_t l=0; l<6; l++) fTime->Fill(track->GetTRDTimBin(l)); // fill pid histograms Double_t trdr0 = 0; //, tpcr0 = 0; Int_t trdBestPid = 5; //, tpcBestPid = 5; // charged const Double_t kminPidValue = 0.9; //Double_t pp[5]; //track->GetTPCpid(pp); // ESD inconsequence for(Int_t pid=0; pid<5; pid++) { trdr0 += track->GetTRDpid(pid); //tpcr0 += pp[pid]; fTrdPID[pid]->Fill(track->GetTRDpid(pid)); //fTpcPID[pid]->Fill(pp[pid]); if (track->GetTRDpid(pid) > kminPidValue) trdBestPid = pid; //if (pp[pid] > kminPidValue) tpcBestPid = pid; } fTrdPID[5]->Fill(trdr0); // check unitarity fTrdSigMomPID[trdBestPid]->Fill(track->GetP(), track->GetTRDsignal()); //fTpcPID[5]->Fill(tpcr0); // check unitarity //fTpcSigMomPID[tpcBestPid]->Fill(track->GetP(), track->GetTPCsignal()); } */ } // IncEvCountCycleESDs(); IncEvCountTotalESDs(); // } //______________________________________________________________________________ Int_t AliTRDQADataMakerRec::GetSector(Double_t alpha) const { // // Gets the sector number // Double_t size = TMath::DegToRad() * 20.; // shall use TRDgeo if (alpha < 0) alpha += 2*TMath::Pi(); Int_t sector = (Int_t)(alpha/size); return sector; } //______________________________________________________________________________ Int_t AliTRDQADataMakerRec::GetStack(const AliExternalTrackParam *paramOut) const { // // calculates the stack the track is in // const Double_t L = -0.9; const Double_t W = (2*L)/5; Double_t tan = paramOut->GetZ() / paramOut->GetX(); Double_t pos = (tan - L) / W; return (Int_t) pos; } //______________________________________________________________________________ Double_t AliTRDQADataMakerRec::GetExtZ(const AliExternalTrackParam *in) const { // // Returns the Z position at the entry to TRD // using parameters from the TPC in // const Double_t kX0 = 300; Double_t x = in->GetX(); const Double_t *par = in->GetParameter(); Double_t theta = par[3]; Double_t z = in->GetZ(); Double_t zz = z + (kX0-x) * TMath::Tan(theta); return zz; } //____________________________________________________________________________ void AliTRDQADataMakerRec::MakeRaws(AliRawReader* rawReader) { // // Makes QA data from raw data // AliInfo("Making QA for Raws"); // take histograms (RS: arrays of histos) static TObjArray mnADC,mnCls,mClsDet,mADC,mCls,mClsTb,mClsDetAmp; GetMatchingRawsData(0,&mnADC); GetMatchingRawsData(1,&mnCls); GetMatchingRawsData(2,&mClsDet); GetMatchingRawsData(3,&mADC); GetMatchingRawsData(4,&mCls); GetMatchingRawsData(5,&mClsTb); GetMatchingRawsData(6,&mClsDetAmp); const Int_t baseline = 10; // configure the reader rawReader->Reset(); rawReader->SelectEquipment(0, 1024, 1041); rawReader->Select("TRD"); AliTRDrawStream *data = new AliTRDrawStream(rawReader); // build data manager AliTRDdigitsManager *digitsManager; digitsManager = new AliTRDdigitsManager(kTRUE); digitsManager->CreateArrays(); // error container const UShort_t kErrorChmb = 1411; UShort_t **fErrorContainer = new UShort_t *[2]; fErrorContainer[0] = new UShort_t[kErrorChmb]; fErrorContainer[1] = new UShort_t[kErrorChmb]; Int_t det = 0; Int_t row, col; while ((det = data->NextChamber(digitsManager, NULL, fErrorContainer)) >= 0){ //printf("DET = %d\n", det); AliTRDSignalIndex* indexes = digitsManager->GetIndexes(det); if (indexes->HasEntry()) { AliTRDarrayADC *digits = (AliTRDarrayADC*) digitsManager->GetDigits(det); while(indexes->NextRCIndex(row, col)) { for (int ih=mnADC.GetEntriesFast();ih--;) ((TH2*)mnADC.UncheckedAt(ih))->Fill(det/30, det%30); for(Int_t tb = 0; tb < digits->GetNtime(); tb++) { Int_t value = digits->GetData(row, col, tb); for (int ih=mADC.GetEntriesFast();ih--;) ((TH1*)mADC.UncheckedAt(ih))->Fill(value); // simple clusterizer if (col < 1 || col > digits->GetNcol()-2) continue; if (tb < 1 || tb > digits->GetNtime()-2) continue; value -= baseline; Int_t valueL = digits->GetData(row, col-1, tb) - baseline; if (valueL >= value) continue; Int_t valueR = digits->GetData(row, col+1, tb) - baseline; if (valueR >= value) continue; Int_t valueUp = digits->GetData(row, col-1, tb+1) + digits->GetData(row, col, tb+1) + digits->GetData(row, col+1, tb+1) - 3 * baseline; if (valueUp < 10) continue; Int_t valueDown = digits->GetData(row, col-1, tb-1) + digits->GetData(row, col, tb-1) + digits->GetData(row, col+1, tb-1) - 3 * baseline; if (valueDown < 10) continue; Int_t valueTot = value + valueL + valueR; if (valueTot < 0) continue; for (int ih=mCls.GetEntriesFast();ih--;) ((TH1*)mCls.UncheckedAt(ih))->Fill(valueTot); for (int ih=mClsTb.GetEntriesFast();ih--;) ((TH2*)mClsTb.UncheckedAt(ih))->Fill(tb, valueTot); for (int ih=mClsDetAmp.GetEntriesFast();ih--;) ((TH2*)mClsDetAmp.UncheckedAt(ih))->Fill(det, valueTot); if (valueTot < 200) { for (int ih=mnCls.GetEntriesFast();ih--;) ((TH2*)mnCls.UncheckedAt(ih))->Fill(det/30, det%30); for (int ih=mClsDet.GetEntriesFast();ih--;) ((TH2*)mClsDet.UncheckedAt(ih))->Fill(det/30, det%30, valueTot); } } } digitsManager->ClearArrays(det); // do we need this if object will be deleted ?? } } delete [] fErrorContainer[0]; delete [] fErrorContainer[1]; delete [] fErrorContainer; fErrorContainer = NULL; delete digitsManager; delete data; // IncEvCountCycleRaws(); IncEvCountTotalRaws(); // } //____________________________________________________________________________ void AliTRDQADataMakerRec::MakeRecPoints(TTree * clustersTree) { // // Makes data from RecPoints // // Info("MakeRecPoints", "making"); Int_t nsize = Int_t(clustersTree->GetTotBytes() / (sizeof(AliTRDcluster))); TObjArray *clusterArray = new TObjArray(nsize+1000); TBranch *branch = clustersTree->GetBranch("TRDcluster"); if (!branch) { AliError("Can't get the branch !"); return; } branch->SetAddress(&clusterArray); // Loop through all entries in the tree Int_t nEntries = (Int_t)TMath::Ceil( clustersTree->GetEntries() ); Int_t nbytes = 0; AliTRDcluster *c = 0; Int_t nDet[540]; for (Int_t i=0; i<540; i++) nDet[i] = 0; Int_t nCls = 0; //printf("nEntries = %d\n", nEntries); //nEntries++; /* // select the event for (Int_t iEntry = 0; iEntry < nEntries; iEntry++) { // Import the tree nbytes += clustersTree->GetEvent(iEntry); Int_t nCluster = clusterArray->GetEntries(); for (Int_t iCluster = 0; iCluster < nCluster; iCluster++) { c = (AliTRDcluster *) clusterArray->At(iCluster); nCls++; } } if (nCls < 100) { delete clusterArray; return; } */ ///// TObjArray *hists3D = GetMatchingRecPointsData(10); //RS no alias for 3d histo filling, to directly // for (Int_t iEntry = 0; iEntry < nEntries; iEntry++) { // Import the tree nbytes += clustersTree->GetEvent(iEntry); // Get the number of points in the detector Int_t nCluster = clusterArray->GetEntries(); // Loop through all TRD digits for (Int_t iCluster = 0; iCluster < nCluster; iCluster++) { nCls++; c = (AliTRDcluster *) clusterArray->At(iCluster); Int_t iDet = c->GetDetector(); Int_t nPads = c->GetNPads(); nDet[iDet]++; FillRecPointsData(0,iDet); FillRecPointsData(86,c->GetQ()); FillRecPointsData(1,iDet, c->GetQ()); FillRecPointsData(2,nPads); if (nPads < 6) FillRecPointsData(1+c->GetNPads(),c->GetCenter()); if (nPads < 10) FillRecPointsData(88+nPads-2,c->GetQ()); else FillRecPointsData(96,c->GetQ()); //if (c->GetPadTime() < 5) FillRecPointsData(7,c->GetPadRow(), c->GetPadCol()); FillRecPointsData(8,c->GetPadTime()); // if (hists3D) { for (int ih=hists3D->GetEntriesFast();ih--;) { TH3F * ahist = dynamic_cast(hists3D->At(ih)); if (ahist) ahist->Fill(iDet, c->GetPadTime(), c->GetQ()); } } Int_t iSM = iDet / 30; FillRecPointsData(50+iSM,c->GetPadTime()); FillRecPointsData(68+iSM,c->GetPadTime(), c->GetQ()); // total charge sm / det / timeBin // FillRecPointsData(14+iSM,iDet-iSM*30, c->GetPadTime(), c->GetQ()); // PRF for 2pad //if (c->GetNPads() == 2) { Short_t *sig = c->GetSignals(); Double_t frac = -10; if (sig[0] == 0 && sig[1] == 0 && sig[2] == 0 && sig[5] == 0 && sig[6] == 0) frac = 1. * sig[4] / (sig[3] + sig[4]); if (sig[0] == 0 && sig[1] == 0 && sig[4] == 0 && sig[5] == 0 && sig[6] == 0) frac = -1. * sig[2] / (sig[2] + sig[3]); if (frac > -10) FillRecPointsData(11,c->GetCenter(), frac); //} } clusterArray->Delete(); } /* for(Int_t i=0; i<540; i++) if (nDet[i] > 0) FillRecPointsData(9,nDet[i]); */ FillRecPointsData(9,nCls); delete clusterArray; // IncEvCountCycleRecPoints(); IncEvCountTotalRecPoints(); // } //____________________________________________________________________________ void AliTRDQADataMakerRec::StartOfDetectorCycle() { // // Detector specific actions at start of cycle // } //__________________________________________________________________________ Int_t AliTRDQADataMakerRec::CheckPointer(TObject *obj, const char *name) { // // Checks initialization of pointers // if (!obj) AliWarning(Form("null pointer: %s", name)); return !!obj; } //__________________________________________________________________________ void AliTRDQADataMakerRec::BuildRatio(TH1 *ratio, TH1 *histN, TH1* histD) { // // Calculate the ratio of two histograms // error are calculated assuming the histos have the same counts // // calclate Int_t nbins = histN->GetXaxis()->GetNbins(); for(Int_t i=1; iGetBinContent(i); Double_t valueD = histD->GetBinContent(i); if (valueD < 1) { ratio->SetBinContent(i, 0); ratio->SetBinError(i, 0); continue; } Double_t eps = (valueN < valueD-valueN)? valueN : valueD-valueN; ratio->SetBinContent(i, valueN/valueD); ratio->SetBinError(i, TMath::Sqrt(eps)/valueD); } // style ratio->SetMinimum(-0.1); ratio->SetMaximum(1.1); ratio->SetMarkerStyle(20); } //__________________________________________________________________________ Int_t AliTRDQADataMakerRec::FillBits(TH1F *hist, Int_t code, Int_t offset) { Int_t nb = 0; UInt_t test = 1; for(Int_t i=0; i<8; i++) { if (code & test) { hist->Fill(i+offset); nb++; } test *= 2; } return nb; } //__________________________________________________________________________