]> git.uio.no Git - u/mrichter/AliRoot.git/blob - AD/AliADQADataMakerRec.cxx
Central flags to digit and change of CIU position
[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 Coincidences;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 Coincidences;Entries", 5, 0, 5) ;  
329   Add2RawsList(h1i,kNCoincADC, !expert, image, saveCorr);   iHisto++;
330   
331   h2d = new TH2F("H2D_Pair_Diff_Time","Diff Pair Time;Pair number;Time [ns]",kNPairBins, kPairMin, kPairMax,kNTdcTimeBins, -50., 50.);
332   Add2RawsList(h2d,kPairDiffTime, !expert, image, saveCorr); iHisto++;
333   
334   h2d = new TH2F("H2D_Pair_Diff_Charge","Diff Pair Charge;Pair number;Charge [ADC counts]",kNPairBins, kPairMin, kPairMax, 2*kNChargeBins, -kChargeMax, kChargeMax);
335   Add2RawsList(h2d,kPairDiffCharge, !expert, image, saveCorr); iHisto++;
336
337   
338   AliDebug(AliQAv1::GetQADebugLevel(), Form("%d Histograms has been added to the Raws List",iHisto));
339   //
340   ClonePerTrigClass(AliQAv1::kRAWS); // this should be the last line
341 }
342
343 //____________________________________________________________________________
344 void AliADQADataMakerRec::MakeRaws(AliRawReader* rawReader)
345 {
346   // Fills histograms with Raws, computes average ADC values dynamically (pedestal subtracted)
347                   
348                                           
349   // Check id histograms already created for this Event Specie
350   if ( ! GetRawsData(kPedestalInt0) )
351     InitRaws() ;
352
353   rawReader->Reset() ; 
354   AliADRawStream* rawStream  = new AliADRawStream(rawReader); 
355   if(!(rawStream->Next())) return;  
356  
357   eventTypeType eventType = rawReader->GetType();
358
359   Int_t    mulADA = 0 ; 
360   Int_t    mulADC = 0 ; 
361   Double_t timeADA =0., timeADC = 0.;
362   Double_t weightADA =0., weightADC = 0.;
363   UInt_t   itimeADA=0, itimeADC=0;
364   Double_t chargeADA=0., chargeADC=0.;
365
366   Double_t diffTime=-100000.;
367   
368   Int_t    pmulADA = 0;
369   Int_t    pmulADC = 0;
370   Double_t pDiffTime =-100000.;
371
372   
373   switch (eventType){
374   case PHYSICS_EVENT:
375   
376     //    fNTotEvents++; // Use framework counters instead
377
378     Int_t  iFlag=0;
379     Int_t  pedestal;
380     Int_t  integrator[16];
381     Bool_t flagBB[16];   
382     Bool_t flagBG[16];   
383     Float_t charge;
384     Int_t  offlineCh;
385     Float_t adc[16], time[16], width[16], timeCorr[16]; 
386     Int_t  iPair=0;
387
388     for(Int_t iChannel=0; iChannel<16; iChannel++) { // BEGIN : Loop over channels
389                    
390       offlineCh = rawStream->GetOfflineChannel(iChannel);
391                    
392       // Fill Pedestal histograms
393            
394       for(Int_t j=15; j<21; j++) {
395         if((rawStream->GetBGFlag(iChannel,j) || rawStream->GetBBFlag(iChannel,j))) iFlag++;
396       }
397
398       if(iFlag == 0){ //No Flag found
399         for(Int_t j=15; j<21; j++){
400           pedestal= (Int_t) rawStream->GetPedestal(iChannel, j);
401           integrator[offlineCh] = rawStream->GetIntegratorFlag(iChannel, j);
402
403           FillRawsData((integrator[offlineCh] == 0 ? kPedestalInt0 : kPedestalInt1),offlineCh,pedestal);
404         }
405       }
406
407       // Fill Charge EoI histograms
408            
409       adc[offlineCh]    = 0.0;
410
411       // Search for the maximum charge in the train of 21 LHC clocks 
412       // regardless of the integrator which has been operated:
413       Float_t maxadc = 0;
414       Int_t imax = -1;
415       Float_t adcPedSub[21];
416       for(Int_t iClock=0; iClock<21; iClock++){
417         Bool_t iIntegrator = rawStream->GetIntegratorFlag(iChannel,iClock);
418         Int_t k = offlineCh+16*iIntegrator;
419
420         //printf(Form("clock = %d adc = %f ped %f\n",iClock,rawStream->GetPedestal(iChannel,iClock),fPedestal[k]));
421
422         adcPedSub[iClock] = rawStream->GetPedestal(iChannel,iClock) - fCalibData->GetPedestal(k);
423         //                              if(adcPedSub[iClock] <= GetRecoParam()->GetNSigmaPed()*fCalibData->GetSigma(k)) {
424         if(adcPedSub[iClock] <= 2.*fCalibData->GetSigma(k)) {
425           adcPedSub[iClock] = 0;
426           continue;
427         }
428         //                              if(iClock < GetRecoParam()->GetStartClock() || iClock > GetRecoParam()->GetEndClock()) continue;
429         if(iClock < 8 || iClock > 12) continue;
430         if(adcPedSub[iClock] > maxadc) {
431           maxadc = adcPedSub[iClock];
432           imax   = iClock;
433         }
434       }
435       //printf(Form("Channel %d (online), %d (offline)\n",iChannel,j)); 
436       if (imax != -1) {
437         //                              Int_t start = imax - GetRecoParam()->GetNPreClocks();
438         Int_t start = imax - 2;
439         if (start < 0) start = 0;
440         //                              Int_t end = imax + GetRecoParam()->GetNPostClocks();
441         Int_t end = imax + 1;
442         if (end > 20) end = 20;
443         for(Int_t iClock = start; iClock <= end; iClock++) {
444           adc[offlineCh] += adcPedSub[iClock];
445         }
446       }
447         
448                 
449       Int_t iClock  = imax;
450       charge = rawStream->GetPedestal(iChannel,iClock); // Charge at the maximum 
451
452       integrator[offlineCh]    = rawStream->GetIntegratorFlag(iChannel,iClock);
453       flagBB[offlineCh]  = rawStream->GetBBFlag(iChannel, iClock);
454       flagBG[offlineCh]  = rawStream->GetBGFlag(iChannel,iClock );
455       Int_t board = AliADCalibData::GetBoardNumber(offlineCh);
456       time[offlineCh] = rawStream->GetTime(iChannel)*fCalibData->GetTimeResolution(board);
457       width[offlineCh] = rawStream->GetWidth(iChannel)*fCalibData->GetWidthResolution(board);
458
459       if (time[offlineCh] >= 1e-6) FillRawsData(kChargeEoI,offlineCh,adc[offlineCh]);
460
461       FillRawsData((integrator[offlineCh] == 0 ? kChargeEoIInt0 : kChargeEoIInt1),offlineCh,charge);
462
463       Float_t sigma = fCalibData->GetSigma(offlineCh+16*integrator[offlineCh]);
464                   
465       if((adc[offlineCh] > 2.*sigma) && !(time[offlineCh] <1.e-6)){ 
466         if(offlineCh<8) {
467           mulADC++;
468           chargeADC += adc[offlineCh];
469           
470         } else {
471           mulADA++;
472           chargeADA += adc[offlineCh];
473         }
474       }
475                    
476   
477       // Fill HPTDC Time Histograms
478       timeCorr[offlineCh] = CorrectLeadingTime(offlineCh,time[offlineCh],adc[offlineCh]);
479
480       //const Float_t p1 = 2.50; // photostatistics term in the time resolution
481       //const Float_t p2 = 3.00; // sleewing related term in the time resolution
482       if(timeCorr[offlineCh]>-1024 + 1.e-6){
483         //Float_t nphe = adc[offlineCh]*kChargePerADC/(fCalibData->GetGain(offlineCh)*TMath::Qe());
484         Float_t timeErr = 1;
485         /*/
486         if (nphe>1.e-6) timeErr = TMath::Sqrt(kIntTimeRes*kIntTimeRes+
487                                               p1*p1/nphe+
488                                               p2*p2*(fTimeSlewing->GetParameter(0)*fTimeSlewing->GetParameter(1))*(fTimeSlewing->GetParameter(0)*fTimeSlewing->GetParameter(1))*
489                                               TMath::Power(adc[offlineCh]/fCalibData->GetCalibDiscriThr(offlineCh,kTRUE),2.*(fTimeSlewing->GetParameter(1)-1.))/
490                                               (fCalibData->GetCalibDiscriThr(offlineCh,kTRUE)*fCalibData->GetCalibDiscriThr(offlineCh,kTRUE)));/*/
491
492         if (timeErr>1.e-6) {
493           if (offlineCh<8) {
494             itimeADC++;
495             timeADC += timeCorr[offlineCh]/(timeErr*timeErr);
496             weightADC += 1./(timeErr*timeErr);
497           }else{
498             itimeADA++;
499             timeADA += timeCorr[offlineCh]/(timeErr*timeErr);
500             weightADA += 1./(timeErr*timeErr);
501           }
502         }
503       }
504       FillRawsData(kHPTDCTime,offlineCh,timeCorr[offlineCh]);
505       FillRawsData(kWidth,offlineCh,width[offlineCh]);
506
507     }// END of Loop over channels
508     
509     for(Int_t iChannel=0; iChannel<4; iChannel++) {//Loop over pairs ADC
510         offlineCh = rawStream->GetOfflineChannel(iChannel);
511         Float_t sigma = fCalibData->GetSigma(offlineCh+16*integrator[offlineCh]);
512         Float_t sigma4 = fCalibData->GetSigma(offlineCh+4+16*integrator[offlineCh]);            
513         if( ((adc[offlineCh] > 2.*sigma) && !(time[offlineCh] <1.e-6)) && ((adc[offlineCh+4] > 2.*sigma4) && !(time[offlineCh+4] <1.e-6)) ){ 
514                 pmulADC++;
515                 if(timeCorr[offlineCh]<-1024.+1.e-6 || timeCorr[offlineCh+4]<-1024.+1.e-6) pDiffTime = -1024.;
516                 else pDiffTime = timeCorr[offlineCh+4] - timeCorr[offlineCh]; 
517                 FillRawsData(kPairDiffTime,iPair,pDiffTime);
518                 }
519         FillRawsData(kPairDiffCharge,iPair,TMath::Abs(adc[offlineCh]-adc[offlineCh+4]));
520         iPair++;
521         }
522     for(Int_t iChannel=8; iChannel<12; iChannel++) {//Loop over pairs ADA
523         offlineCh = rawStream->GetOfflineChannel(iChannel);
524         Float_t sigma = fCalibData->GetSigma(offlineCh+16*integrator[offlineCh]);
525         Float_t sigma4 = fCalibData->GetSigma(offlineCh+4+16*integrator[offlineCh]);
526         if( ((adc[offlineCh] > 2.*sigma) && !(time[offlineCh] <1.e-6)) && ((adc[offlineCh+4] > 2.*sigma4) && !(time[offlineCh+4] <1.e-6)) ){ 
527                 pmulADA++;
528                 if(timeCorr[offlineCh]<-1024.+1.e-6 || timeCorr[offlineCh+4]<-1024.+1.e-6) pDiffTime = -1024.;
529                 else pDiffTime = timeCorr[offlineCh+4] - timeCorr[offlineCh]; 
530                 FillRawsData(kPairDiffTime,iPair,pDiffTime);
531                 }
532         FillRawsData(kPairDiffCharge,iPair,TMath::Abs(adc[offlineCh]-adc[offlineCh+4]));
533         iPair++;        
534         }
535     FillRawsData(kNCoincADA,pmulADA);
536     FillRawsData(kNCoincADC,pmulADC);
537         
538         
539     if(weightADA>1.e-6) timeADA /= weightADA; 
540     else timeADA = -1024.;
541     if(weightADC>1.e-6) timeADC /= weightADC;
542     else timeADC = -1024.;
543     if(timeADA<-1024.+1.e-6 || timeADC<-1024.+1.e-6) diffTime = -1024.;
544     else diffTime = timeADA - timeADC;
545     
546
547                 
548     FillRawsData(kADATime,timeADA);
549     FillRawsData(kADCTime,timeADC);
550     FillRawsData(kDiffTime,diffTime);
551     FillRawsData(kTimeADAADC,timeADA,timeADC);
552
553     FillRawsData(kMultiADA,mulADA);
554     FillRawsData(kMultiADC,mulADC);
555
556     FillRawsData(kChargeADA,chargeADA);
557     FillRawsData(kChargeADC,chargeADC);
558     FillRawsData(kChargeAD,chargeADA + chargeADC);
559             
560     break;
561   } // END of SWITCH : EVENT TYPE 
562         
563   TParameter<double> * p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kMultiADA)->GetName()))) ; 
564   if (p) p->SetVal((double)mulADA) ; 
565
566   p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kMultiADC)->GetName()))) ; 
567   if (p) p->SetVal((double)mulADC) ;                     
568
569   p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kChargeADA)->GetName()))) ; 
570   if (p) p->SetVal((double)chargeADA) ; 
571
572   p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kChargeADC)->GetName()))) ; 
573   if (p) p->SetVal((double)chargeADC) ;                     
574
575   p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kChargeAD)->GetName()))) ; 
576   if (p) p->SetVal((double)(chargeADA + chargeADC)) ;                     
577                                 
578   p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kADATime)->GetName()))) ; 
579   if (p) p->SetVal((double)timeADA) ; 
580         
581   p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kADCTime)->GetName()))) ; 
582   if (p) p->SetVal((double)timeADC) ;                     
583         
584   p = dynamic_cast<TParameter<double>*>(GetParameterList()->FindObject(Form("%s_%s_%s", GetName(), AliQAv1::GetTaskName(AliQAv1::kRAWS).Data(), GetRawsData(kDiffTime)->GetName()))) ; 
585   if (p) p->SetVal((double)diffTime) ;                     
586         
587   delete rawStream; rawStream = 0x0;      
588   //
589   IncEvCountCycleRaws();
590   IncEvCountTotalRaws();
591   //
592 }
593
594 //____________________________________________________________________________ 
595 Float_t AliADQADataMakerRec::CorrectLeadingTime(Int_t /*i*/, Float_t time, Float_t /*adc*/) const
596 {
597   // Correct the leading time
598   // for slewing effect and
599   // misalignment of the channels
600   if (time < 1e-6) return -1024;
601
602   // Channel alignment and general offset subtraction
603   //  if (i < 32) time -= kV0CDelayCables;
604   //  time -= fTimeOffset[i];
605   //AliInfo(Form("time-offset %f", time));
606
607   // In case of pathological signals
608   //if (adc < 1e-6) return time;
609
610   // Slewing correction
611   //Float_t thr = fCalibData->GetCalibDiscriThr(i,kTRUE);
612   //AliInfo(Form("adc %f thr %f dtime %f ", adc,thr,fTimeSlewing->Eval(adc/thr)));
613   //time -= fTimeSlewing->Eval(adc/thr);
614
615   return time;
616 }
617