]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/AliT0QADataMakerRec.cxx
Changes in QA to be able to process separately different triggers (Ruben)
[u/mrichter/AliRoot.git] / T0 / AliT0QADataMakerRec.cxx
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 //  Alla.Maevskaya@cern.ch
22 //---
23
24 // --- ROOT system ---
25 #include <TClonesArray.h>
26 #include <TFile.h> 
27 #include <TH1F.h> 
28 #include <TH2F.h> 
29 #include <TDirectory.h>
30 #include <TMath.h>
31 // --- Standard library ---
32
33 // --- AliRoot header files ---
34 #include "AliESDEvent.h"
35 #include "AliLog.h"
36 #include "AliT0digit.h" 
37 #include "AliT0hit.h"
38 #include "AliT0RecPoint.h"
39 #include "AliT0QADataMakerRec.h"
40 #include "AliQAChecker.h"
41 #include "AliT0RawReader.h"
42 #include "AliT0RecoParam.h"
43 #include "THnSparse.h"
44
45 #include "Riostream.h"
46 ClassImp(AliT0QADataMakerRec)
47            
48 //____________________________________________________________________________ 
49   AliT0QADataMakerRec::AliT0QADataMakerRec() : 
50 AliQADataMakerRec(AliQAv1::GetDetName(AliQAv1::kT0), 
51                   "T0 Quality Assurance Data Maker")
52 //  fnEventCal(0),
53 //  fnEventPhys(0)
54 {
55   // ctor
56   // RS: There is some inconsistency here: the separation of physics and calib. events/histos is done by
57   // fEventSpecie. Why do we book separate histos on different slots for calib and physics ? 
58   // I am changing this in such way that we don't need local counters like fNumTriggers (the corresponding
59   // histos now incremented in the MakeRaws, and for the normalization I will use the framework's counters
60   // AliQADataMaker::GetEvCountCycle(...), AliQADataMaker::GetEvCountTotal(...)
61   // All these fTrEff.. feff.. will by directly filled in corresponding histos
62   /*
63   for (Int_t i=0; i<6; i++) {
64     fNumTriggers[i]=0;
65     fNumTriggersCal[i]=0;
66     fTrEffCal[i] = 0;
67     fTrEffPhys[i] = 0;
68
69   }
70   for (Int_t i=0; i<24; i++)
71     {
72       feffC[i]=0;
73       feffA[i]=0;
74       feffqtc[i]=0;
75       feffPhysC[i]=0;
76       feffPhysA[i]=0;
77       feffqtcPhys[i]=0;
78       fMeans[i]=0;
79    }
80   */
81   // for(Int_t ic=0; ic<24; ic++) 
82   // fMeans[ic] = new TH1F(Form("CFD1minCFD%d",ic+1),"CFD-CFD",100,-250,250);
83 }
84
85
86 //____________________________________________________________________________ 
87 AliT0QADataMakerRec::AliT0QADataMakerRec(const AliT0QADataMakerRec& qadm) :
88   AliQADataMakerRec()
89   //  fnEventCal(0),
90   //  fnEventPhys(0)
91 {
92   //copy ctor 
93  SetName((const char*)qadm.GetName()) ; 
94   SetTitle((const char*)qadm.GetTitle()); 
95 }
96
97 //__________________________________________________________________
98 AliT0QADataMakerRec& AliT0QADataMakerRec::operator = (const AliT0QADataMakerRec& qadm )
99 {
100   // Equal operator.
101   this->~AliT0QADataMakerRec();
102   new(this) AliT0QADataMakerRec(qadm);
103   return *this;
104 }
105 //__________________________________________________________________
106 AliT0QADataMakerRec::~AliT0QADataMakerRec()
107 {
108   //destructor
109 }
110 //____________________________________________________________________________
111 void AliT0QADataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray ** list)
112 {
113   //Detector specific actions at end of cycle
114   // do the QA checking
115   AliInfo(Form("Task: %d",task));
116   ResetEventTrigClasses();
117   AliQAChecker::Instance()->Run(AliQAv1::kT0, task, list) ;
118   //  const Char_t *triggers[6] = {"mean", "vertex","ORA","ORC","central","semi-central"};
119   //
120   TH1* htmp = 0;
121   for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
122     //
123     // RS: There is some inconsistency here: the separation of physics and calib. events/histos is done by
124     // fEventSpecie. Why do we book separate histos on different slots for calib and physics ? 
125     // I am changing this in such way that we don't need local counters like fNumTriggers (the corresponding
126     // histos now incremented in the MakeRaws, and for the normalization I will use the framework's counters
127     // AliQADataMaker::GetEvCountCycle(...), AliQADataMaker::GetEvCountTotal(...)
128     //
129     // I think the histos xx+250 should be suppressed (the xx calib histos of specie==calibration will be 
130     // used automatically)
131     //
132     if (! IsValidEventSpecie(specie, list)) continue;
133     SetEventSpecie(AliRecoParam::ConvertIndex(specie));
134     //
135     for (int itc=-1;itc<GetNTrigClasses();itc++) { // RS: loop over eventual clones per trigger class
136       // 
137       if ( task == AliQAv1::kRAWS ) {
138         //
139         float nEvent = GetEvCountCycleRaws(itc);   // counted events for given trigger class
140         if (nEvent>0) {
141           if ( (htmp=GetRawsData(169,itc))     ) htmp->Scale(1./nEvent); // RS 
142           if ( (htmp=GetRawsData(169+250,itc)) ) htmp->Scale(1./nEvent); // RS I think this should be removed!!!
143           //
144           if ( (htmp=GetRawsData(207+250,itc)) ) htmp->Scale(1./nEvent); // RS  // former feffC count. Remove?
145           if ( (htmp=GetRawsData(207,itc))     ) htmp->Scale(1./nEvent); // RS  // former feffPhysC count. 
146           
147           if ( (htmp=GetRawsData(208+250,itc)) ) htmp->Scale(1./nEvent); // RS  // former feffA count. Remove?
148           if ( (htmp=GetRawsData(209+250,itc)) ) htmp->Scale(1./nEvent); // RS  // former feffqtc count. 
149           //
150         }
151       } // kRAWS
152     } // RS: loop over eventual clones per trigger class
153   } // loop over species
154   //
155 }
156
157 /*
158 // RS Old version using custom cunters
159 void AliT0QADataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray ** list)
160 {
161   //Detector specific actions at end of cycle
162   // do the QA checking
163   AliQAChecker::Instance()->Run(AliQAv1::kT0, task, list) ;
164   
165   for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
166     if (! IsValidEventSpecie(specie, list)) 
167       continue ;
168     SetEventSpecie(AliRecoParam::ConvertIndex(specie)) ; 
169     if ( task == AliQAv1::kRAWS ) {
170       GetRawsData(0)->SetLabelSize(0.02);
171       const Char_t *triggers[6] = {"mean", "vertex","ORA","ORC","central","semi-central"};
172       for (Int_t itr=0; itr<6; itr++) {
173         if ( fnEventCal>0) 
174           fTrEffCal[itr] = Float_t (fNumTriggersCal[itr])/Float_t (fnEventCal);
175         if ( fnEventPhys>0) 
176           fTrEffPhys[itr] = Float_t (fNumTriggers[itr])/Float_t (fnEventPhys);
177
178         GetRawsData(169+250)->Fill(triggers[itr], fTrEffCal[itr]);
179         GetRawsData(169+250)->SetBinContent(itr+1, fTrEffCal[itr]);
180         GetRawsData(169)->Fill(triggers[itr], fTrEffPhys[itr]);
181         GetRawsData(169)->SetBinContent(itr+1, fTrEffPhys[itr]);
182       } 
183       Float_t effic=0;
184       for(Int_t ik=0; ik<24; ik++)
185         {  
186           effic=0;
187           if ( fnEventCal>0) effic = Float_t(feffC[ik])/Float_t(fnEventCal);
188           GetRawsData(207+250)->SetBinContent(ik+1,effic) ;
189           effic=0;
190           if ( fnEventCal>0) effic = Float_t(feffA[ik])/Float_t(fnEventCal);
191           GetRawsData(208+250)->SetBinContent(ik+1,effic );
192           effic=0;
193           if ( fnEventCal>0) effic = Float_t(feffqtc[ik])/Float_t(fnEventCal);
194           GetRawsData(209+250)->SetBinContent(ik+1, effic);
195
196           effic=0;
197           if ( fnEventPhys>0) effic = Float_t(feffPhysC[ik])/Float_t(fnEventPhys);
198           GetRawsData(207)->SetBinContent(ik+1, effic);
199
200         }           
201     }    
202   }
203 }
204
205 */
206
207 //____________________________________________________________________________
208 void AliT0QADataMakerRec::StartOfDetectorCycle()
209 {
210   //Detector specific actions at start of cycle
211
212 }
213  
214 //____________________________________________________________________________ 
215 void AliT0QADataMakerRec::InitRaws()
216 {
217   // create Raw histograms in Raw subdir
218   const Bool_t expert   = kTRUE ; 
219   const Bool_t saveCorr = kTRUE ; 
220   const Bool_t image    = kTRUE ; 
221   Float_t low[500];
222   Float_t high[500];
223   //triggers
224   const Char_t *triggers[6] = {"mean", "vertex","ORA","ORC","central","semi-central"};
225    
226   
227   for (Int_t i=0; i<500; i++){
228     low[i] = 0;
229     high[i] = 30000;
230
231   }
232
233   TString timename, ampname, qtcname, ledname;
234   TString timeCalname, ampCalname, ledCalname, qtcCalname;
235   TString qt1name, qt0name, qt1Calname, qt0Calname;
236   TString nhits;
237
238   TH1F* fhRefPoint = new TH1F("hRefPoint","Ref Point", 10000, 0 ,50000);
239   fhRefPoint->SetLabelSize(0.02);
240   Add2RawsList( fhRefPoint,0, expert, !image, !saveCorr);
241
242   TH1F* fhRefPointcal = new TH1F("hRefPointcal","Ref Point laser", 5000, 0 ,20000);
243   Add2RawsList( fhRefPointcal,250, expert, !image, !saveCorr);
244
245   TH1F *fhRawCFD[24]; 
246   TH1F * fhRawLEDamp[24];
247   TH1F *fhRawQTC[24]; TH1F * fhRawLED[24];
248   TH1F *fhRawCFDcal[24]; TH1F * fhRawLEDampcal[24]; 
249    TH1F *fhRawQTCcal[24];  TH1F * fhRawLEDcal[24];
250   TH1F *fhRawQT0cal[24]; TH1F *fhRawQT1cal[24];
251   TH1F *fhRawQT1[24]; TH1F *fhRawQT0[24];
252   TH1F* fhRawNhits[24];
253  
254   for (Int_t i=0; i<24; i++)
255     {
256       timename ="hRawCFD";
257       ledname = "hRawLED";
258       qtcname = "hRawQTC";
259       qt0name = "hRawQT0_";
260       qt1name = "hRawQT1_";
261       ampname = "hRawLEDminCFD";
262       nhits = "hRawNhits";
263       timename += i+1;
264       ampname += i+1;
265       qtcname += i+1;
266       qt0name += i+1;
267       qt1name += i+1;
268       ledname += i+1;
269       nhits   += i+1;
270       fhRawCFD[i] = new TH1F(timename.Data(), Form("%s;CFD [#channels];Counts", timename.Data()),Int_t((high[i+1]-low[i+1])/4),low[i+1],high[i+1]);
271       ForbidCloning(fhRawCFD[i]);       //RS I don't know how histos 1-24 should be processed in MakeRaws, for the moment forbidding the cloning
272       Add2RawsList( fhRawCFD[i],i+1, expert, !image, !saveCorr);
273       fhRawLED[i] = new TH1F(ledname.Data(),  Form("%s;LED[#channels];Counts", ledname.Data()),Int_t((high[i+25]-low[i+25])/4),low[i+25],high[i+25]);
274       Add2RawsList( fhRawLED[i],i+25, expert, !image, !saveCorr);
275       fhRawLEDamp[i] = new TH1F(ampname.Data(),  Form("%s;LED-CFD [#channels];Counts", ampname.Data()),1000,0,1000);
276       Add2RawsList( fhRawLEDamp[i],i+49, expert, !image, !saveCorr);
277       fhRawQTC[i] = new TH1F(qtcname.Data(),  Form("%s;QTC[#channels];Counts", qtcname.Data()),10000,0,10000);
278       Add2RawsList( fhRawQTC[i],i+73, expert, !image, !saveCorr);
279       fhRawQT1[i] = new TH1F(qt1name.Data(),  Form("%s;QT1[#channels];Counts", qt1name.Data()),Int_t((high[97+i]-low[97+i])/4),low[97+i],high[97+i]);
280       Add2RawsList( fhRawQT1[i],97+i, expert, !image, !saveCorr);
281       fhRawQT0[i] = new TH1F(qt0name.Data(),  Form("%s;QT0[#channels];Counts", qt0name.Data()),Int_t((high[121+i]-low[121+i])/4),low[121+i],high[121+i]);
282       Add2RawsList( fhRawQT0[i],121+i, expert, !image, !saveCorr);
283       
284       fhRawNhits[i] = new TH1F(nhits.Data(),  Form("%s;#Hits;Events", nhits.Data()),20, 0, 20);
285       Add2RawsList( fhRawNhits[i],176+i, expert, !image, !saveCorr);
286       
287       
288       timeCalname ="hRawCFDcal";
289       ledCalname = "hRawLEDcal";
290       ampCalname = "hRawLEDminCFDcal";
291       qtcCalname = "hRawQTCcal";
292       qt0Calname = "hRawQT0cal";
293       qt1Calname = "hRawQT1cal";
294       timeCalname += i+1;
295       ledCalname += i+1;
296       ampCalname += i+1;
297       qtcCalname += i+1;
298       qt0Calname += i+1;
299       qt1Calname += i+1;
300       fhRawCFDcal[i] = new TH1F(timeCalname.Data(),  Form("LASER: %s;Time ;Counts", timeCalname.Data()),Int_t((high[251+i]-low[251+i])/4),low[251+i],high[251+i]);
301       Add2RawsList( fhRawCFDcal[i],251+i, expert, !image, !saveCorr);
302       
303       fhRawLEDcal[i] = new TH1F(ledCalname.Data(),  Form("LASER: %s;Time ;Counts", ledCalname.Data()),Int_t((high[251+i+24]-low[251+i+24])/4),low[251+i+24],high[251+i+24]);
304       Add2RawsList( fhRawLEDcal[i],251+i+24, expert, !image, !saveCorr);
305       
306       fhRawLEDampcal[i] = new TH1F(ampCalname.Data(), Form("LASER: %s;Amplitude [ADC counts];Counts", ampCalname.Data()),1000,0,1000);
307       Add2RawsList( fhRawLEDampcal[i],251+i+48, expert, !image, !saveCorr);
308       
309       fhRawQTCcal[i] = new TH1F(qtcCalname.Data(), Form("LASER: %s;QTC[#channels]; ;Counts",qtcCalname.Data()),10000,0,10000);
310       Add2RawsList( fhRawQTCcal[i],251+i+72, expert, !image, !saveCorr);
311       
312       fhRawQT0cal[i] = new TH1F(qt0Calname.Data(), Form("LASER: %s;QT0[#channels] ;Counts",qt0Calname.Data()),Int_t((high[251+96+i]-low[251+96+i])/4),low[251+96+i],high[251+96+i]);
313       Add2RawsList( fhRawQT0cal[i],251+96+i, expert, !image, !saveCorr);
314       
315       fhRawQT1cal[i] = new TH1F(qt1Calname.Data(), Form("LASER: %s;QT1[#channels] ;Counts",qt1Calname.Data()),Int_t((high[i+251+120]-low[i+251+120])/4),low[i+251+120],high[i+251+120]);
316       Add2RawsList( fhRawQT1cal[i],i+251+120, expert, !image, !saveCorr);
317       
318     }
319   
320   
321   TH1F* fhRawTrigger = new TH1F("hRawTrigger"," phys triggers;Trigger ;Counts",6,0,6);
322   for (Int_t itr=0; itr<6; itr++) fhRawTrigger->Fill(triggers[itr], 0); // RS Modified to allow cloning (no fNumTriggers member anymore)
323   
324   Add2RawsList(fhRawTrigger ,169, expert, image, !saveCorr);
325   
326   TH1F* fhRawMean = new TH1F("hRawMean","online mean signal, physics event;",Int_t((high[170]-low[170])/4),low[170],high[170]);
327   Add2RawsList( fhRawMean,170, expert, !image, !saveCorr);
328
329   TH1F* fhRawVertex = new TH1F("hRawVertex","online vertex signal; counts",Int_t((high[171]-low[171])/4),low[171],high[171]);
330   Add2RawsList( fhRawVertex,171, expert, image, !saveCorr);
331
332   TH1F* fhRawORA = new TH1F("hRawORA","online OR A; counts",Int_t((high[172]-low[172])/4),low[172],high[172]);
333   Add2RawsList( fhRawORA,172, expert, !image, !saveCorr);
334   TH1F* fhRawORC = new TH1F("hRawORC","online OR C;counts",Int_t(( high[173]-low[173])/4),low[173],high[173]);
335   Add2RawsList( fhRawORC,173, expert, !image, !saveCorr);
336   TH1F* fhMultCentr = new TH1F("hMultCentr","online trigger Central;counts ",Int_t(( high[174]-low[174])/4),low[174],high[174]);
337   Add2RawsList( fhMultCentr,174, expert, !image, !saveCorr);
338   TH1F* fhMultSeCentr = new TH1F("hMultSemiCentr","online trigger SemiCentral;counts ",Int_t(( high[175]-low[175])/4),low[175],high[175]);
339   Add2RawsList( fhMultSeCentr,175, expert, !image, !saveCorr);
340
341
342   TH1F* fhRawTriggerCal = new TH1F("hRawTriggerCal"," laser triggers",6,0,6);  // RS Modified to allow cloning (no fNumTriggersCall member anymore)
343   for (Int_t itr=0; itr<6; itr++) fhRawTriggerCal->Fill(triggers[itr], 0);
344   Add2RawsList(fhRawTriggerCal ,169+250 , !expert, image, !saveCorr);
345   
346   TH1F* fhRawMeanCal = new TH1F("hRawMeanCal","online mean signal, calibration event",Int_t((high[170+250]-low[170+250])/4),low[170+250],high[170+250]);
347   Add2RawsList( fhRawMeanCal,170+250, expert, !image, !saveCorr);
348   
349   TH1F* fhRawVertexCal = new TH1F("hRawVertexCal","online vertex signal, calibration event ",Int_t((high[171+250]-low[171+250])/4),low[171+250],high[171+250] );
350   Add2RawsList( fhRawVertexCal,171+250, expert, !image, !saveCorr);
351   
352   
353   TH1F* fhRawORAcal = new TH1F("hRawORAcal","laser OR A; counts",Int_t((high[172+250]-low[172+250])/4),low[172+250],high[172+250]);
354   Add2RawsList( fhRawORAcal,172+250, expert, !image, !saveCorr );
355   
356   
357   TH1F* fhRawORCcal = new TH1F("hRawORCcal","laserOR C;counts ",Int_t(( high[173]-low[173])/4),low[173],high[173]);
358   Add2RawsList( fhRawORCcal,173+250, expert, !image, !saveCorr);
359   
360   TH1F* fhMultCentrcal = new TH1F("hMultCentrcal","laser trigger Central;counts ",Int_t(( high[174]-low[174])/4),low[174],high[174]);
361   Add2RawsList( fhMultCentrcal,174+250, expert, !image, !saveCorr);
362   TH1F* fhMultSeCentrcal = new TH1F("hMultSemiCentrcal","laser trigger SemiCentral;counts ",Int_t(( high[175]-low[175])/4),low[175],high[175]);
363   Add2RawsList( fhMultSeCentrcal,175+250, expert, !image, !saveCorr);
364   
365   //multiplicity trigger
366   //side A
367   TH1F* fhMultAcal = new TH1F("hMultAcal","laser: full mulltiplicity;Multiplicity A side;Entries",Int_t((high[201]-low[201])/4),low[201],high[201]);
368   Add2RawsList( fhMultAcal,201+250, expert, !image, !saveCorr );
369   TH1F* fhMultAScal = new TH1F("hMultASemical","laser:full multiplicity with semi-central trigger A side;Multiplicity;Entries",
370                                Int_t((high[202]-low[202])/4),low[202],high[202] );
371   Add2RawsList( fhMultAScal,202+250, expert, !image, !saveCorr);
372   TH1F* fhMultACcal = new TH1F("hMultACentrcal","laser:full multiplicity with central trigger A side;Multiplicity;Entries", 
373                                Int_t((high[203]-low[203])/4),low[203],high[203]);
374   Add2RawsList( fhMultACcal,203+250, expert, !image, !saveCorr);
375   
376   TH1F* fhMultA = new TH1F("hMultA","full mulltiplicity A side;Multiplicity;Entries", Int_t((high[201]-low[201])/4) ,low[201],high[201]);
377   Add2RawsList( fhMultA,201, expert, image, !saveCorr );
378   
379   TH1F* fhMultAS = new TH1F("hMultASemi","full multiplicity with semi-central trigger A side ;Multiplicity;Entries",
380                             Int_t((high[202]-low[202])/4),low[202],high[202] );
381   Add2RawsList( fhMultAS, 202, expert, !image, !saveCorr);
382   TH1F* fhMultAC = new TH1F("hMultACentr","full multiplicity with central trigger;Multiplicity;Entries", 
383                             Int_t((high[203]-low[203])/4),low[203],high[203]);
384   Add2RawsList( fhMultAC, 203, expert, !image, !saveCorr);
385   
386   
387   //side C
388   TH1F* fhMultCcal = new TH1F("hMultCcal","laser:full mulltiplicity C side;Multiplicity;Entries",Int_t((high[204]-low[204])/4),low[204],high[204]);
389   Add2RawsList( fhMultCcal,204+250, expert, !image, !saveCorr );
390   TH1F* fhMultCScal = new TH1F("hMultCSemical","laser:full multiplicity with semi-central trigger C side;Multiplicity;Entries",
391                                Int_t((high[205]-low[205])/4),low[205],high[205] );
392   Add2RawsList( fhMultCScal,205+250, expert, !image, !saveCorr);
393   TH1F* fhMultCCcal = new TH1F("hMultCCentrcal","laser:full multiplicity with central trigger C side;Multiplicity;Entries", 
394                                Int_t((high[206]-low[206])/4),low[206],high[206]);
395   Add2RawsList( fhMultCCcal,206+250, expert, !image, !saveCorr);
396   
397   TH1F* fhMultC = new TH1F("hMultC","full mulltiplicity C side;Multiplicity;Entries", Int_t(high[204]-low[204]/4) ,low[204],high[204]);
398   Add2RawsList( fhMultC,204, expert, image, !saveCorr );
399   TH1F* fhMultCS = new TH1F("hMultCSemi","full multiplicity with semi-central trigger C side;Multiplicity;Entries",
400                             Int_t((high[205]-low[205])/4),low[205],high[205] );
401   Add2RawsList( fhMultCS,205, expert, !image, !saveCorr);
402   TH1F* fhMultCC = new TH1F("hMultCentr","full multiplicity with central trigger C side;Multiplicity;Entries", 
403                             Int_t((high[206]-low[206])/4),low[206],high[206]);
404   Add2RawsList( fhMultCC,206, expert, !image, !saveCorr);
405   
406   
407   //efficiency
408   TH1F* fhEffCFD = new TH1F("hEffCFDcal","CFD efficiecy laser ;#PMT; #CFD counts/nEvents",24, 0 ,24); 
409   Add2RawsList( fhEffCFD,207+250, !expert, image, !saveCorr);
410   
411   TH1F* fhCFDeffpsys= new TH1F("fhCFDeffpsys"," CFD efficiency; #PMT; #CFD counts/nEvents",24, 0 ,24);  
412   // fhCFDeffpsys->SetMaximum(2);
413   Add2RawsList( fhCFDeffpsys, 207, expert, image, !saveCorr);
414   
415   TH1F* fhEffLED = new TH1F("hEffLEDcal","LEDefficiecy; #PMT; #LED counts/nEvent",24, 0 ,24);
416   Add2RawsList( fhEffLED,208+250, !expert, image, !saveCorr);
417   
418   TH1F* fhEffQTC = new TH1F("hEffQTCcal","QTC efficiecy; #PMT; QTC efficiency%s;",24, 0 ,24);
419   Add2RawsList( fhEffQTC,209+250, !expert, image, !saveCorr);
420   
421   
422   TH2F* fhCFD = new TH2F("hCFD","CFD phys; #PMT; CFD {#channnels}",25, 0 ,25,Int_t((high[210]-low[210])/4),low[210],high[210]);
423   fhCFD->SetOption("COLZ");
424   Add2RawsList( fhCFD,210, expert, image, !saveCorr);
425     
426   TH2F* fhLED = new TH2F("hLED","LED phys; #PMT; LED [#channnels]",25, 0 ,25,Int_t((high[211]-low[211])/4),low[211],high[211]);
427   fhLED->SetOption("COLZ");
428   Add2RawsList( fhLED,211, expert, image, !saveCorr);
429
430   TH2F* fhQTC = new TH2F("hQTC","QTC phys; #PMT; QTC [#channnels]",25, 0 ,25,Int_t( high[212]-low[212]),low[212],high[212]);
431   fhQTC->SetOption("COLZ");
432   Add2RawsList( fhQTC,212, expert, image, !saveCorr);
433
434    TH2F* fhCFDcal = new TH2F("hCFDcal","CFD laser; #PMT; CFD {#channnels}",25, 0 ,25,Int_t((high[210]-low[210])/4),low[210],high[210]);
435   fhCFDcal->SetOption("COLZ");
436   Add2RawsList( fhCFDcal,210+250, expert, image, !saveCorr);
437   
438   
439   TH2F* fhLEDcal = new TH2F("hLEDcal","LED laser; #PMT; LED [#channnels]",25, 0 ,25,Int_t((high[211]-low[211])/4),low[211],high[211]);
440   fhLEDcal->SetOption("COLZ");
441   Add2RawsList( fhLEDcal,211+250, expert, image, !saveCorr);
442   
443   TH2F* fhQTCcal = new TH2F("hQTCcal","QTC laser; #PMT; QTC [#channnels]",25, 0 ,25,Int_t( high[212]-low[212]),low[212],high[212]);
444   fhQTCcal->SetOption("COLZ");
445   Add2RawsList( fhQTCcal,212+250, expert, image, !saveCorr);
446   
447   
448   TH1F* fhNumPMTA= new TH1F("hNumPMTA","number of PMT hitted per event",13, 0 ,13);
449   Add2RawsList(fhNumPMTA ,213, expert, image, !saveCorr);
450   
451   TH1F* fhNumPMTC= new TH1F("hNumPMTC","number of PMT hitted per event",13, 0 ,13);
452   Add2RawsList(fhNumPMTC ,214, expert, image, !saveCorr);
453   
454   TH1F* fhHitsOrA= new TH1F("fhHitsOrA","T0_OR A hit multiplicitie",20, 0 ,20);
455   Add2RawsList( fhHitsOrA,215, expert, !image, !saveCorr);
456   
457   TH1F* fhHitsOrC= new TH1F("fhHitsOrC","T0_OR C hit multiplicitie",20, 0 ,20);
458   Add2RawsList(fhHitsOrC ,216, expert, !image, !saveCorr);
459   
460   
461   TH1F* fhOrCminOrA= new TH1F("fhOrCminOrA","T0_OR C - T0_OR A",10000,-5000,5000);
462   Add2RawsList( fhOrCminOrA,219, expert, !image, !saveCorr);
463   
464   TH1F* fhOrCminOrAcal= new TH1F("fhOrCminOrAcal","T0_OR C - T0_OR A",10000,-5000,5000);
465   Add2RawsList( fhOrCminOrAcal,219+250, expert, !image, !saveCorr);
466
467   TH1F* fhOrCminOrATvdcOn= new TH1F("fhOrCminOrATvdcOn","T0_OR C - T0_OR A TVDC on",10000,-5000,5000);
468   Add2RawsList( fhOrCminOrATvdcOn,217, expert, !image, !saveCorr);
469   
470   TH1F* fhOrCminOrATvdcOncal= new TH1F("fhOrCminOrATvdcOncal","T0_OR C - T0_OR A TVDC on laser",10000,-5000,5000);
471   Add2RawsList( fhOrCminOrATvdcOncal,217+250, expert, !image, !saveCorr);
472
473   TH1F* fhOrCminOrATvdcOff= new TH1F("fhOrCminOrATvdcOff","T0_OR C - T0_OR A TVDC off",10000,-5000,5000);
474   Add2RawsList( fhOrCminOrATvdcOff,218, expert, !image, !saveCorr);
475
476
477    TH1F* fhOrCminOrATvdcOffcal= new TH1F("fhOrCminOrATvdcOffcal","T0_OR C - T0_OR ATVDC off laser",10000,-5000,5000);
478    Add2RawsList( fhOrCminOrATvdcOffcal,218+250, expert, !image, !saveCorr);
479    
480    //satellite  & beam background
481    TH2F* fhBeam = new TH2F("fhBeam", " Mean vs Vertex; (T0A-T0C)/2 [ns]; (T0A+T0C)/2 [ns] ", 120, -30, 30, 120, -30, 30);
482    Add2RawsList( fhBeam,220, !expert, image, !saveCorr);
483    TH2F* fhBeamTVDCon = new TH2F("fhBeamTVDCon", " Mean vs Vertex TVDC on; (T0A-T0C)/2 [ns]; (T0A+T0C)/2 [ns]",50, -5, 5, 50, -5, 5) ;
484    Add2RawsList( fhBeamTVDCon,221, expert, image, !saveCorr);
485    TH2F* fhBeamTVDCoff = new TH2F("fhBeamTVDCoff", " Mean vs Vertex TVDC off; (T0A-T0C)/2 [ns]; (T0A+T0C)/2 [ns]", 120, -30, 30, 120, -30, 30);
486    Add2RawsList( fhBeamTVDCoff,222, expert, image, !saveCorr);
487    TH1F* fhMean = new TH1F("fhMean", " (T0A+T0C)/2; (T0A+T0C)/2 [ps] ", 200, -2000, 2000);
488    Add2RawsList( fhMean,223, !expert, image, !saveCorr);
489    //
490    ClonePerTrigClass(AliQAv1::kRAWS); // this should be the last line
491 }
492   
493 //____________________________________________________________________________ 
494 void AliT0QADataMakerRec::InitDigits()
495 {
496   // create Digits histograms in Digits subdir
497   const Bool_t expert   = kTRUE ; 
498   const Bool_t image    = kTRUE ; 
499   
500   TH2F * fhDigCFD = new TH2F("fhDigCFD", " CFD digits; #PMT; CFD digits[#channels]",25,-0.5,24.5,100,0,1000);
501   fhDigCFD->SetOption("COLZ");
502   Add2DigitsList( fhDigCFD,0, !expert, image);
503   TH2F *fhDigLEDamp = new TH2F("fhDigLEDamp", " LED-CFD digits; #PMT; LED-CFD amplitude ",25,-0.5,24.5,100,100,1000);
504   fhDigLEDamp->SetOption("COLZ");
505   Add2DigitsList( fhDigLEDamp,1, !expert, !image);
506   TH2F * fhDigQTC = new TH2F("fhDigQTC", " QTC digits; #PMT; QTC amplitude",25,-0.5,24.5,100,100,10000);
507   fhDigQTC->SetOption("COLZ");
508   Add2DigitsList( fhDigQTC,2, !expert, !image);
509   //
510   ClonePerTrigClass(AliQAv1::kDIGITS); // this should be the last line
511 }
512
513 //____________________________________________________________________________ 
514
515 void AliT0QADataMakerRec::InitRecPoints()
516 {
517   // create cluster histograms in RecPoint subdir
518   const Bool_t expert   = kTRUE ; 
519   const Bool_t image    = kTRUE ; 
520
521   TH2F* fhRecCFD = new TH2F("hRecCFD"," CFD time;#PMT; CFD Time [ns];",24, 0 ,24, 
522                               100,-50,50);
523   fhRecCFD->SetOption("COLZ");
524   Add2RecPointsList ( fhRecCFD,0, !expert, image);
525
526   TH2F* fhRecAmpDiff = new TH2F("hRecAmpDiff"," LED-CFD  min QTC amplitude;#PMT; difference [MIPs];",
527                                 24, 0 ,24, 200,-10,10);
528   fhRecAmpDiff->SetOption("COLZ");
529   Add2RecPointsList (fhRecAmpDiff, 1, !expert, image);
530   
531   TH1F *fhMean = new TH1F("hMean","online - rec mean;online - rec mean[#channels];",2000, -1000, 1000);
532   Add2RecPointsList ( fhMean,2, !expert, image);
533   //
534   ClonePerTrigClass(AliQAv1::kRECPOINTS); // this should be the last line
535 }
536
537 //____________________________________________________________________________
538 void AliT0QADataMakerRec::InitESDs()
539 {
540   //create ESDs histograms in ESDs subdir
541   const Bool_t expert   = kTRUE ; 
542   const Bool_t image    = kTRUE ; 
543   
544   TH1F *fhESDMean = new TH1F("hESDmean"," ESD mean; mean time[%channels]",1000, -5, 5);
545   Add2ESDsList(fhESDMean, 0, expert, !image) ;
546   TH1F * fhESDVertex = new TH1F("hESDvertex","ESDvertex; vertex[cm];",82,-30,30);
547   Add2ESDsList(fhESDVertex, 1, expert, !image) ;
548   
549   TH1F * fhESDResolution = new TH1F("hESDResolution","(T0A-T0C)/2 corrected by SPD vertex; ns",800,-2,2);
550   Add2ESDsList(fhESDResolution, 2, !expert, image) ;
551   //
552   ClonePerTrigClass(AliQAv1::kESDS); // this should be the last line
553 }
554
555 //____________________________________________________________________________
556 void AliT0QADataMakerRec::MakeRaws( AliRawReader* rawReader)
557 {
558   Int_t  time[24] ;
559   for(Int_t i=0; i<24; i++) time[i] = 0;          
560     
561   rawReader->Reset() ; 
562   //fills QA histos for RAW
563   Int_t shift=0;
564   // Int_t refPointParam = GetRecoParam()->GetRefPoint();
565   Int_t refpoint = 0;
566   Int_t refPointParam = 0;
567   Int_t means[24] = {0};
568   AliT0RawReader *start = new AliT0RawReader(rawReader);
569   
570   if (! start->Next())
571     AliDebug(AliQAv1::GetQADebugLevel(),Form(" no raw data found!!"));
572   else {  
573     UInt_t type =rawReader->GetType();
574     
575     // RS: Don't use custom counters, they create problems with trigger cloning
576     //     Use instead framework counters, incremented in the end of this routine
577     // RS: There is some inconsistency here: the separation of physics and calib. events/histos is done by
578     // fEventSpecie. Why do we book separate histos on different slots for calib and physics ? 
579     // I am changing this in such way that we don't need local counters like fNumTriggers (the corresponding
580     // histos now incremented in the MakeRaws, and for the normalization I will use the framework's counters
581     // AliQADataMaker::GetEvCountCycle(...), AliQADataMaker::GetEvCountTotal(...)
582     //
583     // I think the histos xx+250 should be suppressed (the xx calib histos of specie==calibration will be 
584     // used automatically)
585       
586     if (type == 8){ shift=250; /*fnEventCal++;*/} 
587     if (type == 7){ shift=0;   /*fnEventPhys++;*/}
588     
589     //    if (type == 7){ shift=1;   fnEventPhys++;}
590     Int_t allData[110][5];
591     for (Int_t i0=0; i0<110; i0++)
592       {
593         for (Int_t j0=0; j0<5; j0++) allData[i0][j0]=0;
594       }
595     for (Int_t i=0; i<107; i++) 
596       for (Int_t iHit=0; iHit<5; iHit++)
597         allData[i][iHit]= start->GetData(i,iHit);
598     
599     if ( allData[0][0] > 0  && (type == 7))
600       FillRawsData(0, allData[0][0]);
601     if ( allData[0][0] > 0  && (type == 8))
602       FillRawsData(250,  allData[0][0]);
603     
604     refpoint = allData[refPointParam][0];
605     if (refPointParam <  0 ) refpoint=0; 
606     if (refPointParam == 0 ) refpoint = allData[0][0] - 5000;
607     
608     Int_t sideshift, sideshiftqtc;
609     Int_t numPmtC=0;    
610     Int_t numPmtA=0;    
611     for (Int_t ik = 0; ik<24; ik++) {
612       if(ik<12) {
613         sideshift=1;
614         sideshiftqtc=1;
615         if(allData[ik+sideshift][0]>0 && type == 7  )  numPmtC++;
616       }
617       else {
618         if(allData[ik+45][0]>0 && type == 7 ) numPmtA++;
619         sideshift=45;
620         sideshiftqtc=33;        
621       }
622       Int_t nhitsPMT=0;
623       
624       for (Int_t iHt=0; iHt<5; iHt++) {
625         //cfd
626         if(allData[ik+sideshift][iHt]>0) {
627           FillRawsData(shift+ik+1, allData[ik+sideshift][iHt]);
628           FillRawsData(210+shift, ik+1, allData[ik+sideshift][iHt]);
629           if(type == 8 ) { // RS I think the type check should be removed
630             //feffC[ik]++;
631             FillRawsData(207+shift,ik,1.); // instead of incrementing former feff's, increment histo directly
632           }
633           AliDebug(50,Form("%i CFD %i  data %s",ik, ik+sideshift,  GetRawsData(shift+ik+1)->GetName()));
634           if(type == 7  ) { // RS I think the type check should be removed
635             nhitsPMT++;
636             // feffPhysC[ik]++;
637             FillRawsData(207 ,ik,1.); // instead of incrementing former feff's, increment histo directly
638           }
639           
640         }
641         //led
642         if(allData[ik+12+sideshift][iHt] > 0) { 
643           FillRawsData(shift+ik+24+1,allData[ik+12+sideshift][iHt]);
644           FillRawsData(211+shift,ik+1, allData[ik+12+sideshift][iHt]);
645           AliDebug(50,Form("%i LED %i  data %s",ik, ik+12+sideshift,  GetRawsData(shift+ik+1+24)->GetName()));
646           if(type == 8  ) {
647             FillRawsData(208+shift,ik,1.); // instead of incrementing former feff's, increment histo directly
648             // feffA[ik]++;
649           }
650         }
651         //led -cfd
652         
653         if(allData[ik+12+sideshift][iHt] > 0 && allData[ik+sideshift][iHt] >0 )
654           FillRawsData(shift+ik+48+1, allData[ik+12+sideshift][iHt]-allData[ik+sideshift][iHt]);
655         
656         //qtc
657         if(allData[2*ik+sideshiftqtc+24][iHt] > 0 &&
658            allData[2*ik+sideshiftqtc+25][iHt] > 0) {
659           FillRawsData(shift+ik+72+1, allData[2*ik+sideshiftqtc+24][iHt]-allData[2*ik+sideshiftqtc+25][iHt]);
660           FillRawsData(212+shift,ik+1, allData[2*ik+sideshiftqtc+24][iHt]-allData[2*ik+sideshiftqtc+25][iHt]);
661           if(type == 8) {
662             FillRawsData(209+shift,ik,1.); // instead of incrementing former feff's, increment histo directly
663             // feffqtc[ik]++;
664           }
665           AliDebug(50,Form("%i QTC %i  data %s",ik, 2*ik+sideshiftqtc+24,  GetRawsData(shift+ik+1+72)->GetName()));
666           
667         }
668         if(allData[2*ik+sideshiftqtc+24][iHt] > 0) {
669           AliDebug(50,Form("%i QT0 %i  data %s",ik, 2*ik+sideshiftqtc+24,  GetRawsData(shift+ik+1+96)->GetName()));
670           FillRawsData(shift+ik+96+1,allData[2*ik+sideshiftqtc+24][iHt]);
671         }
672         if(allData[2*ik+sideshiftqtc+25][iHt] > 0) {
673           AliDebug(50,Form("%i QT0 %i  data %s",ik, 2*ik+sideshiftqtc+25,  GetRawsData(shift+ik+1+120)->GetName()));
674           FillRawsData(shift+ik+120+1,allData[2*ik+sideshiftqtc+25][iHt]);
675         }
676       }
677       
678       if(type == 7  ) {
679         FillRawsData(ik+176,nhitsPMT);
680         FillRawsData(213,numPmtC);
681         FillRawsData(214,numPmtA);
682       }  
683     }   
684     
685     Int_t trChannel[6] = {49,50,51,52,55,56};  
686     Float_t ch2cm = 24.4*0.029979;     
687     Int_t nhitsOrA=0;
688     Int_t nhitsOrC=0;
689     for (Int_t iHt=0; iHt<5; iHt++) {
690       
691       //orA-orC phys tvdc 1 
692       if((allData[51][iHt]>0 && allData[52][iHt]>0) && allData[50][iHt]>0) {
693         AliDebug(10,Form("orA-orC phys tvdc 1  %i  data %s", 217+shift,  GetRawsData(shift+217)->GetName()));
694         
695         FillRawsData(217+shift,(allData[52][iHt]-allData[51][iHt])*ch2cm);
696         //            FillRawsData(345,(allData[51][iHt]+allData[52][iHt])/2.);
697       }
698       //orA-orC phys tvdc 0 
699       if((allData[51][iHt]>0 && allData[52][iHt]>0) && allData[50][iHt]<=0) {
700         AliDebug(10,Form("orA-orC phys tvdc 0  %i  data %s", 218+shift,  GetRawsData(shift+218)->GetName()));
701         
702         FillRawsData(218+shift,(allData[52][iHt]-allData[51][iHt])*ch2cm);
703       }
704       if(allData[51][iHt]>0 && allData[52][iHt]>0) {
705         AliDebug(50,Form("orA-orC phys tvdc all  %i  data %s", 219+shift,  GetRawsData(shift+219)->GetName()));
706         FillRawsData(219+shift,(allData[52][iHt]-allData[51][iHt])*ch2cm);
707       }
708       for (Int_t itr=0; itr<6; itr++) {
709         if (allData[trChannel[itr]][iHt] >0) {
710           //
711           // RS instead of incremented custom counters, fill directly the specie-specific histos
712           FillRawsData(169+shift, 0.5+itr, 1.);  // RS: increment counters
713           //         if(type == 7  )fNumTriggers[itr]++;
714           //         if(type == 8  )fNumTriggersCal[itr]++;
715           AliDebug(50,Form(" triggers %i  data %s", 170+itr+shift,  GetRawsData(170+itr+shift)->GetName()));
716           
717           FillRawsData(170+itr+shift,allData[trChannel[itr]][iHt]);
718         }
719       }
720       
721       if(type == 7) if(allData[51][iHt] >0) nhitsOrA++;
722       if(type == 7) if(allData[52][iHt] >0) nhitsOrC++;
723       
724       //mult trigger signals phys
725       //C side
726       if(allData[53][iHt]>0 && allData[54][iHt]>0) {
727         AliDebug(50,Form(" mpdA %i  data %s", 201+shift,  GetRawsData(201+shift)->GetName()));
728         
729         FillRawsData(201+shift,allData[53][iHt]-allData[54][iHt]);
730         if(allData[56][iHt]>0) FillRawsData(202+shift,allData[53][iHt]-allData[54][iHt]);
731         if(allData[55][iHt]>0) FillRawsData(203+shift,allData[53][iHt]-allData[54][iHt]);
732       }
733       
734       //A side 
735       if(allData[105][iHt]>0 && allData[106][iHt]>0) {
736         AliDebug(50,Form(" mpdC %i  data %s", 204+shift,  GetRawsData(204+shift)->GetName()));
737         
738         FillRawsData(204+shift,allData[105][iHt]-allData[106][iHt]);
739         if(allData[56][iHt]>0) FillRawsData(205+shift,allData[105][iHt]-allData[106][iHt]);
740         if(allData[55][iHt]>0) FillRawsData(206+shift,allData[105][iHt]-allData[106][iHt]);
741       }
742     }
743     
744     FillRawsData(215,nhitsOrA);
745     FillRawsData(216,nhitsOrC);
746     
747     //draw satellite
748     for (int itr=-1;itr<GetNEventTrigClasses();itr++) { //RS loop over all active trigger classes, including the global one
749       int itrID = itr==-1 ? -1 : GetEventTrigClass(itr)->GetUniqueID();
750       int nEvent = GetEvCountCycleRaws(itrID);
751       // 
752       if(type == 7) {    // RS Do we need here event type check, specie should do the job
753         if(nEvent == 1000) {
754           for (Int_t ik=0; ik<24; ik++) {
755             //
756             TH1* hik = (TH1*) GetRawsData(ik+1,itrID); if (!hik) continue; 
757             hik->GetXaxis()->SetRangeUser(2000, 3000);
758             int  maxBin  =  hik->GetMaximumBin(); 
759             double   meanEstimate  =  hik->GetBinCenter( maxBin);
760             TF1* fit= new TF1("fit","gaus", meanEstimate - 40, meanEstimate + 40);
761             fit->SetParameters (hik->GetBinContent(maxBin), meanEstimate, 80);
762             hik->Fit("fit","RQ","Q",  meanEstimate-40,  meanEstimate+40);
763             means[ik]= (Int_t) fit->GetParameter(1);
764             hik->GetXaxis()->SetRangeUser(0, 30000);
765           }
766         }
767         //
768         TH2 *h220 = (TH2*)GetRawsData(220,itrID);
769         TH2 *h221 = (TH2*)GetRawsData(221,itrID);
770         TH2 *h222 = (TH2*)GetRawsData(222,itrID);
771         TH1 *h223 = (TH1*)GetRawsData(223,itrID);
772         if( nEvent>1000 && (h220 || h221 || h222 || h223) ) {
773           Int_t besttimeA=9999999;
774           Int_t besttimeC=9999999;
775           for (Int_t ipmt=0; ipmt<12; ipmt++){
776             if(allData[ipmt+1][0] > 1 ) {
777               //              time[ipmt] = allData[ipmt+1][0] - Int_t(GetRawsData(1)->GetMean());
778               time[ipmt] = allData[ipmt+1][0] - means[ipmt];
779               if(TMath::Abs(time[ipmt]) < TMath::Abs(besttimeC))
780                 besttimeC=time[ipmt]; //timeC
781             }
782           }
783           for ( Int_t ipmt=12; ipmt<24; ipmt++){
784             if(allData[ipmt+45][0] > 0) {
785               time[ipmt] = allData[ipmt+45][0] - means[ipmt] ;
786               if(TMath::Abs(time[ipmt]) < TMath::Abs(besttimeA) )
787                 besttimeA=time[ipmt]; //timeA
788             }
789           }
790           if(besttimeA<99999 &&besttimeC< 99999) {
791             Float_t t0 =  24.4 * (Float_t( besttimeA+besttimeC)/2. );
792             Float_t ver = 24.4 * Float_t( besttimeA-besttimeC)/2.;
793             if (h220) h220->Fill(0.001*ver, 0.001*(t0));
794             if(allData[50][0] > 0)  if (h221) h221->Fill(0.001*ver, 0.001*(t0));
795             if(allData[50][0] <= 0) if (h222) h222->Fill(0.001*ver, 0.001*(t0));
796             if (h223) h223->Fill(t0);
797           }       
798         } //event >100
799       } //type 7
800     } // RS loop over all active trigger classes, including the global one
801   } //next
802   delete start;
803   //
804   IncEvCountCycleRaws();
805   IncEvCountTotalRaws();
806   //
807 }
808
809 //____________________________________________________________________________
810 void AliT0QADataMakerRec::MakeDigits( TTree *digitsTree)
811 {
812   //fills QA histos for Digits
813
814   TArrayI *digCFD = new TArrayI(24);
815   TArrayI *digLED = new TArrayI(24);
816   TArrayI *digQT0 = new TArrayI(24);
817   TArrayI *digQT1 = new TArrayI(24);
818   Int_t refpoint=0;
819   
820   TBranch *brDigits=digitsTree->GetBranch("T0");
821   AliT0digit *fDigits = new AliT0digit() ;
822   if (brDigits) {
823     brDigits->SetAddress(&fDigits);
824   }else{
825     AliError(Form("EXEC Branch T0 digits not found"));
826     delete digCFD;
827     delete digLED;
828     delete digQT0;
829     delete digQT1;
830     return;
831   }
832   digitsTree->GetEvent(0);
833   digitsTree->GetEntry(0);
834   brDigits->GetEntry(0);
835   fDigits->GetTimeCFD(*digCFD);
836   fDigits->GetTimeLED(*digLED);
837   fDigits->GetQT0(*digQT0);
838   fDigits->GetQT1(*digQT1);
839   refpoint = fDigits->RefPoint();
840   for (Int_t i=0; i<24; i++) {
841     if (digCFD->At(i)>0) {
842       Int_t cfd=digCFD->At(i)- refpoint;
843       FillDigitsData(0,i,cfd);
844       FillDigitsData(1,i, (digLED->At(i) - digCFD->At(i)));
845       FillDigitsData(2,i, (digQT1->At(i) - digQT0->At(i)));
846     }
847   }  
848   
849   delete digCFD;
850   delete digLED;
851   delete digQT0;
852   delete digQT1;
853   //
854   IncEvCountCycleDigits();
855   IncEvCountTotalDigits();
856   //  
857 }
858
859 //____________________________________________________________________________
860 void AliT0QADataMakerRec::MakeRecPoints(TTree * clustersTree)
861 {
862   //fills QA histos for clusters
863
864   AliT0RecPoint* frecpoints= new AliT0RecPoint ();
865   if (!frecpoints) {
866     AliError(":MakeRecPoints >> no recpoints found");
867     return;
868   }
869   TBranch *brRec =clustersTree ->GetBranch("T0");
870   if (brRec) {
871     brRec->SetAddress(&frecpoints);
872   }else{
873     AliError(Form("EXEC Branch T0 rec not found "));
874     return;
875   } 
876
877   brRec->GetEntry(0);
878   
879   for ( Int_t i=0; i<24; i++) {
880     if(i<12)
881       FillRecPointsData(0, i, frecpoints -> GetTime(i) - frecpoints -> GetTime(0)); 
882     if(i>11)
883       FillRecPointsData(0, i,  frecpoints -> GetTime(i) - frecpoints -> GetTime(12)); 
884     FillRecPointsData(1, i, frecpoints -> GetAmp(i) - frecpoints->AmpLED(i));
885   }
886   Double_t mmm=frecpoints->GetOnlineMean()- frecpoints->GetMeanTime();
887   FillRecPointsData(2,mmm);
888   //
889   IncEvCountCycleRecPoints();
890   IncEvCountTotalRecPoints();
891   //  
892 }
893
894 //____________________________________________________________________________
895 void AliT0QADataMakerRec::MakeESDs(AliESDEvent * esd)
896 {
897   //fills QA histos for ESD
898   
899   const Double32_t  *mean;
900   mean = esd->GetT0TOF();
901   Double32_t t0time= 0.001*mean[0];
902   Double32_t orA= 0.001*mean[1];
903   Double32_t orC=0.001* mean[2];
904
905   if (t0time<99)   FillESDsData(0,t0time);
906   if( esd->GetT0zVertex() <99) FillESDsData(1, esd->GetT0zVertex());
907   if( orA<99 && orC<99) FillESDsData(2,(orA-orC)/2.);
908   //
909   IncEvCountCycleESDs();
910   IncEvCountTotalESDs();
911   //
912 }
913 //____________________________________________________________________________
914
915 /*
916 void AliT0QADataMakerRec::GetMeanAndSigma(TH1F* hist, Float_t &mean, Float_t &sigma) 
917 {
918
919   const double window = 3.;  //fit window 
920  
921   double meanEstimate, sigmaEstimate; 
922   int maxBin;
923   maxBin        =  hist->GetMaximumBin(); //position of maximum
924   meanEstimate  =  hist->GetBinCenter( maxBin); // mean of gaussian sitting in maximum
925   sigmaEstimate = hist->GetRMS();
926   TF1* fit= new TF1("fit","gaus", meanEstimate - window*sigmaEstimate, meanEstimate + window*sigmaEstimate);
927   fit->SetParameters(hist->GetBinContent(maxBin), meanEstimate, sigmaEstimate);
928   hist->Fit("fit","RQ","Q");
929
930   mean  = (Float_t) fit->GetParameter(1);
931   sigma = (Float_t) fit->GetParameter(2);
932
933   delete fit;
934 }
935 */