]> git.uio.no Git - u/mrichter/AliRoot.git/blob - AD/AliADQADataMakerRec.cxx
Change Norm interval
[u/mrichter/AliRoot.git] / AD / AliADQADataMakerRec.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 //  Produces the data needed to calculate the quality assurance 
18 //  All data must be mergeable objects
19 //  Handles ESDs and Raws
20 //  Histos defined will be used for Raw Data control and monitoring
21
22 // --- ROOT system ---
23 #include <TClonesArray.h>
24 #include <TFile.h> 
25 #include <TF1.h> 
26 #include <TH1F.h> 
27 #include <TH1I.h> 
28 #include <TH2I.h> 
29 #include <TH2F.h> 
30 #include <TGraph.h> 
31 #include <TParameter.h>
32 #include <TTimeStamp.h>
33
34 // --- Standard library ---
35
36 // --- AliRoot header files ---
37 #include "AliESDEvent.h"
38 #include "AliLog.h"
39 #include "AliCDBManager.h"
40 #include "AliCDBStorage.h"
41 #include "AliCDBEntry.h"
42 #include "AliADQADataMakerRec.h"
43 #include "AliQAChecker.h"
44 #include "AliRawReader.h"
45 #include "AliADRawStream.h"
46 #include "AliADdigit.h"
47 #include "AliADConst.h"
48 #include "AliADReconstructor.h"
49 //#include "AliADTrending.h"
50 #include "AliADCalibData.h"
51 #include "AliCTPTimeParams.h"
52 #include "event.h"
53
54 ClassImp(AliADQADataMakerRec)
55            
56 //____________________________________________________________________________ 
57 AliADQADataMakerRec::AliADQADataMakerRec() : 
58 AliQADataMakerRec(AliQAv1::GetDetName(AliQAv1::kAD), "AD Quality Assurance Data Maker"),
59   fCalibData(0x0),
60   fTrendingUpdateTime(0), 
61   fCycleStartTime(0), 
62   fCycleStopTime(0),
63   fTimeSlewing(0)
64     
65 {
66   // Constructor
67    
68   AliDebug(AliQAv1::GetQADebugLevel(), "Construct AD QA Object");
69
70   for(Int_t i=0; i<16; i++){  
71     fEven[i] = 0;   
72     fOdd[i]  = 0;
73   }
74   
75   for(Int_t i=0; i<32; i++){  
76     fADCmean[i] = 0.0;   }      
77 }
78
79 //____________________________________________________________________________ 
80 AliADQADataMakerRec::AliADQADataMakerRec(const AliADQADataMakerRec& qadm) :
81   AliQADataMakerRec(),
82   fCalibData(0x0),
83   fTrendingUpdateTime(0), 
84   fCycleStartTime(0), 
85   fCycleStopTime(0),
86   fTimeSlewing(0)
87   
88 {
89   // Copy constructor 
90   
91   SetName((const char*)qadm.GetName()) ; 
92   SetTitle((const char*)qadm.GetTitle()); 
93 }
94
95 //__________________________________________________________________
96 AliADQADataMakerRec& AliADQADataMakerRec::operator = (const AliADQADataMakerRec& qadm )
97 {
98   // Equal operator
99   
100   this->~AliADQADataMakerRec();
101   new(this) AliADQADataMakerRec(qadm);
102   return *this;
103 }
104
105 //____________________________________________________________________________
106 AliADCalibData* AliADQADataMakerRec::GetCalibData() const
107
108 {
109   AliCDBManager *man = AliCDBManager::Instance();
110
111   AliCDBEntry *entry=0;
112
113   entry = man->Get("AD/Calib/Data",fRun);
114   if(!entry){
115     AliWarning("Load of calibration data from default storage failed!");
116     AliWarning("Calibration data will be loaded from local storage ($ALICE_ROOT)");
117         
118     man->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
119     entry = man->Get("AD/Calib/Data",fRun);
120   }
121   // Retrieval of data in directory AD/Calib/Data:
122
123   AliADCalibData *calibdata = 0;
124
125   if (entry) calibdata = (AliADCalibData*) entry->GetObject();
126   if (!calibdata)  AliFatal("No calibration data from calibration database !");
127
128   return calibdata;
129 }
130 //____________________________________________________________________________ 
131 void AliADQADataMakerRec::StartOfDetectorCycle()
132 {
133   // Detector specific actions at start of cycle
134   
135   // Reset of the histogram used - to have the trend versus time -
136  
137   fCalibData = GetCalibData();
138  
139   AliCDBEntry *entry = AliCDBManager::Instance()->Get("GRP/CTP/CTPtiming");
140   if (!entry) AliFatal("CTP timing parameters are not found in OCDB !");
141   AliCTPTimeParams *ctpParams = (AliCTPTimeParams*)entry->GetObject();
142   Float_t l1Delay = (Float_t)ctpParams->GetDelayL1L0()*25.0;
143
144   AliCDBEntry *entry1 = AliCDBManager::Instance()->Get("GRP/CTP/TimeAlign");
145   if (!entry1) AliFatal("CTP time-alignment is not found in OCDB !");
146   AliCTPTimeParams *ctpTimeAlign = (AliCTPTimeParams*)entry1->GetObject();
147   l1Delay += ((Float_t)ctpTimeAlign->GetDelayL1L0()*25.0);
148   /*/
149   AliCDBEntry *entry2 = AliCDBManager::Instance()->Get("AD/Calib/TimeDelays");
150   if (!entry2) AliFatal("AD time delays are not found in OCDB !");
151   TH1F *delays = (TH1F*)entry2->GetObject();
152
153   AliCDBEntry *entry3 = AliCDBManager::Instance()->Get("AD/Calib/TimeSlewing");
154   if (!entry3) AliFatal("AD time slewing function is not found in OCDB !");
155   fTimeSlewing = (TF1*)entry3->GetObject();
156   /*/
157
158   for(Int_t i = 0 ; i < 16; ++i) {
159     //Int_t board = AliADCalibData::GetBoardNumber(i);
160     fTimeOffset[i] = (
161                       //        ((Float_t)fCalibData->GetTriggerCountOffset(board) -
162                       //        (Float_t)fCalibData->GetRollOver(board))*25.0 +
163                       //     fCalibData->GetTimeOffset(i) -
164                       //     l1Delay+
165                       //delays->GetBinContent(i+1)//+
166                       //      kV0Offset
167                       0
168                       );
169     //                AliInfo(Form(" fTimeOffset[%d] = %f  kV0offset %f",i,fTimeOffset[i],kV0Offset));
170   }
171
172  
173  
174   
175         
176   TTimeStamp currentTime;
177   fCycleStartTime = currentTime.GetSec();
178  
179   //  fNTotEvents = 0;
180 }
181 //____________________________________________________________________________ 
182 void AliADQADataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray ** list)
183 {
184   // Detector specific actions at end of cycle
185   // Does the QA checking
186   ResetEventTrigClasses();
187   //
188   AliQAChecker::Instance()->Run(AliQAv1::kAD, task, list) ;
189   
190   if(task == AliQAv1::kRAWS){
191     TTimeStamp currentTime;
192     fCycleStopTime = currentTime.GetSec();
193   }
194
195   for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
196     if (! IsValidEventSpecie(specie, list)) continue ;
197     SetEventSpecie(AliRecoParam::ConvertIndex(specie));
198     if(task == AliQAv1::kRAWS) {
199     } else if (task == AliQAv1::kESDS) {
200     }
201   }
202 }
203
204 //____________________________________________________________________________ 
205 void AliADQADataMakerRec::InitESDs()
206 {
207   // Creates histograms to control ESDs
208 }
209
210 //____________________________________________________________________________ 
211 void AliADQADataMakerRec::InitDigits()
212 {
213
214 }
215
216 //____________________________________________________________________________
217 void AliADQADataMakerRec::MakeDigits()
218 {
219
220 }
221
222 //____________________________________________________________________________
223 void AliADQADataMakerRec::MakeDigits(TTree *digitTree)
224 {
225
226 }
227
228
229 //____________________________________________________________________________
230 void AliADQADataMakerRec::MakeESDs(AliESDEvent * esd)
231 {
232  
233 }
234
235 //____________________________________________________________________________ 
236 void AliADQADataMakerRec::InitRaws()
237 {
238   // Creates RAW histograms in Raws subdir
239
240   const Bool_t expert   = kTRUE ; 
241   const Bool_t saveCorr = kTRUE ; 
242   const Bool_t image    = kTRUE ; 
243
244   const Int_t kNintegrator  =    2;
245  
246   const Int_t kNTdcTimeBins  = 1280;
247   const Float_t kTdcTimeMin    =    0.;
248   const Float_t kTdcTimeMax    = 75.;
249     const Int_t kNTdcWidthBins =  256;
250   const Float_t kTdcWidthMin   =    0;
251   const Float_t kTdcWidthMax   =  200.;
252   const Int_t kNChargeBins   = 1024;
253   const Float_t kChargeMin     =    0;
254   const Float_t kChargeMax     = 1024;
255   const Int_t kNChannelBins  =   16;
256   const Float_t kChannelMin    =    0;
257   const Float_t kChannelMax    =   16;
258   const Int_t kNPedestalBins =  200;
259   const Float_t kPedestalMin   =    0;
260   const Float_t kPedestalMax   =  200; 
261   const Int_t kNPairBins  =   8;
262   const Float_t kPairMin    =    0;
263   const Float_t kPairMax    =   8;
264
265   TH2I * h2i;
266   TH2F * h2d;
267   TH1I * h1i;
268   TH1F * h1d;
269
270   int iHisto =0;
271
272   // Creation of Cell Multiplicity Histograms
273   h1i = new TH1I("H1I_Multiplicity_ADA", "Number of fired cells in ADA;# of Cells;Entries", 10, 0, 10) ;  
274   Add2RawsList(h1i,kMultiADA, !expert, image, saveCorr);   iHisto++;
275   h1i = new TH1I("H1I_Multiplicity_ADC", "Number of fired cells in ADC;# of Cells;Entries", 10, 0, 10) ;  
276   Add2RawsList(h1i,kMultiADC, !expert, image, saveCorr);   iHisto++;
277  
278   // Creation of Total Charge Histograms
279   h1d = new TH1F("H1D_Charge_ADA", "Total Charge in ADA;Charge [ADC counts];Counts", 4000, 0, 30000) ;  
280   Add2RawsList(h1d,kChargeADA, !expert, image, saveCorr);   iHisto++;
281   h1d = new TH1F("H1D_Charge_ADC", "Total Charge in ADC;Charge [ADC counts];Counts", 4000, 0, 50000) ;  
282   Add2RawsList(h1d,kChargeADC, !expert, image, saveCorr);   iHisto++;
283   h1d = new TH1F("H1D_Charge_AD", "Total Charge in AD;Charge [ADC counts];Counts", 4000, 0, 80000) ;  
284   Add2RawsList(h1d,kChargeAD, !expert,  image, saveCorr);   iHisto++;
285    
286
287   // Creation of Charge EoI histogram 
288   h2d = new TH2F("H2D_ChargeEoI", "Charge Event of Interest;Channel Number;Charge [ADC counts]"
289                  ,kNChannelBins, kChannelMin, kChannelMax, kNChargeBins, kChargeMin, 2.*kChargeMax);
290   Add2RawsList(h2d,kChargeEoI, !expert, image, saveCorr); iHisto++;
291
292   for(Int_t iInt=0;iInt<kNintegrator;iInt++){
293     // Creation of Pedestal histograms 
294     h2i = new TH2I(Form("H2I_Pedestal_Int%d",iInt), Form("Pedestal (Int%d);Channel;Pedestal [ADC counts]",iInt)
295                    ,kNChannelBins, kChannelMin, kChannelMax,kNPedestalBins,kPedestalMin ,kPedestalMax );
296     Add2RawsList(h2i,(iInt == 0 ? kPedestalInt0 : kPedestalInt1), !expert, image, saveCorr); iHisto++;
297         
298
299     // Creation of Charge EoI histograms 
300     h2i = new TH2I(Form("H2I_ChargeEoI_Int%d",iInt), Form("Charge EoI (Int%d);Channel;Charge [ADC counts]",iInt)
301                    ,kNChannelBins, kChannelMin, kChannelMax, kNChargeBins, kChargeMin, kChargeMax);
302     Add2RawsList(h2i,(iInt == 0 ? kChargeEoIInt0 : kChargeEoIInt1), !expert, image, saveCorr); iHisto++;
303     
304   }     
305   
306   // Creation of Time histograms 
307   h2i = new TH2I("H2I_Width", "HPTDC Width;Channel;Width [ns]",kNChannelBins, kChannelMin, kChannelMax, kNTdcWidthBins, kTdcWidthMin, kTdcWidthMax);
308   Add2RawsList(h2i,kWidth, !expert, image, saveCorr); iHisto++;
309
310   h2i = new TH2I("H2I_HPTDCTime", "HPTDC Time;Channel;Leading Time [ns]",kNChannelBins, kChannelMin, kChannelMax, kNTdcTimeBins, kTdcTimeMin, kTdcTimeMax);
311   Add2RawsList(h2i,kHPTDCTime, !expert, image, saveCorr); iHisto++;
312         
313   h1d = new TH1F("H1D_ADA_Time", "ADA Time;Time [ns];Counts",kNTdcTimeBins, kTdcTimeMin, kTdcTimeMax);
314   Add2RawsList(h1d,kADATime, !expert, image, saveCorr); iHisto++;
315         
316   h1d = new TH1F("H1D_ADC_Time", "ADC Time;Time [ns];Counts",kNTdcTimeBins, kTdcTimeMin, kTdcTimeMax);
317   Add2RawsList(h1d,kADCTime, !expert, image, saveCorr); iHisto++;
318         
319   h1d = new TH1F("H1D_Diff_Time","Diff ADA-ADC Time;Time [ns];Counts",kNTdcTimeBins, -50., 50.);
320   Add2RawsList(h1d,kDiffTime, !expert, image, saveCorr); iHisto++;
321
322   h2d = new TH2F("H2D_TimeADA_ADC", "Mean Time in ADC versus ADA;Time ADA [ns];Time ADC [ns]", kNTdcTimeBins/8, kTdcTimeMin,kTdcTimeMax,kNTdcTimeBins/8, kTdcTimeMin,kTdcTimeMax) ;  
323   Add2RawsList(h2d,kTimeADAADC, !expert, image, saveCorr);   iHisto++;
324   
325   //Creation of pair coincidence histograms
326   h1i = new TH1I("H1I_MultiCoincidence_ADA", "Number of coincidences in ADA;# of Cells;Entries", 5, 0, 5) ;  
327   Add2RawsList(h1i,kNCoincADA, !expert, image, saveCorr);   iHisto++;
328   h1i = new TH1I("H1I_MultiCoincidence_ADC", "Number of coincidences in ADC;# of Cells;Entries", 5, 0, 5) ;  
329   Add2RawsList(h1i,kNCoincADC, !expert, image, saveCorr);   iHisto++;
330   
331   h2d = new TH2F("H2D_Pair_Diff_Time","Diff Pair Time;Time [ns];Counts",kNPairBins, kPairMin, kPairMax,kNTdcTimeBins, -50., 50.);
332   Add2RawsList(h2d,kPairDiffTime, !expert, image, saveCorr); iHisto++;
333
334   
335   AliDebug(AliQAv1::GetQADebugLevel(), Form("%d Histograms has been added to the Raws List",iHisto));
336   //
337   ClonePerTrigClass(AliQAv1::kRAWS); // this should be the last line
338 }
339
340 //____________________________________________________________________________
341 void AliADQADataMakerRec::MakeRaws(AliRawReader* rawReader)
342 {
343   // Fills histograms with Raws, computes average ADC values dynamically (pedestal subtracted)
344                   
345                                           
346   // Check id histograms already created for this Event Specie
347   if ( ! GetRawsData(kPedestalInt0) )
348     InitRaws() ;
349
350   rawReader->Reset() ; 
351   AliADRawStream* rawStream  = new AliADRawStream(rawReader); 
352   if(!(rawStream->Next())) return;  
353  
354   eventTypeType eventType = rawReader->GetType();
355
356   Int_t    mulADA = 0 ; 
357   Int_t    mulADC = 0 ; 
358   Double_t timeADA =0., timeADC = 0.;
359   Double_t weightADA =0., weightADC = 0.;
360   UInt_t   itimeADA=0, itimeADC=0;
361   Double_t chargeADA=0., chargeADC=0.;
362
363   Double_t diffTime=-100000.;
364   
365   Int_t    pmulADA = 0;
366   Int_t    pmulADC = 0;
367   Double_t pDiffTime =-100000.;
368
369   
370   switch (eventType){
371   case PHYSICS_EVENT:
372   
373     //    fNTotEvents++; // Use framework counters instead
374
375     Int_t  iFlag=0;
376     Int_t  pedestal;
377     Int_t  integrator[16];
378     Bool_t flagBB[16];   
379     Bool_t flagBG[16];   
380     Float_t charge;
381     Int_t  offlineCh;
382     Float_t adc[16], time[16], width[16], timeCorr[16]; 
383     Int_t  iPair=0;
384
385     for(Int_t iChannel=0; iChannel<16; iChannel++) { // BEGIN : Loop over channels
386                    
387       offlineCh = rawStream->GetOfflineChannel(iChannel);
388                    
389       // Fill Pedestal histograms
390            
391       for(Int_t j=15; j<21; j++) {
392         if((rawStream->GetBGFlag(iChannel,j) || rawStream->GetBBFlag(iChannel,j))) iFlag++;
393       }
394
395       if(iFlag == 0){ //No Flag found
396         for(Int_t j=15; j<21; j++){
397           pedestal= (Int_t) rawStream->GetPedestal(iChannel, j);
398           integrator[offlineCh] = rawStream->GetIntegratorFlag(iChannel, j);
399
400           FillRawsData((integrator[offlineCh] == 0 ? kPedestalInt0 : kPedestalInt1),offlineCh,pedestal);
401         }
402       }
403
404       // Fill Charge EoI histograms
405            
406       adc[offlineCh]    = 0.0;
407
408       // Search for the maximum charge in the train of 21 LHC clocks 
409       // regardless of the integrator which has been operated:
410       Float_t maxadc = 0;
411       Int_t imax = -1;
412       Float_t adcPedSub[21];
413       for(Int_t iClock=0; iClock<21; iClock++){
414         Bool_t iIntegrator = rawStream->GetIntegratorFlag(iChannel,iClock);
415         Int_t k = offlineCh+16*iIntegrator;
416
417         //printf(Form("clock = %d adc = %f ped %f\n",iClock,rawStream->GetPedestal(iChannel,iClock),fPedestal[k]));
418
419         adcPedSub[iClock] = rawStream->GetPedestal(iChannel,iClock) - fCalibData->GetPedestal(k);
420         //                              if(adcPedSub[iClock] <= GetRecoParam()->GetNSigmaPed()*fCalibData->GetSigma(k)) {
421         if(adcPedSub[iClock] <= 2.*fCalibData->GetSigma(k)) {
422           adcPedSub[iClock] = 0;
423           continue;
424         }
425         //                              if(iClock < GetRecoParam()->GetStartClock() || iClock > GetRecoParam()->GetEndClock()) continue;
426         if(iClock < 8 || iClock > 12) continue;
427         if(adcPedSub[iClock] > maxadc) {
428           maxadc = adcPedSub[iClock];
429           imax   = iClock;
430         }
431       }
432       //printf(Form("Channel %d (online), %d (offline)\n",iChannel,j)); 
433       if (imax != -1) {
434         //                              Int_t start = imax - GetRecoParam()->GetNPreClocks();
435         Int_t start = imax - 2;
436         if (start < 0) start = 0;
437         //                              Int_t end = imax + GetRecoParam()->GetNPostClocks();
438         Int_t end = imax + 1;
439         if (end > 20) end = 20;
440         for(Int_t iClock = start; iClock <= end; iClock++) {
441           adc[offlineCh] += adcPedSub[iClock];
442         }
443       }
444         
445                 
446       Int_t iClock  = imax;
447       charge = rawStream->GetPedestal(iChannel,iClock); // Charge at the maximum 
448
449       integrator[offlineCh]    = rawStream->GetIntegratorFlag(iChannel,iClock);
450       flagBB[offlineCh]  = rawStream->GetBBFlag(iChannel, iClock);
451       flagBG[offlineCh]  = rawStream->GetBGFlag(iChannel,iClock );
452       Int_t board = AliADCalibData::GetBoardNumber(offlineCh);
453       time[offlineCh] = rawStream->GetTime(iChannel)*fCalibData->GetTimeResolution(board);
454       width[offlineCh] = rawStream->GetWidth(iChannel)*fCalibData->GetWidthResolution(board);
455
456       if (time[offlineCh] >= 1e-6) FillRawsData(kChargeEoI,offlineCh,adc[offlineCh]);
457
458       FillRawsData((integrator[offlineCh] == 0 ? kChargeEoIInt0 : kChargeEoIInt1),offlineCh,charge);
459
460       Float_t sigma = fCalibData->GetSigma(offlineCh+16*integrator[offlineCh]);
461                   
462       if((adc[offlineCh] > 2.*sigma) && !(time[offlineCh] <1.e-6)){ 
463         if(offlineCh<8) {
464           mulADC++;
465           chargeADC += adc[offlineCh];
466           
467         } else {
468           mulADA++;
469           chargeADA += adc[offlineCh];
470         }
471       }
472                    
473   
474       // Fill HPTDC Time Histograms
475       timeCorr[offlineCh] = CorrectLeadingTime(offlineCh,time[offlineCh],adc[offlineCh]);
476
477       const Float_t p1 = 2.50; // photostatistics term in the time resolution
478       const Float_t p2 = 3.00; // sleewing related term in the time resolution
479       if(timeCorr[offlineCh]>-1024 + 1.e-6){
480         Float_t nphe = adc[offlineCh]*kChargePerADC/(fCalibData->GetGain(offlineCh)*TMath::Qe());
481         Float_t timeErr = 1;
482         /*/
483         if (nphe>1.e-6) timeErr = TMath::Sqrt(kIntTimeRes*kIntTimeRes+
484                                               p1*p1/nphe+
485                                               p2*p2*(fTimeSlewing->GetParameter(0)*fTimeSlewing->GetParameter(1))*(fTimeSlewing->GetParameter(0)*fTimeSlewing->GetParameter(1))*
486                                               TMath::Power(adc[offlineCh]/fCalibData->GetCalibDiscriThr(offlineCh,kTRUE),2.*(fTimeSlewing->GetParameter(1)-1.))/
487                                               (fCalibData->GetCalibDiscriThr(offlineCh,kTRUE)*fCalibData->GetCalibDiscriThr(offlineCh,kTRUE)));/*/
488
489         if (timeErr>1.e-6) {
490           if (offlineCh<8) {
491             itimeADC++;
492             timeADC += timeCorr[offlineCh]/(timeErr*timeErr);
493             weightADC += 1./(timeErr*timeErr);
494           }else{
495             itimeADA++;
496             timeADA += timeCorr[offlineCh]/(timeErr*timeErr);
497             weightADA += 1./(timeErr*timeErr);
498           }
499         }
500       }
501       FillRawsData(kHPTDCTime,offlineCh,timeCorr[offlineCh]);
502       FillRawsData(kWidth,offlineCh,width[offlineCh]);
503
504     }// END of Loop over channels
505     
506     for(Int_t iChannel=0; iChannel<4; iChannel++) {//Loop over pairs ADC
507         offlineCh = rawStream->GetOfflineChannel(iChannel);
508         Float_t sigma = fCalibData->GetSigma(offlineCh+16*integrator[offlineCh]);
509         Float_t sigma4 = fCalibData->GetSigma(offlineCh+4+16*integrator[offlineCh]);            
510         if( ((adc[offlineCh] > 2.*sigma) && !(time[offlineCh] <1.e-6)) && ((adc[offlineCh+4] > 2.*sigma4) && !(time[offlineCh+4] <1.e-6)) ){ 
511                 pmulADC++;
512                 if(timeCorr[offlineCh]<-1024.+1.e-6 || timeCorr[offlineCh+4]<-1024.+1.e-6) pDiffTime = -1024.;
513                 else pDiffTime = timeCorr[offlineCh+4] - timeCorr[offlineCh]; 
514                 FillRawsData(kPairDiffTime,iPair,pDiffTime);
515                 iPair++;
516                 }
517         }
518     for(Int_t iChannel=8; iChannel<12; iChannel++) {//Loop over pairs ADA
519         offlineCh = rawStream->GetOfflineChannel(iChannel);
520         Float_t sigma = fCalibData->GetSigma(offlineCh+16*integrator[offlineCh]);
521         Float_t sigma4 = fCalibData->GetSigma(offlineCh+4+16*integrator[offlineCh]);
522         if( ((adc[offlineCh] > 2.*sigma) && !(time[offlineCh] <1.e-6)) && ((adc[offlineCh+4] > 2.*sigma4) && !(time[offlineCh+4] <1.e-6)) ) pmulADA++;
523         if(timeCorr[offlineCh]<-1024.+1.e-6 || timeCorr[offlineCh+4]<-1024.+1.e-6) pDiffTime = -1024.;
524                 else pDiffTime = timeCorr[offlineCh+4] - timeCorr[offlineCh]; 
525                 FillRawsData(kPairDiffTime,iPair,pDiffTime);
526                 iPair++;
527         }
528     FillRawsData(kNCoincADA,pmulADA);
529     FillRawsData(kNCoincADC,pmulADC);
530         
531         
532     if(weightADA>1.e-6) timeADA /= weightADA; 
533     else timeADA = -1024.;
534     if(weightADC>1.e-6) timeADC /= weightADC;
535     else timeADC = -1024.;
536     if(timeADA<-1024.+1.e-6 || timeADC<-1024.+1.e-6) diffTime = -1024.;
537     else diffTime = timeADA - timeADC;
538     
539
540                 
541     FillRawsData(kADATime,timeADA);
542     FillRawsData(kADCTime,timeADC);
543     FillRawsData(kDiffTime,diffTime);
544     FillRawsData(kTimeADAADC,timeADA,timeADC);
545
546     FillRawsData(kMultiADA,mulADA);
547     FillRawsData(kMultiADC,mulADC);
548
549     FillRawsData(kChargeADA,chargeADA);
550     FillRawsData(kChargeADC,chargeADC);
551     FillRawsData(kChargeAD,chargeADA + chargeADC);
552             
553     break;
554   } // END of SWITCH : EVENT TYPE 
555         
556   TParameter<double> * p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kMultiADA)->GetName()))) ; 
557   if (p) p->SetVal((double)mulADA) ; 
558
559   p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kMultiADC)->GetName()))) ; 
560   if (p) p->SetVal((double)mulADC) ;                     
561
562   p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kChargeADA)->GetName()))) ; 
563   if (p) p->SetVal((double)chargeADA) ; 
564
565   p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kChargeADC)->GetName()))) ; 
566   if (p) p->SetVal((double)chargeADC) ;                     
567
568   p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kChargeAD)->GetName()))) ; 
569   if (p) p->SetVal((double)(chargeADA + chargeADC)) ;                     
570                                 
571   p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kADATime)->GetName()))) ; 
572   if (p) p->SetVal((double)timeADA) ; 
573         
574   p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kADCTime)->GetName()))) ; 
575   if (p) p->SetVal((double)timeADC) ;                     
576         
577   p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kDiffTime)->GetName()))) ; 
578   if (p) p->SetVal((double)diffTime) ;                     
579         
580   delete rawStream; rawStream = 0x0;      
581   //
582   IncEvCountCycleRaws();
583   IncEvCountTotalRaws();
584   //
585 }
586
587 //____________________________________________________________________________ 
588 Float_t AliADQADataMakerRec::CorrectLeadingTime(Int_t i, Float_t time, Float_t adc) const
589 {
590   // Correct the leading time
591   // for slewing effect and
592   // misalignment of the channels
593   if (time < 1e-6) return -1024;
594
595   // Channel alignment and general offset subtraction
596   //  if (i < 32) time -= kV0CDelayCables;
597   //  time -= fTimeOffset[i];
598   //AliInfo(Form("time-offset %f", time));
599
600   // In case of pathological signals
601   //if (adc < 1e-6) return time;
602
603   // Slewing correction
604   //Float_t thr = fCalibData->GetCalibDiscriThr(i,kTRUE);
605   //AliInfo(Form("adc %f thr %f dtime %f ", adc,thr,fTimeSlewing->Eval(adc/thr)));
606   //time -= fTimeSlewing->Eval(adc/thr);
607
608   return time;
609 }
610