]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HMPID/AliHMPIDQADataMakerRec.cxx
ECS run type is PEDESTAL and not PEDESTAL_RUN
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDQADataMakerRec.cxx
CommitLineData
04236e67 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16
17/* $Id$ */
18
04236e67 19// --- ROOT system ---
20#include <TClonesArray.h>
21#include <TFile.h>
22#include <TH1F.h>
23#include <TH2F.h>
cc1abc7f 24#include <TProfile.h>
04236e67 25#include <Riostream.h>
26// --- Standard library ---
27
28// --- AliRoot header files ---
29#include "AliESDCaloCluster.h"
30#include "AliESDEvent.h"
cc1abc7f 31#include "AliQAChecker.h"
04236e67 32#include "AliLog.h"
33#include "AliHMPIDDigit.h"
34#include "AliHMPIDHit.h"
35#include "AliHMPIDCluster.h"
36#include "AliHMPIDQADataMakerRec.h"
cc1abc7f 37#include "AliHMPIDParam.h"
38#include "AliHMPIDRawStream.h"
39#include "AliLog.h"
04236e67 40ClassImp(AliHMPIDQADataMakerRec)
41
42//____________________________________________________________________________
43 AliHMPIDQADataMakerRec::AliHMPIDQADataMakerRec() :
cc1abc7f 44 AliQADataMakerRec(AliQA::GetDetName(AliQA::kHMPID), "HMPID Quality Assurance Data Maker")
04236e67 45{
46 // ctor
04236e67 47}
48
49//____________________________________________________________________________
50AliHMPIDQADataMakerRec::AliHMPIDQADataMakerRec(const AliHMPIDQADataMakerRec& qadm) :
cc1abc7f 51 AliQADataMakerRec()
04236e67 52{
53 //copy ctor
04236e67 54 SetName((const char*)qadm.GetName()) ;
55 SetTitle((const char*)qadm.GetTitle());
56}
57
58//__________________________________________________________________
59AliHMPIDQADataMakerRec& AliHMPIDQADataMakerRec::operator = (const AliHMPIDQADataMakerRec& qadm )
60{
61 // Equal operator.
62 this->~AliHMPIDQADataMakerRec();
63 new(this) AliHMPIDQADataMakerRec(qadm);
64 return *this;
65}
66
67//____________________________________________________________________________
68
69void AliHMPIDQADataMakerRec::InitRecPoints()
70{
71 // create cluster histograms in RecPoint subdir
cc1abc7f 72
73 TH1F *hCluEvt=new TH1F("CluPerEvt","Cluster multiplicity" ,100,0,100);
74 TH1F *hCluChi2 =new TH1F("CluChi2" ,"Chi2 " ,1000,0,100);
75 TH1F *hCluFlg =new TH1F("CluFlg" ,"Cluster flag" ,14,-1.5,12.5); hCluFlg->SetFillColor(5);
76 TH1F *hCluSize =new TH1F("CluSize" ,"Cluster size ",100,0,100);
77 TH1F *hCluQ =new TH1F("CluQ" ,"Cluster charge (ADC)",1000,0,5000);
78
79 Add2RecPointsList(hCluEvt , 0);
80 Add2RecPointsList(hCluChi2, 1);
81 Add2RecPointsList(hCluFlg , 2);
82 Add2RecPointsList(hCluSize, 3);
83 Add2RecPointsList(hCluQ , 4);
84}
85//____________________________________________________________________________
86
87void AliHMPIDQADataMakerRec::InitRaws()
88{
89//
90// Booking QA histo for Raw data
91//
92 const Int_t nerr = (Int_t)AliHMPIDRawStream::kSumErr+1;
cc1abc7f 93 TH1F *hqPad[14], *hSumErr[14];
94
3c8e86a0 95 for(Int_t iddl =0; iddl<AliHMPIDRawStream::kNDDL; iddl++) {
96 hqPad[iddl] = new TH1F(Form("hqPadDDL%i",iddl), Form("Pad Q Entries at DDL %i",iddl), 500,0,5000);
97 Add2RawsList(hqPad[iddl],iddl);
98 hSumErr[iddl] = new TH1F(Form("SumErrDDL%i",iddl), Form("Error summary for ddl %i",iddl), 2*nerr,0,2*nerr);
99 hSumErr[iddl]->SetYTitle("%");
100
101 for(Int_t ilabel=0; ilabel< nerr; ilabel++) {
102 hSumErr[iddl]->GetXaxis()->CenterLabels(kTRUE);
103 //hSumErr[iddl]->GetXaxis()->SetBinLabel((2*ilabel+1),Form("%i %s",ilabel+1,hnames[ilabel]));
104 hSumErr[iddl]->GetXaxis()->SetBinLabel((2*ilabel+1),Form("%i %s",ilabel+1,AliHMPIDRawStream::GetErrName(ilabel)));
105 }
106
107 Add2RawsList(hSumErr[iddl],iddl+14);
cc1abc7f 108 }
109 TH1F *hNevRaws = new TH1F("NevRaws","Events per DDL",15,0,15);
110 Add2RawsList(hNevRaws,28);
04236e67 111}
112//____________________________________________________________________________
113void AliHMPIDQADataMakerRec::InitESDs()
114{
cc1abc7f 115 //
116 //Booking ESDs histograms
117 TH2F* hCkovP = new TH2F("CkovP" , "#theta_{c}, [rad];P, [GeV]" , 150, 0, 7 ,100, 0, 1) ;
118 TH2F* hSigP = new TH2F("SigP" ,"#sigma_{#theta_c} [mrad];[GeV]", 150, 0, 7 ,100, 0, 1) ;
119 TH2F* hMipXY = new TH2F("MipXY" ,"mip position" , 260, 0,130 ,252, 0,126) ;
120 TH2F* hDifXY = new TH2F("DifXY" ,"diff" , 200, -10, 10 ,200,-10,10) ;
121 TH1F* hPid[5];
122 hPid[0] = new TH1F("PidE" ,"electron response" , 101, -0.005,1.005) ;
123 hPid[1] = new TH1F("PidMu","#mu response" , 101, -0.005,1.005) ;
124 hPid[2] = new TH1F("PidPi","#pi response" , 101, -0.005,1.005) ;
125 hPid[3] = new TH1F("PidK" ,"K response" , 101, -0.005,1.005) ;
126 hPid[4] = new TH1F("PidP" ,"p response" ,101, -0.005,1.005) ;
127
128Add2ESDsList(hCkovP,0);
129Add2ESDsList(hSigP ,1);
130Add2ESDsList(hMipXY,2);
131Add2ESDsList(hDifXY,3);
132for(Int_t i=0; i< 5; i++) Add2ESDsList(hPid[i],i+4);
04236e67 133}
04236e67 134//____________________________________________________________________________
cc1abc7f 135void AliHMPIDQADataMakerRec::MakeRaws(AliRawReader *rawReader)
04236e67 136{
cc1abc7f 137//
138// Filling Raws QA histos
139//
140 AliHMPIDRawStream stream(rawReader);
141
142 while(stream.Next())
143 {
144 UInt_t ddl=stream.GetDDLNumber(); //returns 0,1,2 ... 13
04236e67 145
cc1abc7f 146 for(Int_t iPad=0;iPad<stream.GetNPads();iPad++) {
147 GetRawsData(ddl)->Fill(stream.GetChargeArray()[iPad]);}
148
149 GetRawsData(28)->Fill(ddl);
150
151 for(Int_t iErr =1; iErr<(Int_t)AliHMPIDRawStream::kSumErr; iErr++){
152
153 Int_t NumOfErr = stream.GetErrors(ddl,iErr);
154
155 GetRawsData(ddl+14)->Fill(iErr,NumOfErr);
156 }
157 }
158 stream.Delete();
159}
160//___________________________________________________________________________
161void AliHMPIDQADataMakerRec::MakeRecPoints(TTree * clustersTree)
162{
163 //
164 //filling QA histos for clusters
165 //
04236e67 166 TClonesArray *clusters = new TClonesArray("AliHMPIDCluster");
167 for(int i=AliHMPIDParam::kMinCh;i<=AliHMPIDParam::kMaxCh;i++){
168 TBranch *branch = clustersTree->GetBranch(Form("HMPID%d",i));
169 branch->SetAddress(&clusters);
170 branch->GetEntry(0);
171
cc1abc7f 172 GetRecPointsData(0)->Fill(i,clusters->GetEntries());
04236e67 173 TIter next(clusters);
174 AliHMPIDCluster *clu;
cc1abc7f 175 while ( (clu = dynamic_cast<AliHMPIDCluster *>(next())) ) {
176 GetRecPointsData(1)->Fill(clu->Chi2());
177 GetRecPointsData(2)->Fill(clu->Status());
178 GetRecPointsData(3)->Fill(clu->Size());
179 GetRecPointsData(4)->Fill(clu->Q());
04236e67 180 }
181 }
182
183 clusters->Delete();
184 delete clusters;
185}
186
187//____________________________________________________________________________
188void AliHMPIDQADataMakerRec::MakeESDs(AliESDEvent * esd)
189{
cc1abc7f 190 //
04236e67 191 //fills QA histos for ESD
cc1abc7f 192 //
04236e67 193 for(Int_t iTrk = 0 ; iTrk < esd->GetNumberOfTracks() ; iTrk++){
194 AliESDtrack *pTrk = esd->GetTrack(iTrk) ;
cc1abc7f 195 GetESDsData(0)->Fill(pTrk->GetP(),pTrk->GetHMPIDsignal());
196 GetESDsData(1)->Fill( pTrk->GetP(),TMath::Sqrt(pTrk->GetHMPIDchi2()));
04236e67 197 Float_t xm,ym; Int_t q,np;
198 pTrk->GetHMPIDmip(xm,ym,q,np); //mip info
cc1abc7f 199 GetESDsData(2)->Fill(xm,ym);
04236e67 200 Float_t xRad,yRad,th,ph;
201 pTrk->GetHMPIDtrk(xRad,yRad,th,ph); //track info at the middle of the radiator
202 Float_t xPc = xRad+9.25*TMath::Tan(th)*TMath::Cos(ph); // temporar: linear extrapol (B=0!)
203 Float_t yPc = yRad+9.25*TMath::Tan(th)*TMath::Sin(ph); // temporar: "
cc1abc7f 204 GetESDsData(3)->Fill(xm-xPc,ym-yPc); //track info
04236e67 205 Double_t pid[5] ; pTrk->GetHMPIDpid(pid) ;
cc1abc7f 206 for(Int_t i = 0 ; i < 5 ; i++) GetESDsData(4+i)->Fill(pid[i]) ;
207 }
208}
209//____________________________________________________________________________
210void AliHMPIDQADataMakerRec::StartOfDetectorCycle()
211{
212 //Detector specific actions at start of cycle
213
214}
215
216void AliHMPIDQADataMakerRec::EndOfDetectorCycle(AliQA::TASKINDEX, TObjArray *)
217{
218 //Detector specific actions at end of cycle
219 // do the QA checking
220 //AliQAChecker::Instance()->Run(AliQA::kHMPID, task, obj);
221 //if(task==AliQA::kRAWS){
222
71d0d954 223// for(Int_t iddl=0; iddl<14; iddl++)
224// {
225// if(GetRawsData(28)->GetBinContent(iddl)!=0) GetRawsData(iddl+14)->Scale(100./GetRawsData(28)->GetBinContent(iddl));
226// }
04236e67 227}
228