]> git.uio.no Git - u/mrichter/AliRoot.git/blame - T0/AliT0QADataMakerRec.cxx
fix include file dependences and correct some inline methods
[u/mrichter/AliRoot.git] / T0 / AliT0QADataMakerRec.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.
1d7681da 21// Alla.Maevskaya@cern.ch
04236e67 22//---
23
24// --- ROOT system ---
25#include <TClonesArray.h>
26#include <TFile.h>
27#include <TH1F.h>
1d7681da 28#include <TH2F.h>
04236e67 29#include <TDirectory.h>
30// --- Standard library ---
31
32// --- AliRoot header files ---
33#include "AliESDEvent.h"
34#include "AliLog.h"
35#include "AliT0digit.h"
36#include "AliT0hit.h"
37#include "AliT0RecPoint.h"
38#include "AliT0QADataMakerRec.h"
39#include "AliQAChecker.h"
40#include "AliT0RawReader.h"
41
1d7681da 42#include "Riostream.h"
04236e67 43ClassImp(AliT0QADataMakerRec)
44
45//____________________________________________________________________________
46 AliT0QADataMakerRec::AliT0QADataMakerRec() :
4e25ac79 47AliQADataMakerRec(AliQAv1::GetDetName(AliQAv1::kT0),
3c85c814 48 "T0 Quality Assurance Data Maker"),
49 fnEvent(0)
04236e67 50
51{
52 // ctor
1d7681da 53 for (Int_t i=0; i<6; i++) {
54 fNumTriggers[i]=0;
55 fNumTriggersCal[i]=0;
04236e67 56 }
b9024d69 57 for (Int_t i=0; i<24; i++)
58 {
59 feffC[i]=0;
60 feffA[i]=0;
61 }
04236e67 62}
63
64//____________________________________________________________________________
65AliT0QADataMakerRec::AliT0QADataMakerRec(const AliT0QADataMakerRec& qadm) :
3c85c814 66 AliQADataMakerRec(),
67 fnEvent(0)
68
04236e67 69{
70 //copy ctor
1d7681da 71 SetName((const char*)qadm.GetName()) ;
04236e67 72 SetTitle((const char*)qadm.GetTitle());
73}
74
75//__________________________________________________________________
76AliT0QADataMakerRec& AliT0QADataMakerRec::operator = (const AliT0QADataMakerRec& qadm )
77{
78 // Equal operator.
79 this->~AliT0QADataMakerRec();
80 new(this) AliT0QADataMakerRec(qadm);
81 return *this;
82}
83//____________________________________________________________________________
4e25ac79 84void AliT0QADataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray ** list)
04236e67 85{
86 //Detector specific actions at end of cycle
87 // do the QA checking
4e25ac79 88 AliQAChecker::Instance()->Run(AliQAv1::kT0, task, list) ;
57acd2d2 89 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
5e232cd6 90 SetEventSpecie(AliRecoParam::ConvertIndex(specie)) ;
4e25ac79 91 if ( task == AliQAv1::kRAWS ) {
57acd2d2 92 const Char_t *triggers[6] = {"mean", "vertex","ORA","ORC","central","semi-central"};
93 for (Int_t itr=0; itr<6; itr++) {
94 GetRawsData(197)->Fill(triggers[itr], fNumTriggersCal[itr]);
95 GetRawsData(197)->SetBinContent(itr+1, fNumTriggersCal[itr]);
96 }
97 GetRawsData(205)->SetOption("COLZ");
98 GetRawsData(206)->SetOption("COLZ");
99 GetRawsData(207)->SetOption("COLZ");
100 GetRawsData(205)->GetXaxis()->SetTitle("#PMT");
101 GetRawsData(206)->GetXaxis()->SetTitle("#PMT");
102 GetRawsData(205)->GetYaxis()->SetTitle("NeventsReg/Nevents");
103 GetRawsData(206)->GetYaxis()->SetTitle("NeventsReg/Nevents");
104 GetRawsData(207)->GetXaxis()->SetTitle("#PMT");
105 GetRawsData(207)->GetYaxis()->SetTitle("Charge, #channels");
106 }
4e25ac79 107 if ( task == AliQAv1::kRECPOINTS) {
57acd2d2 108 GetRecPointsData(0)->SetOption("COLZ");
109 GetRecPointsData(1)->SetOption("COLZ");
110 GetRecPointsData(0)->GetXaxis()->SetTitle("#PMT");
111 GetRecPointsData(1)->GetXaxis()->SetTitle("#PMT");
112 GetRecPointsData(0)->GetYaxis()->SetTitle("CFD time");
113 GetRecPointsData(1)->GetYaxis()->SetTitle("Charge, #channels");
114 }
115 }
04236e67 116}
117
118//____________________________________________________________________________
119void AliT0QADataMakerRec::StartOfDetectorCycle()
120{
121 //Detector specific actions at start of cycle
b9024d69 122 fnEvent=0;
04236e67 123
124}
125
126//____________________________________________________________________________
127void AliT0QADataMakerRec::InitRaws()
128{
129 // create Raw histograms in Raw subdir
7d297381 130 const Bool_t expert = kTRUE ;
131 const Bool_t saveCorr = kTRUE ;
132 const Bool_t image = kTRUE ;
133
1d7681da 134 TString timename, ampname, qtcname, ledname;
135 TString timeCalname, ampCalname, ledCalname, qtcCalname;
04236e67 136
86c020af 137 TH1F* fhRefPoint = new TH1F("hRefPoint","Ref Point", 10,1252170, 1252180);
7d297381 138 Add2RawsList( fhRefPoint,0, !expert, image, !saveCorr);
86c020af 139
1d7681da 140 TH1F *fhRawCFD[24]; TH1F * fhRawLEDamp[24];
141 TH1F *fhRawQTC[24]; TH1F * fhRawLED[24];
142 TH1F *fhRawCFDcal[24]; TH1F * fhRawLEDampcal[24];
143 TH1F *fhRawQTCcal[24]; TH1F * fhRawLEDcal[24];
86c020af 144
04236e67 145 for (Int_t i=0; i<24; i++)
146 {
147 timename ="hRawCFD";
1d7681da 148 ledname = "hRawLED";
04236e67 149 qtcname = "hRawQTC";
1d7681da 150 ampname = "hRawLEDminCFD";
04236e67 151 timename += i;
152 ampname += i;
153 qtcname += i;
1d7681da 154 ledname += i;
155 fhRawCFD[i] = new TH1F(timename.Data(), timename.Data(),500,-250,250);
7d297381 156 Add2RawsList( fhRawCFD[i],i+1, !expert, image, !saveCorr);
1d7681da 157 fhRawLED[i] = new TH1F(ledname.Data(), ledname.Data(),2000,-1000,1000);
7d297381 158 Add2RawsList( fhRawLED[i],i+24+1, !expert, image, !saveCorr);
446d6ec4 159 fhRawLEDamp[i] = new TH1F(ampname.Data(), ampname.Data(),100,300,600);
7d297381 160 Add2RawsList( fhRawLEDamp[i],i+48+1, !expert, image, !saveCorr);
86c020af 161 fhRawQTC[i] = new TH1F(qtcname.Data(), qtcname.Data(),1500,1000,7000);
7d297381 162 Add2RawsList( fhRawQTC[i],i+72+1, !expert, image, !saveCorr);
04236e67 163 }
1d7681da 164 TH1F* fhRawTrigger = new TH1F("hRawTrigger"," phys triggers",5,0,5);
7d297381 165 Add2RawsList(fhRawTrigger ,97, !expert, image, !saveCorr);
1d7681da 166
86c020af 167 TH1F* fhRawMean = new TH1F("hRawMean","online mean signal", 100,2400,2500);
7d297381 168 Add2RawsList( fhRawMean,98, !expert, image, !saveCorr);
86c020af 169 TH1F* fhRawVertex = new TH1F("hRawVertex","online vertex signal", 100,0,600);
7d297381 170 Add2RawsList( fhRawVertex,99, !expert, image, !saveCorr);
86c020af 171 TH1F* fhRawORA = new TH1F("hRawORA","online OR A", 100,2500,2800);
7d297381 172 Add2RawsList( fhRawORA,100, !expert, image, !saveCorr);
86c020af 173 TH1F* fhRawORC = new TH1F("hRawORC","online OR C", 100,2000,2300);
7d297381 174 Add2RawsList( fhRawORC,101, !expert, image, !saveCorr);
1d7681da 175
5ed41460 176 for (Int_t i=0; i<24; i++)
177 {
178 // for events with trigger CALIBRATION_EVENT
179 timeCalname ="hRawCFDcal";
1d7681da 180 ledCalname = "hRawLEDcal";
181 ampCalname = "hRawLEDminCFDcal";
5ed41460 182 qtcCalname = "hRawQTCcal";
183 timeCalname += i;
1d7681da 184 ledCalname += i;
5ed41460 185 ampCalname += i;
186 qtcCalname += i;
1d7681da 187 fhRawCFDcal[i] = new TH1F(timeCalname.Data(), timeCalname.Data(),2000,-1000,1000);
7d297381 188 Add2RawsList( fhRawCFDcal[i],101+i+1, !expert, image, !saveCorr);
1d7681da 189 fhRawLEDcal[i] = new TH1F(ledCalname.Data(), ledCalname.Data(),2000,-1000,1000);
7d297381 190 Add2RawsList( fhRawLEDcal[i],101+i+24+1, !expert, image, !saveCorr);
1d7681da 191 fhRawLEDampcal[i] = new TH1F(ampCalname.Data(), ampCalname.Data(),300,300,600);
7d297381 192 Add2RawsList( fhRawLEDampcal[i],101+i+48+1, !expert, image, !saveCorr);
5ed41460 193 fhRawQTCcal[i] = new TH1F(qtcCalname.Data(), qtcCalname.Data(),1000,0,7000);
7d297381 194 Add2RawsList( fhRawQTCcal[i],101+i+72+1, !expert, image, !saveCorr);
5ed41460 195 }
1d7681da 196
197 TH1F* fhRawTriggerCal = new TH1F("hRawTriggerCal"," laser triggers",6,0,6);
7d297381 198 Add2RawsList(fhRawTriggerCal ,197 , !expert, !image, saveCorr);
1d7681da 199
5ed41460 200 TH1F* fhRawMeanCal = new TH1F("hRawMeanCal","online mean signal, calibration event",
54f32a55 201 10000,0,10000);
1d7681da 202 Add2RawsList( fhRawMeanCal,198);
5ed41460 203 TH1F* fhRawVertexCal = new TH1F("hRawVertexCal","online vertex signal, calibration even ",
54f32a55 204 10000,0,10000);
7d297381 205 Add2RawsList( fhRawVertexCal,199, !expert, image, !saveCorr);
54f32a55 206 TH1F* fhRawORAcal = new TH1F("hRawORAcal","online OR A", 10000,0,10000);
7d297381 207 Add2RawsList( fhRawORAcal,200, !expert, image, !saveCorr );
54f32a55 208 TH1F* fhRawORCcal = new TH1F("hRawORCcal","online OR C", 10000,0,10000);
7d297381 209 Add2RawsList( fhRawORCcal,201, !expert, image, !saveCorr);
54f32a55 210 TH1F* fhMultcal = new TH1F("hMultcal","full mulltiplicity", 10000,0,10000);
7d297381 211 Add2RawsList( fhMultcal,202, !expert, image, !saveCorr );
5ed41460 212 TH1F* fhMultScal = new TH1F("hMultScal","full multiplicity with semi-central trigger",
54f32a55 213 10000,0,10000);
7d297381 214 Add2RawsList( fhMultScal,203, !expert, image, !saveCorr);
5ed41460 215 TH1F* fhMultCcal = new TH1F("hMultCcal","full multiplicity with central trigger",
216 1000,0,10000);
7d297381 217 Add2RawsList( fhMultCcal,204, !expert, image, !saveCorr);
1d7681da 218
b9024d69 219 // TH2F* fhEffCFD = new TH2F("hEffCFD"," CFD time",24, 0 ,24,
220 // 100,-500,500);
221 TH2F* fhEffCFD = new TH2F("hEffCFD"," CFD time",24, 0 ,24, 50, 0,5);
222
7d297381 223 Add2RawsList( fhEffCFD,205, !expert, !image, saveCorr);
1d7681da 224 TH2F* fhEffLED = new TH2F("hEffLED","LED time",24, 0 ,24,
b9024d69 225 100, 0, 5);
226 //100,-500,500);
227
7d297381 228 Add2RawsList( fhEffLED,206, !expert, !image, saveCorr);
1d7681da 229 TH2F* fhEffQTC = new TH2F("hEffQTC","QTC amplitude",24, 0 ,24,
230 100,0,7000);
7d297381 231 Add2RawsList( fhEffQTC,207, !expert, !image, saveCorr);
b9024d69 232 //yeys guide line
233 // TH2F* fhLineQTC = new TH2F("hLineQTC","QTC amplitude boeder",24, 0 ,24,
234 // 100,0,7000);
7d297381 235// Add2RawsList( fhLineQTC,208, !expert, !image, saveCorr);
44ed7a66 236}
237
238//____________________________________________________________________________
239void AliT0QADataMakerRec::InitDigits()
240{
241 // create Digits histograms in Digits subdir
242 const Bool_t expert = kTRUE ;
243 const Bool_t image = kTRUE ;
244
245 TH2F * fhDigCFD = new TH2F("fhDigCFD", " CFD digits",25,-0.5,24.5,100,100,1000);
246 Add2DigitsList( fhDigCFD,0);
247 TH2F *fhDigLEDamp = new TH2F("fhDigLEDamp", " LED-CFD digits",25,-0.5,24.5,100,100,1000);
248 Add2DigitsList( fhDigLEDamp,1, !expert, image);
249 TH2F * fhDigQTC = new TH2F("fhDigQTC", " QTC digits",25,-0.5,24.5,100,100,1000);
250 Add2DigitsList( fhDigQTC,2, !expert, image);
251
252
253
04236e67 254}
255
256//____________________________________________________________________________
257
258void AliT0QADataMakerRec::InitRecPoints()
259{
260 // create cluster histograms in RecPoint subdir
7d297381 261 const Bool_t expert = kTRUE ;
262 const Bool_t image = kTRUE ;
1d7681da 263
b9024d69 264 TH2F* fhRecCFD = new TH2F("hRecCFD"," CFD time",24, 0 ,24,
265 100,-50,50);
7d297381 266 Add2RecPointsList ( fhRecCFD,0, !expert, image);
b9024d69 267
268 TH2F* fhRecAmpDiff = new TH2F("hRecAmpDiff"," LED-CFD min QTC amplitude",
269 24, 0 ,24, 200,-10,10);
7d297381 270 Add2RecPointsList (fhRecAmpDiff, 1, !expert, image);
04236e67 271
b9024d69 272 TH1F *fhMean = new TH1F("hMean","online - rec mean",1000, -5000, 5000);
7d297381 273 Add2RecPointsList ( fhMean,2, !expert, image);
b9024d69 274 }
04236e67 275
276//____________________________________________________________________________
277void AliT0QADataMakerRec::InitESDs()
278{
279 //create ESDs histograms in ESDs subdir
7d297381 280 const Bool_t expert = kTRUE ;
281 const Bool_t image = kTRUE ;
282
446d6ec4 283 TH1F *fhESDMean = new TH1F("hESDmean"," ESD mean",100,2400,2500);
7d297381 284 Add2ESDsList(fhESDMean, 0, !expert, image) ;
6640491e 285 TH1F * fhESDVertex = new TH1F("hESDvertex","ESD vertex",82,-30,30);
7d297381 286 Add2ESDsList(fhESDVertex, 1, !expert, image) ;
c724dd64 287
04236e67 288
289}
290
291//____________________________________________________________________________
292void AliT0QADataMakerRec::MakeRaws( AliRawReader* rawReader)
293{
78328afd 294 rawReader->Reset() ;
04236e67 295 //fills QA histos for RAW
5ed41460 296 Int_t shift=0;
b9024d69 297 Float_t effic ;
298
86c020af 299 AliT0RawReader *start = new AliT0RawReader(rawReader);
300 // start->Next();
301 if (! start->Next())
5379c4a3 302 AliDebug(AliQAv1::GetQADebugLevel(),Form(" no raw data found!!"));
86c020af 303 else
304 {
b9024d69 305 fnEvent++;
306
5ed41460 307 UInt_t type =rawReader->GetType();
308 // cout<<" !!!!! new event type = "<<type<<endl;
86c020af 309 Int_t allData[110][5];
310 for (Int_t i0=0; i0<105; i0++)
311 {
312 for (Int_t j0=0; j0<5; j0++) allData[i0][j0]=0;
04236e67 313 }
86c020af 314 for (Int_t i=0; i<105; i++)
315 for (Int_t iHit=0; iHit<5; iHit++)
316 allData[i][iHit]= start->GetData(i,iHit);
317
1d7681da 318 if (allData[0][0]>0) GetRawsData(0) -> Fill( allData[0][0]);
319 // allData[0][0] = allData[0][0] - 7000;
320 if (type == 8) shift=101;
f6c2d5e2 321 if (type == 7) shift=0;
1d7681da 322
86c020af 323 for (Int_t ik = 0; ik<12; ik++){
324 for (Int_t iHt=0; iHt<5; iHt++){
1d7681da 325 //cfd
326 if(allData[ik+1][iHt]>0)
327 GetRawsData(shift+ik+1) ->
328 Fill(allData[ik+1][iHt]-allData[1][0]);
329 //led
330 if(allData[ik+13][iHt] > 0 && allData[13][iHt]>0)
331 GetRawsData(shift+ik+24+1)->
332 Fill(allData[ik+13][iHt]-allData[13][iHt]);
333 //led -cfd
334
335 if(allData[ik+13][iHt] > 0 && allData[ik+1][iHt] >0 )
336 GetRawsData(shift+ik+48+1)->
337 Fill(allData[ik+13][iHt]-allData[ik+1][iHt]);
338 //qtc
339 if(allData[2*ik+25][iHt] > 0 && allData[2*ik+26][iHt] > 0)
340 GetRawsData(shift+ik+72+1)->
341 Fill(allData[2*ik+25][iHt]-allData[2*ik+26][iHt]);
342
5ed41460 343
b9024d69 344 if(type == 8 && allData[ik+1][iHt]>0 ) feffC[ik]++;
345 if(type == 8 && allData[ik+13][iHt]>0 ) feffA[ik]++;
346 // GetRawsData(206)->Fill(ik,allData[ik+13][iHt]-allData[13][0]);
1d7681da 347 if(type == 8 && (allData[2*ik+25][iHt]>0 && allData[2*ik+26][iHt]>0) )
348 GetRawsData(207)->Fill(ik,allData[2*ik+25][iHt]-allData[2*ik+26][iHt]);
04236e67 349 }
b9024d69 350 effic = Float_t(feffC[ik])/Float_t(fnEvent);
351 GetRawsData(205)->Fill(ik,effic );
352 effic = Float_t(feffA[ik])/Float_t(fnEvent);
353 GetRawsData(206)->Fill(ik,effic );
354 // printf("CFD efficiency for PMT %i = %f \n", ik, effic);
86c020af 355 }
86c020af 356 for (Int_t ik = 12; ik<24; ik++) {
357 for (Int_t iHt=0; iHt<5; iHt++) {
1d7681da 358 if(allData[ik+45][iHt]>0)
359 //cfd
360 GetRawsData(shift+ik+1)->
361 Fill(allData[ik+45][iHt]-allData[57][0]);
362 //qtc
363 if(allData[2*ik+57][iHt]>0 && allData[2*ik+58][iHt]>0)
364 GetRawsData(shift+ik+72+1)->
365 Fill(allData[2*ik+57][iHt]-allData[2*ik+58][iHt]);
366 //led
367 if(allData[ik+57][iHt] > 0 )
368 GetRawsData(shift+ik+24+1)->
369 Fill(allData[ik+57][iHt]-allData[69][iHt]);
370 //led-cfd
371 if(allData[ik+57][iHt] > 0 &&allData[ik+45][iHt]>0)
372 GetRawsData(shift+ik+48+1)->
373 Fill(allData[ik+57][iHt]-allData[ik+45][iHt]);
374
b9024d69 375 if(type == 8 && allData[ik+45][iHt]>0 ) feffC[ik]++;
376
377 if(type == 8 && allData[ik+57][iHt]>0 ) feffA[ik]++;
378 // GetRawsData(206)->Fill(ik,allData[ik+57][iHt]-allData[69][0]);
379 if(type == 8 && (allData[2*ik+57][iHt]>0 && allData[2*ik+58][iHt]>0) )
380 GetRawsData(207)->Fill(ik,allData[2*ik+57][iHt]-allData[2*ik+58][iHt]);
86c020af 381 }
b9024d69 382 effic = Float_t(feffC[ik])/Float_t(fnEvent);
383 GetRawsData(205)->Fill(ik,effic );
384 effic = Float_t(feffA[ik])/Float_t(fnEvent);
385 GetRawsData(206)->Fill(ik,effic );
386 // printf("CFD efficiency for PMT %i = %f \n", ik, effic); }
86c020af 387 }
b9024d69 388
1d7681da 389 Int_t trChannel[6] = {49,50,51,52,55,56};
f6c2d5e2 390 if(type == 7)
5ed41460 391 {
1d7681da 392 for (Int_t iHt=0; iHt<6; iHt++) {
393 for (Int_t itr=0; itr<6; itr++) {
394 if(allData[trChannel[itr]][iHt]>0) fNumTriggers[itr]++;
395 }
f6c2d5e2 396 }
5ed41460 397 }
398 if(type == 8)
399 {
f6c2d5e2 400 for (Int_t iHt=0; iHt<5; iHt++) {
1d7681da 401 for (Int_t itr=0; itr<6; itr++) {
402 if(allData[trChannel[itr]][iHt]>0)
403 {
404
405 GetRawsData(198+itr)->Fill(allData[trChannel[itr]][iHt]-allData[1][0]);
406
407 fNumTriggersCal[itr]++;
408 }
409 }
b9024d69 410 if(allData[53][iHt]>0 && allData[54][iHt]>0)
411 GetRawsData(204)->Fill(allData[53][iHt]-allData[54][iHt]);
f6c2d5e2 412 }
1d7681da 413 }
414
b9024d69 415
1d7681da 416
86c020af 417 delete start;
b9024d69 418 }
86c020af 419 }
1d7681da 420
421
04236e67 422
44ed7a66 423//____________________________________________________________________________
424void AliT0QADataMakerRec::MakeDigits( TTree *digitsTree)
425{
426 //fills QA histos for Digits
427
428 TArrayI *digCFD = new TArrayI(24);
429 TArrayI *digLED = new TArrayI(24);
430 TArrayI *digQT0 = new TArrayI(24);
431 TArrayI *digQT1 = new TArrayI(24);
432 Int_t refpoint=0;
433
434 TBranch *brDigits=digitsTree->GetBranch("T0");
435 AliT0digit *fDigits = new AliT0digit() ;
436 if (brDigits) {
437 brDigits->SetAddress(&fDigits);
438 }else{
439 AliError(Form("EXEC Branch T0 digits not found"));
440 return;
441 }
442 digitsTree->GetEvent(0);
443 digitsTree->GetEntry(0);
444 brDigits->GetEntry(0);
445 fDigits->GetTimeCFD(*digCFD);
446 fDigits->GetTimeLED(*digLED);
447 fDigits->GetQT0(*digQT0);
448 fDigits->GetQT1(*digQT1);
449 refpoint = fDigits->RefPoint();
450 for (Int_t i=0; i<24; i++)
451 {
452 if (digCFD->At(i)>0) {
453 Int_t cfd=digCFD->At(i)- refpoint;
454 GetDigitsData(0) ->Fill(i,cfd);
455 GetDigitsData(1) -> Fill(i,(digLED->At(i) - digCFD->At(i)));
456 GetDigitsData(2) -> Fill(i, (digQT1->At(i) - digQT0->At(i)));
457 }
458 }
459
460 delete digCFD;
461 delete digLED;
462 delete digQT0;
463 delete digQT1;
464
465}
466
04236e67 467//____________________________________________________________________________
468void AliT0QADataMakerRec::MakeRecPoints(TTree * clustersTree)
469{
470 //fills QA histos for clusters
471
446d6ec4 472 AliT0RecPoint* frecpoints= new AliT0RecPoint ();
04236e67 473 if (!frecpoints) {
474 AliError("Reconstruct Fill ESD >> no recpoints found");
475 return;
476 }
477 TBranch *brRec =clustersTree ->GetBranch("T0");
478 if (brRec) {
479 brRec->SetAddress(&frecpoints);
480 }else{
481 AliError(Form("EXEC Branch T0 rec not found "));
482 return;
483 }
484
485 brRec->GetEntry(0);
b9024d69 486
04236e67 487 for ( Int_t i=0; i<24; i++) {
1d7681da 488 if(i<12)
b9024d69 489 GetRecPointsData(0) -> Fill(i, frecpoints -> GetTime(i) - frecpoints -> GetTime(0));
1d7681da 490 if(i>11)
b9024d69 491 GetRecPointsData(0) -> Fill(i, frecpoints -> GetTime(i) - frecpoints -> GetTime(12));
492 GetRecPointsData(1) -> Fill( i, frecpoints -> GetAmp(i) - frecpoints->AmpLED(i));
04236e67 493 }
b9024d69 494 Double_t mmm=frecpoints->GetOnlineMean()- frecpoints->GetMeanTime();
495 GetRecPointsData(2) ->Fill(mmm);
496 // printf(" AliT0QADataMakerRec: diff mean %f \n",mmm );
497 // GetRecPointsData(73) ->Fill(frecpoints->GetMeanTime());
04236e67 498
b9024d69 499
500
04236e67 501}
502
503//____________________________________________________________________________
504void AliT0QADataMakerRec::MakeESDs(AliESDEvent * esd)
505{
506 //fills QA histos for ESD
507
508 GetESDsData(0) -> Fill(esd->GetT0());
509 GetESDsData(1)-> Fill(esd->GetT0zVertex());
510
511}