]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSQADataMakerRec.cxx
A new method DrawPMDModule is added
[u/mrichter/AliRoot.git] / PHOS / AliPHOSQADataMakerRec.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
19/*
20 Produces the data needed to calculate the quality assurance.
21 All data must be mergeable objects.
22 Y. Schutz CERN July 2007
23*/
24
25// --- ROOT system ---
26#include <TClonesArray.h>
27#include <TFile.h>
28#include <TH1F.h>
29#include <TH1I.h>
30#include <TH2F.h>
31
32// --- Standard library ---
33
34// --- AliRoot header files ---
35#include "AliESDCaloCluster.h"
36#include "AliESDEvent.h"
37#include "AliLog.h"
38#include "AliPHOSQADataMakerRec.h"
39#include "AliQAChecker.h"
40#include "AliPHOSCpvRecPoint.h"
41#include "AliPHOSEmcRecPoint.h"
42#include "AliPHOSRecParticle.h"
43#include "AliPHOSTrackSegment.h"
44#include "AliPHOSRawDecoder.h"
ebde5500 45#include "AliPHOSRawDecoderv1.h"
46#include "AliPHOSRawDecoderv2.h"
04236e67 47#include "AliPHOSReconstructor.h"
48#include "AliPHOSRecoParam.h"
49
50ClassImp(AliPHOSQADataMakerRec)
51
52//____________________________________________________________________________
53 AliPHOSQADataMakerRec::AliPHOSQADataMakerRec() :
54 AliQADataMakerRec(AliQA::GetDetName(AliQA::kPHOS), "PHOS Quality Assurance Data Maker")
55{
56 // ctor
57}
58
59//____________________________________________________________________________
60AliPHOSQADataMakerRec::AliPHOSQADataMakerRec(const AliPHOSQADataMakerRec& qadm) :
61 AliQADataMakerRec()
62{
63 //copy ctor
64 SetName((const char*)qadm.GetName()) ;
65 SetTitle((const char*)qadm.GetTitle());
66}
67
68//__________________________________________________________________
69AliPHOSQADataMakerRec& AliPHOSQADataMakerRec::operator = (const AliPHOSQADataMakerRec& qadm )
70{
71 // Equal operator.
72 this->~AliPHOSQADataMakerRec();
73 new(this) AliPHOSQADataMakerRec(qadm);
74 return *this;
75}
76
77//____________________________________________________________________________
92a357bf 78void AliPHOSQADataMakerRec::EndOfDetectorCycle(AliQA::TASKINDEX_t task, TObjArray * list)
04236e67 79{
80 //Detector specific actions at end of cycle
81 // do the QA checking
82 AliQAChecker::Instance()->Run(AliQA::kPHOS, task, list) ;
83}
84
85//____________________________________________________________________________
86void AliPHOSQADataMakerRec::InitESDs()
87{
ebde5500 88 //Create histograms to controll ESD
89
e862ee5c 90 TH1F * h1 = new TH1F("hESDPhosSpectrum", "ESDs spectrum in PHOS" , 200, 0., 20.) ;
39569d36 91 h1->Sumw2() ;
e862ee5c 92 Add2ESDsList(h1, kESDSpec) ;
93
94 TH1I * h2 = new TH1I("hESDPhosMul", "ESDs multiplicity distribution in PHOS", 100, 0, 100 ) ;
39569d36 95 h2->Sumw2() ;
96 Add2ESDsList(h2, kESDNtot) ;
ebde5500 97
e862ee5c 98 TH1F * h3 = new TH1F("hESDPhosEtot", "ESDs total energy" , 100, 0, 1000.) ;
39569d36 99 h3->Sumw2() ;
100 Add2ESDsList(h3, kESDEtot) ;
ebde5500 101
e862ee5c 102 TH1F * h4 = new TH1F("hESDpid", "ESDs PID distribution in PHOS" , 100, 0., 1.) ;
39569d36 103 h4->Sumw2() ;
104 Add2ESDsList(h4, kESDpid) ;
04236e67 105
04236e67 106}
107
04236e67 108//____________________________________________________________________________
109void AliPHOSQADataMakerRec::InitRecPoints()
110{
111 // create Reconstructed Points histograms in RecPoints subdir
ebde5500 112 TH2I * h0 = new TH2I("hRpPHOSxyMod1","RecPoints Rows x Columns for PHOS module 1", 64, -72., 72., 56, -63., 63.) ;
113 Add2RecPointsList(h0,kRPmod1) ;
114 TH2I * h1 = new TH2I("hRpPHOSxyMod2","RecPoints Rows x Columns for PHOS module 2", 64, -72., 72., 56, -63., 63.) ;
115 Add2RecPointsList(h1,kRPmod2) ;
116 TH2I * h2 = new TH2I("hRpPHOSxyMod3","RecPoints Rows x Columns for PHOS module 3", 64, -72., 72., 56, -63., 63.) ;
117 Add2RecPointsList(h2,kRPmod3) ;
118 TH2I * h3 = new TH2I("hRpPHOSxyMod4","RecPoints Rows x Columns for PHOS module 4", 64, -72., 72., 56, -63., 63.) ;
119 Add2RecPointsList(h3,kRPmod4) ;
120 TH2I * h4 = new TH2I("hRpPHOSxyMod5","RecPoints Rows x Columns for PHOS module 5", 64, -72., 72., 56, -63., 63.) ;
121 Add2RecPointsList(h4,kRPmod5) ;
122
39569d36 123 TH1F * h5 = new TH1F("hEmcPhosRecPointsSpectrum", "EMC RecPoints spectrum in PHOS", 2000, 0., 20.) ;
ebde5500 124 h5->Sumw2() ;
125 Add2RecPointsList(h5, kRPSpec) ;
126
127 TH1I * h6 = new TH1I("hEmcPhosRecPointsMul", "EMCA RecPoints multiplicity distribution in PHOS", 100, 0, 100) ;
128 h6->Sumw2() ;
129 Add2RecPointsList(h6, kRPNtot) ;
130
39569d36 131 TH1I * h7 = new TH1I("hEmcPhosRecPointsEtot", "EMC RecPoints Etot", 200, 0, 200.) ;
ebde5500 132 h7->Sumw2() ;
133 Add2RecPointsList(h7, kRPEtot) ;
04236e67 134
ebde5500 135 TH1I * h8 = new TH1I("hCpvPhosRecPointsMul", "CPV RecPoints multiplicity distribution in PHOS", 100, 0, 100) ;
136 h8->Sumw2() ;
137 Add2RecPointsList(h8, kRPNcpv) ;
04236e67 138}
139
140//____________________________________________________________________________
141void AliPHOSQADataMakerRec::InitRaws()
142{
143 // create Raws histograms in Raws subdir
ebde5500 144 TH2I * h0 = new TH2I("hHighPHOSxyMod1","High Gain Rows x Columns for PHOS module 1", 64, 0, 64, 56, 0, 56) ;
145 Add2RawsList(h0,kHGmod1) ;
146 TH2I * h1 = new TH2I("hHighPHOSxyMod2","High Gain Rows x Columns for PHOS module 2", 64, 0, 64, 56, 0, 56) ;
147 Add2RawsList(h1,kHGmod2) ;
148 TH2I * h2 = new TH2I("hHighPHOSxyMod3","High Gain Rows x Columns for PHOS module 3", 64, 0, 64, 56, 0, 56) ;
149 Add2RawsList(h2,kHGmod3) ;
150 TH2I * h3 = new TH2I("hHighPHOSxyMod4","High Gain Rows x Columns for PHOS module 4", 64, 0, 64, 56, 0, 56) ;
151 Add2RawsList(h3,kHGmod4) ;
152 TH2I * h4 = new TH2I("hHighPHOSxyMod5","High Gain Rows x Columns for PHOS module 5", 64, 0, 64, 56, 0, 56) ;
153 Add2RawsList(h4,kHGmod5) ;
154 TH2I * h5 = new TH2I("hLowPHOSxyMod1","Low Gain Rows x Columns for PHOS module 1", 64, 0, 64, 56, 0, 56) ;
155 Add2RawsList(h5,kLGmod1) ;
156 TH2I * h6 = new TH2I("hLowPHOSxyMod2","Low Gain Rows x Columns for PHOS module 2", 64, 0, 64, 56, 0, 56) ;
157 Add2RawsList(h6,kLGmod2) ;
158 TH2I * h7 = new TH2I("hLowPHOSxyMod3","Low Gain Rows x Columns for PHOS module 3", 64, 0, 64, 56, 0, 56) ;
159 Add2RawsList(h7,kLGmod3) ;
160 TH2I * h8 = new TH2I("hLowPHOSxyMod4","Low Gain Rows x Columns for PHOS module 4", 64, 0, 64, 56, 0, 56) ;
161 Add2RawsList(h8,kLGmod4) ;
162 TH2I * h9 = new TH2I("hLowPHOSxyMod5","Low Gain Rows x Columns for PHOS module 5", 64, 0, 64, 56, 0, 56) ;
163 Add2RawsList(h9,kLGmod5) ;
164
165
166 TH1I * h10 = new TH1I("hLowPhosModules", "Low Gain Hits in EMCA PHOS modules", 6, 0, 6) ;
167 h10->Sumw2() ;
168 Add2RawsList(h10, kNmodLG) ;
169 TH1I * h11 = new TH1I("hHighPhosModules", "High Gain Hits in EMCA PHOS modules", 6, 0, 6) ;
170 h11->Sumw2() ;
171 Add2RawsList(h11, kNmodHG) ;
172
39569d36 173 TH1F * h12 = new TH1F("hLowPhosRawtime", "Low Gain Time of raw hits in PHOS", 500, -50., 200.) ;
ebde5500 174 h12->Sumw2() ;
175 Add2RawsList(h12, kLGtime) ;
39569d36 176 TH1F * h13 = new TH1F("hHighPhosRawtime", "High Gain Time of raw hits in PHOS", 500, -50., 200.) ;
ebde5500 177 h13->Sumw2() ;
178 Add2RawsList(h13, kHGtime) ;
179
180 TH1F * h14 = new TH1F("hLowPhosRawEnergy", "Low Gain Energy of raw hits in PHOS", 500, 0., 1000.) ;
181 h14->Sumw2() ;
182 Add2RawsList(h14, kSpecLG) ;
183 TH1F * h15 = new TH1F("hHighPhosRawEnergy", "High Gain Energy of raw hits in PHOS",500,0., 1000.) ;
184 h15->Sumw2() ;
185 Add2RawsList(h15, kSpecHG) ;
186
a5997872 187 TH1F * h16 = new TH1F("hLowNtot", "Low Gain Total Number of raw hits in PHOS", 500, 0., 5000.) ;
ebde5500 188 h16->Sumw2() ;
189 Add2RawsList(h16, kNtotLG) ;
190 TH1F * h17 = new TH1F("hHighNtot", "High Gain Total Number of raw hits in PHOS",500,0., 5000.) ;
191 h17->Sumw2() ;
192 Add2RawsList(h17, kNtotHG) ;
193
194 TH1F * h18 = new TH1F("hLowEtot", "Low Gain Total Energy of raw hits in PHOS", 500, 0., 5000.) ;
195 h18->Sumw2() ;
196 Add2RawsList(h18, kEtotLG) ;
197 TH1F * h19 = new TH1F("hHighEtot", "High Gain Total Energy of raw hits in PHOS",500,0., 100000.) ;
198 h19->Sumw2() ;
199 Add2RawsList(h19, kEtotHG) ;
200
04236e67 201}
202
04236e67 203//____________________________________________________________________________
204void AliPHOSQADataMakerRec::MakeESDs(AliESDEvent * esd)
205{
206 // make QA data from ESDs
207
ebde5500 208 Int_t nTot = 0 ;
209 Double_t eTot = 0 ;
04236e67 210 for ( Int_t index = 0; index < esd->GetNumberOfCaloClusters() ; index++ ) {
ebde5500 211 AliESDCaloCluster * clu = esd->GetCaloCluster(index) ;
212 if( clu->IsPHOS() ) {
213 GetESDsData(kESDSpec)->Fill(clu->E()) ;
214 Double_t *pid=clu->GetPid() ;
215 GetESDsData(kESDpid)->Fill(pid[AliPID::kPhoton]) ;
216 eTot+=clu->E() ;
217 nTot++ ;
218 }
04236e67 219 }
ebde5500 220 GetESDsData(kESDNtot)->Fill(nTot) ;
221 GetESDsData(kESDEtot)->Fill(eTot) ;
04236e67 222}
223
04236e67 224//____________________________________________________________________________
225void AliPHOSQADataMakerRec::MakeRaws(AliRawReader* rawReader)
226{
39569d36 227 //Fill prepared histograms with Raw digit properties
ebde5500 228 rawReader->Reset() ;
229 AliPHOSRawDecoder * decoder ;
230 if(strcmp(AliPHOSReconstructor::GetRecoParamEmc()->DecoderVersion(),"v1")==0)
231 decoder=new AliPHOSRawDecoderv1(rawReader);
232 else
233 if(strcmp(AliPHOSReconstructor::GetRecoParamEmc()->DecoderVersion(),"v2")==0)
234 decoder=new AliPHOSRawDecoderv2(rawReader);
235 else
236 decoder=new AliPHOSRawDecoder(rawReader);
ebde5500 237 decoder->SubtractPedestals(AliPHOSReconstructor::GetRecoParamEmc()->SubtractPedestals());
238 Double_t lgEtot=0. ;
239 Double_t hgEtot=0. ;
240 Int_t lgNtot=0 ;
241 Int_t hgNtot=0 ;
242
243 while (decoder->NextDigit()) {
244 Int_t module = decoder->GetModule() ;
245 Int_t row = decoder->GetRow() ;
246 Int_t col = decoder->GetColumn() ;
247 Double_t time = decoder->GetTime() ;
248 Double_t energy = decoder->GetEnergy() ;
249 Bool_t lowGain = decoder->IsLowGain();
04236e67 250 if (lowGain) {
a5997872 251 if(energy<2.)
ebde5500 252 continue ;
253 switch(module){
a5997872 254 case 1: GetRawsData(kLGmod1)->Fill(row-0.5,col-0.5) ; break ;
255 case 2: GetRawsData(kLGmod2)->Fill(row-0.5,col-0.5) ; break ;
256 case 3: GetRawsData(kLGmod3)->Fill(row-0.5,col-0.5) ; break ;
257 case 4: GetRawsData(kLGmod4)->Fill(row-0.5,col-0.5) ; break ;
258 case 5: GetRawsData(kLGmod5)->Fill(row-0.5,col-0.5) ; break ;
259 }
260 GetRawsData(kNmodLG)->Fill(module) ;
261 GetRawsData(kLGtime)->Fill(time) ;
262 GetRawsData(kSpecLG)->Fill(energy) ;
263 lgEtot+=energy ;
264 lgNtot++ ;
265 } else {
266 if(energy<8.)
ebde5500 267 continue ;
a5997872 268 switch (module){
269 case 1: GetRawsData(kHGmod1)->Fill(row-0.5,col-0.5) ; break ;
270 case 2: GetRawsData(kHGmod2)->Fill(row-0.5,col-0.5) ; break ;
271 case 3: GetRawsData(kHGmod3)->Fill(row-0.5,col-0.5) ; break ;
272 case 4: GetRawsData(kHGmod4)->Fill(row-0.5,col-0.5) ; break ;
273 case 5: GetRawsData(kHGmod5)->Fill(row-0.5,col-0.5) ; break ;
274 }
275 GetRawsData(kNmodHG)->Fill(module) ;
276 GetRawsData(kHGtime)->Fill(time) ;
277 GetRawsData(kSpecHG)->Fill(energy) ;
278 hgEtot+=energy ;
279 hgNtot++ ;
280 }
ebde5500 281 }
a5997872 282 GetRawsData(kEtotLG)->Fill(lgEtot) ;
283 GetRawsData(kEtotHG)->Fill(hgEtot) ;
284 GetRawsData(kNtotLG)->Fill(lgNtot) ;
285 GetRawsData(kNtotHG)->Fill(hgNtot) ;
04236e67 286}
04236e67 287//____________________________________________________________________________
288void AliPHOSQADataMakerRec::MakeRecPoints(TTree * clustersTree)
289{
290 {
291 // makes data from RecPoints
292 TBranch *emcbranch = clustersTree->GetBranch("PHOSEmcRP");
293 if (!emcbranch) {
294 AliError("can't get the branch with the PHOS EMC clusters !");
295 return;
296 }
297 TObjArray * emcrecpoints = new TObjArray(100) ;
298 emcbranch->SetAddress(&emcrecpoints);
299 emcbranch->GetEntry(0);
300
ebde5500 301 GetRecPointsData(kRPNtot)->Fill(emcrecpoints->GetEntriesFast()) ;
04236e67 302 TIter next(emcrecpoints) ;
303 AliPHOSEmcRecPoint * rp ;
ebde5500 304 Double_t eTot = 0. ;
04236e67 305 while ( (rp = dynamic_cast<AliPHOSEmcRecPoint *>(next())) ) {
ebde5500 306 GetRecPointsData(kRPSpec)->Fill( rp->GetEnergy()) ;
307 Int_t mod = rp->GetPHOSMod() ;
308 TVector3 pos ;
309 rp->GetLocalPosition(pos) ;
310 switch(mod){
311 case 1: GetRecPointsData(kRPmod1)->Fill(pos.X(),pos.Z()) ; break ;
312 case 2: GetRecPointsData(kRPmod2)->Fill(pos.X(),pos.Z()) ; break ;
313 case 3: GetRecPointsData(kRPmod3)->Fill(pos.X(),pos.Z()) ; break ;
314 case 4: GetRecPointsData(kRPmod4)->Fill(pos.X(),pos.Z()) ; break ;
315 case 5: GetRecPointsData(kRPmod5)->Fill(pos.X(),pos.Z()) ; break ;
316 }
317 eTot+= rp->GetEnergy() ;
04236e67 318 }
ebde5500 319 GetRecPointsData(kRPEtot)->Fill(eTot) ;
04236e67 320 emcrecpoints->Delete();
321 delete emcrecpoints;
322 }
323 {
324 TBranch *cpvbranch = clustersTree->GetBranch("PHOSCpvRP");
325 if (!cpvbranch) {
326 AliError("can't get the branch with the PHOS CPV clusters !");
327 return;
328 }
329 TObjArray *cpvrecpoints = new TObjArray(100) ;
330 cpvbranch->SetAddress(&cpvrecpoints);
331 cpvbranch->GetEntry(0);
332
ebde5500 333 GetRecPointsData(kRPNcpv)->Fill(cpvrecpoints->GetEntriesFast()) ;
04236e67 334 cpvrecpoints->Delete();
335 delete cpvrecpoints;
336 }
337}
338
04236e67 339//____________________________________________________________________________
340void AliPHOSQADataMakerRec::StartOfDetectorCycle()
341{
342 //Detector specific actions at start of cycle
343
344}