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