]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDcalibDB.cxx
Get number of time bins from FEE configuration name instead of the CDB file (Frederick)
[u/mrichter/AliRoot.git] / TRD / AliTRDcalibDB.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 /* $Id$ */
17
18 ///////////////////////////////////////////////////////////////////////////////
19 //                                                                           //
20 // Class providing the calibration parameters by accessing the CDB           //
21 //                                                                           //
22 // Request an instance with AliTRDcalibDB::Instance()                        //
23 // If a new event is processed set the event number with SetRun              //
24 // Then request the calibration data                                         // 
25 //                                                                           //
26 // Author:                                                                   //
27 //   Jan Fiete Grosse-Oetringhaus (Jan.Fiete.Grosse-Oetringhaus@cern.ch)     //
28 //                                                                           //
29 ///////////////////////////////////////////////////////////////////////////////
30
31 #include <TClonesArray.h>
32 #include <TObjArray.h>
33
34 #include "AliCDBManager.h"
35 #include "AliCDBEntry.h"
36 #include "AliLog.h"
37
38 #include "AliTRDPIDReference.h"
39 #include "AliTRDcalibDB.h"
40 #include "AliTRDtrapConfig.h"
41 #include "AliTRDtrapConfigHandler.h"
42 #include "AliTRDCommonParam.h"
43
44 #include "Cal/AliTRDCalROC.h"
45 #include "Cal/AliTRDCalPad.h"
46 #include "Cal/AliTRDCalDet.h"
47 #include "Cal/AliTRDCalDCS.h"
48 #include "Cal/AliTRDCalDCSv2.h"
49 #include "Cal/AliTRDCalDCSFEEv2.h"
50 #include "Cal/AliTRDCalPID.h"
51 #include "Cal/AliTRDCalMonitoring.h"
52 #include "Cal/AliTRDCalChamberStatus.h"
53 #include "Cal/AliTRDCalPadStatus.h"
54 #include "Cal/AliTRDCalSingleChamberStatus.h"
55 #include "Cal/AliTRDCalTrkAttach.h"
56 #include "Cal/AliTRDCalOnlineGainTable.h"
57
58 ClassImp(AliTRDcalibDB)
59
60 AliTRDcalibDB *AliTRDcalibDB::fgInstance   = 0;
61 Bool_t         AliTRDcalibDB::fgTerminated = kFALSE;
62
63 //_ singleton implementation __________________________________________________
64 AliTRDcalibDB* AliTRDcalibDB::Instance()
65 {
66   //
67   // Singleton implementation
68   // Returns an instance of this class, it is created if neccessary
69   //
70   
71   if (fgTerminated != kFALSE) {
72     return 0;
73   }
74
75   if (fgInstance == 0) {
76     fgInstance = new AliTRDcalibDB();
77   }
78
79   return fgInstance;
80
81 }
82
83 //_____________________________________________________________________________
84 void AliTRDcalibDB::Terminate()
85 {
86   //
87   // Singleton implementation
88   // Deletes the instance of this class and sets the terminated flag,
89   // instances cannot be requested anymore
90   // This function can be called several times.
91   //
92   
93   fgTerminated = kTRUE;
94   
95   if (fgInstance != 0) {
96     delete fgInstance;
97     fgInstance = 0;
98   }
99
100 }
101
102 //_____________________________________________________________________________
103 AliTRDcalibDB::AliTRDcalibDB()
104   :TObject()
105   ,fRun(-1)
106   ,fPRFsmp(0)
107   ,fPRFbin(0)
108   ,fPRFlo(0)
109   ,fPRFhi(0)
110   ,fPRFwid(0)
111   ,fPRFpad(0)
112   ,fPIDResponse(NULL)
113   ,fOnlineGainTableID(0)
114   ,fTrapConfig(0x0)
115   ,fTrapConfigName("")
116   ,fTrapConfigVersion("")
117 {
118   //
119   // Default constructor
120   //
121   // TODO Default runnumber is set to 0, this should be changed later
122   //      to an invalid value (e.g. -1) to prevent
123   // TODO invalid calibration data to be used.
124   //
125
126   for (Int_t i = 0; i < kCDBCacheSize; ++i) {
127     fCDBCache[i]   = 0;
128     fCDBEntries[i] = 0;
129   }
130   
131   // Create the sampled PRF
132   SamplePRF();
133   
134 }
135
136 //_____________________________________________________________________________
137 AliTRDcalibDB::AliTRDcalibDB(const AliTRDcalibDB &c)
138   :TObject(c)
139   ,fRun(-1)
140   ,fPRFsmp(0)
141   ,fPRFbin(0)
142   ,fPRFlo(0)
143   ,fPRFhi(0)
144   ,fPRFwid(0)
145   ,fPRFpad(0)
146   ,fPIDResponse(NULL)
147   ,fOnlineGainTableID(0)
148   ,fTrapConfig(0x0)
149   ,fTrapConfigName("")
150   ,fTrapConfigVersion("")
151 {
152   //
153   // Copy constructor (not that it make any sense for a singleton...)
154   //
155
156   for (Int_t i = 0; i < kCDBCacheSize; ++i) {
157     fCDBCache[i]   = 0;
158     fCDBEntries[i] = 0;
159   }
160   
161   // Create the sampled PRF
162   SamplePRF();
163
164 }
165
166 //_____________________________________________________________________________
167 AliTRDcalibDB &AliTRDcalibDB::operator=(const AliTRDcalibDB &c) 
168 {
169   //
170   // Assignment operator (same as above ...)
171   //
172
173   if (this != &c) {
174     AliFatal("No assignment operator defined");
175   }
176
177   return *this;
178
179 }
180
181 //_____________________________________________________________________________
182 AliTRDcalibDB::~AliTRDcalibDB() 
183 {
184   //
185   // destructor
186   //
187   
188   if (fPRFsmp) {
189     delete [] fPRFsmp;
190     fPRFsmp = 0;
191   }
192
193   if (fPIDResponse) {
194     delete fPIDResponse;
195     fPIDResponse = 0x0;
196   }
197
198   Invalidate();
199
200 }
201
202 //_caching functions____________________________________________________________
203 const TObject *AliTRDcalibDB::GetCachedCDBObject(Int_t id)
204 {
205   //
206   // Retrieves a cdb object with the given id. The objects are cached as
207   // long as the run number is not changed.
208   //
209   // Put together the available objects here by using the lines
210   //   a) For usual calibration objects:
211   //      case kID<Name> : 
212   //        return CacheCDBEntry(kID<Name>,"TRD/Calib/<Path>"); 
213   //        break;
214   //      See function CacheCDBEntry for details.
215   //   and
216   //   b) For calibration data which depends on two objects: One containing 
217   //      a value per detector and one the local fluctuations per pad:
218   //      case kID<Name> :
219   //        return CacheMergeCDBEntry(kID<Name>,"TRD/Calib/<padPath>","TRD/Calib/<chamberPath>"); 
220   //        break;
221   //      See function CacheMergeCDBEntry for details.
222   //
223     
224   switch (id) {
225
226     // Parameters defined per pad and chamber
227     case kIDVdriftPad : 
228       return CacheCDBEntry(kIDVdriftPad         ,"TRD/Calib/LocalVdrift"); 
229       break;
230     case kIDVdriftChamber : 
231       return CacheCDBEntry(kIDVdriftChamber     ,"TRD/Calib/ChamberVdrift"); 
232       break;
233     case kIDExBChamber : 
234       return CacheCDBEntry(kIDExBChamber        ,"TRD/Calib/ChamberExB"); 
235       break;
236     case kIDT0Pad : 
237       return CacheCDBEntry(kIDT0Pad             ,"TRD/Calib/LocalT0"); 
238       break;
239     case kIDT0Chamber : 
240       return CacheCDBEntry(kIDT0Chamber         ,"TRD/Calib/ChamberT0"); 
241       break;
242     case kIDGainFactorPad : 
243       return CacheCDBEntry(kIDGainFactorPad     ,"TRD/Calib/LocalGainFactor"); 
244       break;
245     case kIDGainFactorChamber : 
246       return CacheCDBEntry(kIDGainFactorChamber ,"TRD/Calib/ChamberGainFactor"); 
247       break;
248
249     case kIDOnlineGainFactor : 
250       switch(GetOnlineGainTableID()) {
251         case 0:
252           // For testing purposes only !!!
253           AliInfo("No gain table name from OCDB. Use default table!");
254           return CacheCDBEntry(kIDOnlineGainFactor  ,"TRD/Calib/Krypton_2011-01"); 
255           break;
256         case 1:
257           // Online gain table ID 1
258           return CacheCDBEntry(kIDOnlineGainFactor  ,"TRD/Calib/Krypton_2011-01"); 
259           break;
260         case 2:
261           // Online gain table ID 2
262           return CacheCDBEntry(kIDOnlineGainFactor  ,"TRD/Calib/Gaintbl_Uniform_FGAN0_2011-01"); 
263           break;
264         case 3:
265           // Online gain table ID 3
266           return CacheCDBEntry(kIDOnlineGainFactor  ,"TRD/Calib/Gaintbl_Uniform_FGAN8_2011-01"); 
267           break;
268         case 4:
269           // Online gain table ID 4
270           return CacheCDBEntry(kIDOnlineGainFactor  ,"TRD/Calib/Krypton_2011-02"); 
271           break;
272         case 5:
273           // Online gain table ID 5
274           return CacheCDBEntry(kIDOnlineGainFactor  ,"TRD/Calib/Krypton_2011-03"); 
275           break;
276         case 6:
277           // Online gain table ID 6
278           return CacheCDBEntry(kIDOnlineGainFactor  ,"TRD/Calib/Gaintbl_Uniform_FGAN0_2012-01"); 
279           break;
280         case 7:
281           // Online gain table ID 7
282           return CacheCDBEntry(kIDOnlineGainFactor  ,"TRD/Calib/Gaintbl_Uniform_FGAN8_2012-01"); 
283           break;
284       }
285       break;
286
287     case kIDNoiseChamber : 
288       return CacheCDBEntry(kIDNoiseChamber      ,"TRD/Calib/DetNoise"); 
289       break;
290     case kIDNoisePad : 
291       return CacheCDBEntry(kIDNoisePad          ,"TRD/Calib/PadNoise"); 
292       break;
293
294     // Parameters defined per pad
295     case kIDPRFWidth : 
296       return CacheCDBEntry(kIDPRFWidth          ,"TRD/Calib/PRFWidth"); 
297       break;
298
299     // Status values
300     case kIDChamberStatus : 
301       return CacheCDBEntry(kIDChamberStatus     ,"TRD/Calib/ChamberStatus"); 
302       break;
303     case kIDPadStatus : 
304       return CacheCDBEntry(kIDPadStatus         ,"TRD/Calib/PadStatus"); 
305       break;
306
307     // Global parameters
308     case kIDMonitoringData : 
309       return CacheCDBEntry(kIDMonitoringData    ,"TRD/Calib/MonitoringData"); 
310       break;
311     case kIDFEE : 
312       return CacheCDBEntry(kIDFEE               ,"TRD/Calib/FEE"); 
313       break;
314     case kIDTrapConfig :
315       return CacheCDBEntry(kIDFEE               ,"TRD/Calib/TrapConfig"); 
316       break;
317     case kIDDCS :
318       return CacheCDBEntry(kIDDCS               ,"TRD/Calib/DCS");
319       break;
320     case kIDPIDNN : 
321       return CacheCDBEntry(kIDPIDNN             ,"TRD/Calib/PIDNN");
322       break;
323     case kIDPIDLQ : 
324       return CacheCDBEntry(kIDPIDLQ             ,"TRD/Calib/PIDLQ"); 
325       break;
326     case kIDPIDLQ1D:
327       return CacheCDBEntry(kIDPIDLQ1D           ,"TRD/Calib/PIDLQ1D");
328       break;
329     case kIDRecoParam : 
330       return CacheCDBEntry(kIDRecoParam         ,"TRD/Calib/RecoParam"); 
331       break;
332     case kIDAttach : 
333       return CacheCDBEntry(kIDAttach            ,"TRD/Calib/TrkAttach"); 
334       break;
335     case kIDPHQ :
336       return CacheCDBEntry(kIDPHQ               ,"TRD/Calib/PHQ");
337       break;
338   }
339
340   return 0;
341
342 }
343
344 //_____________________________________________________________________________
345 AliCDBEntry *AliTRDcalibDB::GetCDBEntry(const char *cdbPath)
346 {
347   // 
348   // Retrieves an entry with path <cdbPath> from the CDB.
349   //
350     
351   AliCDBEntry *entry = AliCDBManager::Instance()->Get(cdbPath,fRun);
352   if (!entry) { 
353     AliError(Form("Failed to get entry: %s",cdbPath));
354     return 0; 
355   }
356   
357   return entry;
358
359 }
360
361 //_____________________________________________________________________________
362 const TObject *AliTRDcalibDB::CacheCDBEntry(Int_t id, const char *cdbPath)
363 {
364   //
365   // Caches the entry <id> with cdb path <cdbPath>
366   //
367
368   if (!fCDBCache[id]) {
369     fCDBEntries[id] = GetCDBEntry(cdbPath);
370     if (fCDBEntries[id]) {
371       fCDBCache[id] = fCDBEntries[id]->GetObject();
372     }
373   } 
374   
375   return fCDBCache[id];
376
377 }
378
379 //_____________________________________________________________________________
380 void AliTRDcalibDB::SetRun(Long64_t run)
381 {
382   //
383   // Sets current run number. Calibration data is read from the corresponding file.
384   // When the run number changes the caching is invalidated.
385   //
386
387   if (fRun == run) {
388     return;
389   }
390
391   fRun = run;
392
393   Invalidate();
394
395 }
396
397 //_____________________________________________________________________________
398 void AliTRDcalibDB::Invalidate()
399 {
400   //
401   // Invalidates cache (when run number is changed).
402   //
403   
404   for (Int_t i = 0; i < kCDBCacheSize; ++i) {
405     if (fCDBEntries[i]) {
406       if (AliCDBManager::Instance()->GetCacheFlag() == kFALSE) {
407         if ((fCDBEntries[i]->IsOwner() == kFALSE) && 
408             (fCDBCache[i])) {
409           delete fCDBCache[i];
410         }
411         delete fCDBEntries[i];
412       }
413       fCDBEntries[i] = 0;
414       fCDBCache[i]   = 0;
415     }
416   }
417
418   fOnlineGainTableID = 0;
419
420 }
421
422 //_____________________________________________________________________________
423 Float_t AliTRDcalibDB::GetNoise(Int_t det, Int_t col, Int_t row)
424 {
425   //
426   // Returns the noise level in ADC counts for the given pad.
427   //
428
429   const AliTRDCalPad *calPad     = dynamic_cast<const AliTRDCalPad *> 
430                                    (GetCachedCDBObject(kIDNoisePad));
431   if (!calPad) {
432     return -1;
433   }
434
435   AliTRDCalROC       *roc        = calPad->GetCalROC(det);
436   if (!roc) {
437     return -1;
438   }
439
440   const AliTRDCalDet *calChamber = dynamic_cast<const AliTRDCalDet *> 
441                                    (GetCachedCDBObject(kIDNoiseChamber));
442   if (!calChamber) {
443     return -1;
444   }
445
446   return calChamber->GetValue(det) * roc->GetValue(col,row);
447
448 }
449  
450 //_____________________________________________________________________________
451 AliTRDCalROC *AliTRDcalibDB::GetNoiseROC(Int_t det)
452 {
453   //
454   // Returns the Vdrift calibration object for a given ROC
455   // containing one number per pad 
456   //
457   
458   const AliTRDCalPad     *calPad     = dynamic_cast<const AliTRDCalPad *> 
459                                        (GetCachedCDBObject(kIDNoisePad));
460   if (!calPad) {
461     return 0;
462   }
463
464   AliTRDCalROC           *roc        = calPad->GetCalROC(det);
465   if (!roc) {
466     return 0;
467   }
468   else {
469     return roc;
470   }
471
472 }
473
474 //_____________________________________________________________________________
475 const AliTRDCalDet *AliTRDcalibDB::GetNoiseDet()
476 {
477   //
478   // Returns the Vdrift calibration object
479   // containing one number per detector
480   //
481   
482   const AliTRDCalDet     *calChamber = dynamic_cast<const AliTRDCalDet *> 
483                                        (GetCachedCDBObject(kIDNoiseChamber));
484   if (!calChamber) {
485     return 0;
486   }
487   else {
488     return calChamber;
489   }
490
491 }
492
493 //_____________________________________________________________________________
494 Float_t AliTRDcalibDB::GetVdrift(Int_t det, Int_t col, Int_t row)
495 {
496   //
497   // Returns the drift velocity for the given pad.
498   //
499
500   const AliTRDCalPad *calPad     = dynamic_cast<const AliTRDCalPad *> 
501                                    (GetCachedCDBObject(kIDVdriftPad));
502   if (!calPad) {
503     return -1;
504   }
505
506   AliTRDCalROC       *roc        = calPad->GetCalROC(det);
507   if (!roc) {
508     return -1;
509   }
510
511   const AliTRDCalDet *calChamber = dynamic_cast<const AliTRDCalDet *> 
512                                    (GetCachedCDBObject(kIDVdriftChamber));
513   if (!calChamber) {
514     return -1;
515   }
516
517   return calChamber->GetValue(det) * roc->GetValue(col,row);
518
519 }
520  
521 //_____________________________________________________________________________
522 AliTRDCalROC *AliTRDcalibDB::GetVdriftROC(Int_t det)
523 {
524   //
525   // Returns the Vdrift calibration object for a given ROC
526   // containing one number per pad 
527   //
528   
529   const AliTRDCalPad     *calPad     = dynamic_cast<const AliTRDCalPad *> 
530                                        (GetCachedCDBObject(kIDVdriftPad));
531   if (!calPad) {
532     return 0;
533   }
534
535   AliTRDCalROC           *roc        = calPad->GetCalROC(det);
536   if (!roc) {
537     return 0;
538   }
539   else {
540     return roc;
541   }
542
543 }
544
545 //_____________________________________________________________________________
546 const AliTRDCalDet *AliTRDcalibDB::GetVdriftDet()
547 {
548   //
549   // Returns the Vdrift calibration object
550   // containing one number per detector
551   //
552   
553   const AliTRDCalDet     *calChamber = dynamic_cast<const AliTRDCalDet *> 
554                                        (GetCachedCDBObject(kIDVdriftChamber));
555   if (!calChamber) {
556     return 0;
557   }
558   else {
559     return calChamber;
560   }
561
562 }
563
564 //_____________________________________________________________________________
565 TObjArray * AliTRDcalibDB::GetPHQ()
566 {
567   //
568   //return PHQ calibration object
569   //
570   TObjArray *arr = (TObjArray *) (GetCachedCDBObject(kIDPHQ));
571   return arr;
572 }
573
574 //_____________________________________________________________________________
575 Float_t AliTRDcalibDB::GetVdriftAverage(Int_t det)
576 {
577   //
578   // Returns the average drift velocity for the given detector
579   //
580
581   const AliTRDCalDet *calDet     = dynamic_cast<const AliTRDCalDet *> 
582                                    (GetCachedCDBObject(kIDVdriftChamber));
583   if (!calDet) {
584     return -1;
585   }
586
587   return calDet->GetValue(det);
588
589 }
590 //_____________________________________________________________________________
591 const AliTRDCalDet *AliTRDcalibDB::GetExBDet()
592 {
593   //
594   // Returns the exB calibration object
595   // containing one number per detector
596   //
597   
598   const AliTRDCalDet     *calChamber = dynamic_cast<const AliTRDCalDet *> (GetCachedCDBObject(kIDExBChamber));
599   
600   Double_t meanexb = 100.0;
601   if (calChamber) meanexb = calChamber->GetMean();
602   //printf("mean %f\n",meanexb);  
603
604   if ((!calChamber) || (meanexb > 70.0)) {
605     
606     const AliTRDCalDet     *calChambervdrift = dynamic_cast<const AliTRDCalDet *> 
607         (GetCachedCDBObject(kIDVdriftChamber));
608       if (!calChambervdrift) {
609         return 0;
610       }
611       else {
612         AliTRDCalDet *calDetExB = new AliTRDCalDet("lorentz angle tan","lorentz angle tan (detector value)");
613         for(Int_t k = 0; k < 540; k++){
614           calDetExB->SetValue(k,AliTRDCommonParam::Instance()->GetOmegaTau(calChambervdrift->GetValue(k)));
615         }
616         return calDetExB;
617       }
618   }
619   else return calChamber;
620
621 }
622 //_____________________________________________________________________________
623 Float_t AliTRDcalibDB::GetT0(Int_t det, Int_t col, Int_t row)
624 {
625   //
626   // Returns t0 for the given pad.
627   //
628   
629   const AliTRDCalPad     *calPad     = dynamic_cast<const AliTRDCalPad *> 
630                                        (GetCachedCDBObject(kIDT0Pad));
631   if (!calPad) {
632     return -1;
633   }
634
635   AliTRDCalROC           *roc        = calPad->GetCalROC(det);
636   if (!roc) {
637     return -1;
638   }
639
640   const AliTRDCalDet     *calChamber = dynamic_cast<const AliTRDCalDet *> 
641                                        (GetCachedCDBObject(kIDT0Chamber));
642   if (!calChamber) {
643     return -1;
644   }
645
646   return calChamber->GetValue(det) + roc->GetValue(col,row);
647
648 }
649  
650 //_____________________________________________________________________________
651 AliTRDCalROC *AliTRDcalibDB::GetT0ROC(Int_t det)
652 {
653   //
654   // Returns the t0 calibration object for a given ROC
655   // containing one number per pad 
656   //
657   
658   const AliTRDCalPad     *calPad     = dynamic_cast<const AliTRDCalPad *> 
659                                        (GetCachedCDBObject(kIDT0Pad));
660   if (!calPad) {
661     return 0;
662   }
663
664   AliTRDCalROC           *roc        = calPad->GetCalROC(det);
665   if (!roc) {
666     return 0;
667   }
668   else {
669     return roc;
670   }
671
672 }
673
674 //_____________________________________________________________________________
675 const AliTRDCalDet *AliTRDcalibDB::GetT0Det()
676 {
677   //
678   // Returns the t0 calibration object
679   // containing one number per detector
680   //
681   
682   const AliTRDCalDet     *calChamber = dynamic_cast<const AliTRDCalDet *> 
683                                        (GetCachedCDBObject(kIDT0Chamber));
684   if (!calChamber) {
685     return 0;
686   }
687   else {
688     return calChamber;
689   }
690
691 }
692
693 //_____________________________________________________________________________
694 Float_t AliTRDcalibDB::GetT0Average(Int_t det)
695 {
696   //
697   // Returns the average t0 for the given detector
698   //
699
700   const AliTRDCalPad *calPad     = dynamic_cast<const AliTRDCalPad *> 
701                                    (GetCachedCDBObject(kIDT0Pad));
702   if (!calPad) {
703     return -1;
704   }
705
706   AliTRDCalROC       *roc        = calPad->GetCalROC(det);
707   if (!roc) {
708     return -1;
709   }
710
711   const AliTRDCalDet *calDet     = dynamic_cast<const AliTRDCalDet *> 
712                                    (GetCachedCDBObject(kIDT0Chamber));
713   if (!calDet) {
714     return -1;
715   }
716
717   Double_t sum = 0.0; 
718   for (Int_t channel = 0; channel < roc->GetNchannels(); ++channel) {
719     sum += roc->GetValue(channel);
720   }
721   sum /= roc->GetNchannels();
722   sum += calDet->GetValue(det);
723   return sum;
724
725 }
726
727 //_____________________________________________________________________________
728 AliTRDCalOnlineGainTableROC* AliTRDcalibDB::GetOnlineGainTableROC(Int_t det)
729 {
730   //
731   // Returns the online gain factor table for a given ROC.
732   //
733
734   if (!HasOnlineFilterGain()) {
735     return 0x0;
736   }
737   
738   const AliTRDCalOnlineGainTable *calOnline 
739      = dynamic_cast<const AliTRDCalOnlineGainTable *> 
740                                    (GetCachedCDBObject(kIDOnlineGainFactor));
741   if (!calOnline) {
742     return 0x0;
743   }
744
745   return calOnline->GetGainTableROC(det);
746
747 }
748
749 //_____________________________________________________________________________
750 Float_t AliTRDcalibDB::GetOnlineGainFactor(Int_t det, Int_t col, Int_t row)
751 {
752   //
753   // Returns the online gain factor for the given pad.
754   //
755
756   if (!HasOnlineFilterGain()) {
757     return 0x0;
758   }
759   
760   const AliTRDCalOnlineGainTable *calOnline 
761      = dynamic_cast<const AliTRDCalOnlineGainTable *> 
762                                    (GetCachedCDBObject(kIDOnlineGainFactor));
763   if (!calOnline) {
764     return -1;
765   }
766
767   return calOnline->GetGainCorrectionFactor(det,row,col);
768
769 }
770
771 //_____________________________________________________________________________
772 AliTRDCalROC *AliTRDcalibDB::GetGainFactorROC(Int_t det)
773 {
774   //
775   // Returns the gain factor calibration object for a given ROC
776   //
777   
778   const AliTRDCalPad *calPad     = dynamic_cast<const AliTRDCalPad *> 
779                                    (GetCachedCDBObject(kIDGainFactorPad));
780   if (!calPad) {
781     return 0;
782   }
783
784   AliTRDCalROC       *roc        = calPad->GetCalROC(det);
785   if (!roc) {
786     return 0;
787   }
788   else {
789     return roc;
790   }
791
792 }
793
794 //_____________________________________________________________________________
795 Float_t AliTRDcalibDB::GetGainFactor(Int_t det, Int_t col, Int_t row)
796 {
797   //
798   // Returns the gain factor for the given pad.
799   //
800   
801   const AliTRDCalPad *calPad     = dynamic_cast<const AliTRDCalPad *> 
802                                    (GetCachedCDBObject(kIDGainFactorPad));
803   if (!calPad) {
804     return -1;
805   }
806
807   AliTRDCalROC       *roc        = calPad->GetCalROC(det);
808   if (!roc) {
809     return -1;
810   }
811
812   const AliTRDCalDet *calChamber = dynamic_cast<const AliTRDCalDet *> 
813                                    (GetCachedCDBObject(kIDGainFactorChamber));
814   if (!calChamber) {
815     return -1;
816   }
817
818   return calChamber->GetValue(det) * roc->GetValue(col,row);
819
820 }
821
822 //_____________________________________________________________________________
823 const AliTRDCalDet *AliTRDcalibDB::GetGainFactorDet()
824 {
825   //
826   // Returns the gain factor calibration object
827   // containing one number per detector
828   //
829
830   const AliTRDCalDet *calChamber = dynamic_cast<const AliTRDCalDet *> 
831                                    (GetCachedCDBObject(kIDGainFactorChamber));
832   if (!calChamber) {
833     return 0;
834   }
835   else {
836     return calChamber;
837   }
838
839 }
840
841 //_____________________________________________________________________________
842 Float_t AliTRDcalibDB::GetGainFactorAverage(Int_t det)
843 {
844   //
845   // Returns the average gain factor for the given detector
846   //
847
848   const AliTRDCalDet *calDet     = dynamic_cast<const AliTRDCalDet *> 
849                                    (GetCachedCDBObject(kIDGainFactorChamber));
850   if (!calDet) {
851     return -1;
852   }
853
854   return calDet->GetValue(det);
855
856 }
857
858 //_____________________________________________________________________________
859 AliTRDCalROC *AliTRDcalibDB::GetPRFROC(Int_t det)
860 {
861   //
862   // Returns the PRF calibration object for a given ROC
863   // containing one number per pad 
864   //
865   
866   const AliTRDCalPad     *calPad     = dynamic_cast<const AliTRDCalPad *> 
867                                        (GetCachedCDBObject(kIDPRFWidth));
868   if (!calPad) {
869     return 0;
870   }
871
872   AliTRDCalROC           *roc        = calPad->GetCalROC(det);
873   if (!roc) {
874     return 0;
875   }
876   else {
877     return roc;
878   }
879
880 }
881
882 //_____________________________________________________________________________
883 Float_t AliTRDcalibDB::GetPRFWidth(Int_t det, Int_t col, Int_t row)
884 {
885   //
886   // Returns the PRF width for the given pad.
887   //
888   
889   const AliTRDCalPad *calPad     = dynamic_cast<const AliTRDCalPad *> 
890                                    (GetCachedCDBObject(kIDPRFWidth));
891   if (!calPad) {
892     return -1;
893   }
894
895   AliTRDCalROC       *roc        = calPad->GetCalROC(det);
896   if (!roc) {
897     return -1;
898   }
899
900   return roc->GetValue(col,row);
901
902 }
903   
904 //_____________________________________________________________________________
905 Int_t AliTRDcalibDB::GetNumberOfTimeBinsDCS()
906 {
907   //
908   // Returns number of time bins from the DCS
909   //
910
911   // default value - has not been set
912   Int_t nUndef = -1;
913
914   // Get the corresponding parameter
915   TString tbstr = "";
916   GetDCSConfigParOption(kTimebin, 0, tbstr);
917
918   // Check if there is any content in the string first
919   if (tbstr.Length() == 0) {
920     AliError("Parameter for number of timebins is empty!");
921     return nUndef;
922   }
923
924   // Check if we have the correct config parameter
925   TString tbident  = "tb";
926   TString tbsubstr = tbstr(0,2);
927   if (!tbsubstr.EqualTo(tbident)) {
928     AliError(Form("Parameter for number of timebins is corrupted (%s)!", tbstr.Data()));
929     return nUndef;
930   }
931
932   tbstr.Remove(0,2);
933   // check if there is more than a number
934   if (!tbstr.IsDigit()) {
935     AliError(Form("Parameter for number of timebins is corrupted (%s)!", tbstr.Data()));
936     return nUndef;
937   }
938
939   Int_t ntb = tbstr.Atoi();
940   AliInfo(Form("Number of timebins from CDB: %d", ntb));
941
942   return ntb;
943
944 }
945
946 //_____________________________________________________________________________
947 void AliTRDcalibDB::GetFilterType(TString &filterType)
948 {
949   //
950   // Returns the filter type
951   //
952
953   GetDCSConfigParOption(kFltrSet, 0, filterType);
954
955 }
956
957 //_____________________________________________________________________________
958 Int_t AliTRDcalibDB::GetOnlineGainTableID()
959 {
960   //
961   // Get the gain table ID from the DCS
962   //
963
964   if (fOnlineGainTableID > 0) {
965     return fOnlineGainTableID;
966   }
967
968   const TObjArray *dcsArr = dynamic_cast<const TObjArray *>(GetCachedCDBObject(kIDDCS));
969   if (!dcsArr){
970     return -1;
971   }
972
973   Int_t esor   = 0; // Take SOR
974   Int_t calver = 0; // Check CalDCS version
975   if (!strcmp(dcsArr->At(0)->ClassName(),"AliTRDCalDCS"))   calver = 1;
976   if (!strcmp(dcsArr->At(0)->ClassName(),"AliTRDCalDCSv2")) calver = 2;
977
978   if      (calver == 1) {
979
980     // No data for old DCS object available, anyway
981     return -1;
982
983   } 
984   else if (calver == 2) {
985
986     // DCSv2 object
987     const AliTRDCalDCSv2 *calDCSv2 = dynamic_cast<const AliTRDCalDCSv2 *>(dcsArr->At(esor));
988     if(!calDCSv2){
989       return -1;
990     }
991
992     TString tableName = "";
993     for (Int_t i = 0; i < 540; i++) {
994       const AliTRDCalDCSFEEv2 *calDCSFEEv2 = calDCSv2->GetCalDCSFEEObj(0);
995       tableName = calDCSFEEv2->GetGainTableName();
996       if (tableName.Length() > 0) {
997         break;
998       }
999     }
1000     if (tableName.CompareTo("Krypton_2011-01")               == 0) {
1001       fOnlineGainTableID = 1;
1002       return fOnlineGainTableID;
1003     }
1004     if (tableName.CompareTo("Gaintbl_Uniform_FGAN0_2011-01") == 0) {
1005       fOnlineGainTableID = 2;
1006       return fOnlineGainTableID;
1007     }
1008     if (tableName.CompareTo("Gaintbl_Uniform_FGAN8_2011-01") == 0) {
1009       fOnlineGainTableID = 3;
1010       return fOnlineGainTableID;
1011     }
1012     if (tableName.CompareTo("Krypton_2011-02")               == 0) {
1013       fOnlineGainTableID = 4;
1014       return fOnlineGainTableID;
1015     }
1016     if (tableName.CompareTo("Krypton_2011-03")               == 0) {
1017       fOnlineGainTableID = 5;
1018       return fOnlineGainTableID;
1019     }
1020     if (tableName.CompareTo("Gaintbl_Uniform_FGAN0_2012-01") == 0) {
1021       fOnlineGainTableID = 6;
1022       return fOnlineGainTableID;
1023     }
1024     if (tableName.CompareTo("Gaintbl_Uniform_FGAN8_2012-01") == 0) {
1025       fOnlineGainTableID = 7;
1026       return fOnlineGainTableID;
1027     }
1028
1029   } 
1030   else {
1031
1032     AliError("NO DCS/DCSv2 OCDB entry found!");
1033     return -1;
1034
1035   }
1036
1037   return -1;
1038
1039 }
1040
1041 //_____________________________________________________________________________
1042 void AliTRDcalibDB::GetGlobalConfiguration(TString &config)
1043 {
1044   //
1045   // Get Configuration from the DCS
1046   //
1047
1048   const TObjArray *dcsArr = dynamic_cast<const TObjArray *>(GetCachedCDBObject(kIDDCS));
1049   if(!dcsArr){
1050     AliError("No DCS CDB Object available!");
1051     config = "";
1052     return;
1053   }
1054
1055   Int_t idSOR = 0, idEOR=1; // The index of SOR and EOR
1056   Bool_t hasSOR = (dcsArr->At(idSOR));
1057   Bool_t hasEOR = (dcsArr->At(idEOR));
1058   TString cfgSOR = "", cfgEOR = ""; // The configuration at SOR/EOR
1059
1060   // The SOR object is mandatory
1061   if (!hasSOR) {
1062     AliError("NO SOR object found in CDB file!");
1063     config = "";
1064     return;
1065   }
1066   if (!hasEOR) AliWarning("NO EOR object found in CDB file!");
1067
1068   // Check CalDCS version
1069   Int_t calver = 0;
1070   if (!strcmp(dcsArr->At(idSOR)->ClassName(),"AliTRDCalDCS")) calver = 1;
1071   else if (!strcmp(dcsArr->At(idSOR)->ClassName(),"AliTRDCalDCSv2")) calver = 2;
1072
1073   // Get the configuration strings
1074   if (calver == 1) {
1075     // DCS object
1076     const AliTRDCalDCS *calSOR = dynamic_cast<const AliTRDCalDCS *>(dcsArr->At(idSOR));
1077     cfgSOR = calSOR->GetGlobalConfigName();
1078     if (hasEOR) {
1079       const AliTRDCalDCS *calEOR = dynamic_cast<const AliTRDCalDCS *>(dcsArr->At(idEOR));
1080       cfgEOR = calEOR->GetGlobalConfigName();
1081     }
1082   } 
1083   else if (calver == 2) {
1084     // DCSv2 object
1085     const AliTRDCalDCSv2 *calv2SOR = dynamic_cast<const AliTRDCalDCSv2 *>(dcsArr->At(idSOR));
1086     cfgSOR = calv2SOR->GetGlobalConfigName();
1087     if (hasEOR) {
1088       const AliTRDCalDCSv2 *calv2EOR = dynamic_cast<const AliTRDCalDCSv2 *>(dcsArr->At(idEOR));
1089       cfgEOR = calv2EOR->GetGlobalConfigName();
1090     }
1091   } 
1092   else {
1093     AliError("NO DCS/DCSv2 OCDB entry found!");
1094     config = "";
1095     return;
1096   }
1097
1098   // If there is no EOR entry, return the SOR value
1099   if (!hasEOR || cfgEOR.Length()==0) {
1100     config = cfgSOR;
1101     return;
1102   }
1103
1104   // Check if the configuration is the same for both
1105   if (cfgSOR.EqualTo(cfgEOR)) {
1106     config = cfgSOR;
1107     return;
1108   }
1109
1110   // When both SOR and EOR have an entry but are different, the config is not defined
1111   AliError("Inconsistent configuration at start and end of run found!");
1112   config = "";
1113   return;
1114
1115 }
1116
1117 //_____________________________________________________________________________
1118 void AliTRDcalibDB::GetGlobalConfigurationVersion(TString &version)
1119 {
1120   //
1121   // Get Version of Configuration from the DCS
1122   //
1123
1124   const TObjArray *dcsArr = dynamic_cast<const TObjArray *>(GetCachedCDBObject(kIDDCS));
1125   if(!dcsArr){
1126     version = "";
1127     return;
1128   }
1129
1130   Int_t esor   = 0; // Take SOR
1131   Int_t calver = 0; // Check CalDCS version
1132   if (!strcmp(dcsArr->At(0)->ClassName(),"AliTRDCalDCS"))   calver = 1;
1133   if (!strcmp(dcsArr->At(0)->ClassName(),"AliTRDCalDCSv2")) calver = 2;
1134
1135   if      (calver == 1) {
1136
1137     // DCS object
1138     const AliTRDCalDCS   *calDCS   = dynamic_cast<const AliTRDCalDCS *>(dcsArr->At(esor));
1139     if(!calDCS){
1140       version = "";
1141       return;
1142     } 
1143     version = calDCS->GetGlobalConfigVersion();
1144
1145   } 
1146   else if (calver == 2) {
1147
1148     // DCSv2 object
1149     const AliTRDCalDCSv2 *calDCSv2 = dynamic_cast<const AliTRDCalDCSv2 *>(dcsArr->At(esor));
1150     if(!calDCSv2){
1151       version = "";
1152       return;
1153     } 
1154     version = calDCSv2->GetGlobalConfigVersion();
1155
1156   } 
1157   else {
1158
1159     AliError("NO DCS/DCSv2 OCDB entry found!");
1160
1161   }
1162
1163 }
1164
1165 //_____________________________________________________________________________
1166 void AliTRDcalibDB::GetDCSConfigParOption(Int_t cfgType, Int_t option, TString &cfgo)
1167 {
1168   //
1169   // Get a configuration (see enum in header file) or the options of a configuration
1170   // option == 0 returns the configuration itself
1171   // option >  0 returns the optional parameter Nr. (option) of the configuration (cfgType)
1172   //
1173
1174   // define the delimiters
1175   TString cdelim = "_";
1176   TString odelim = "-";
1177
1178   // get the full configuration name
1179   TString cname;
1180   GetGlobalConfiguration(cname);
1181   TObjArray *carr = cname.Tokenize(cdelim);
1182   Int_t nconfig = carr->GetEntries();
1183
1184   // protect
1185   if (nconfig == 0) {
1186     AliError("Bad DCS configuration name!");
1187     cfgo = "";
1188     return;
1189   } else if ((nconfig-1) < cfgType) {
1190     AliError("Not enough DCS configuration parameters!");
1191     cfgo = "";
1192     return;
1193   }
1194
1195   TString fullcfg = ((TObjString*)carr->At(cfgType))->GetString();
1196
1197   if (fullcfg.Contains(odelim)) {
1198
1199     TObjArray *oarr = fullcfg.Tokenize(odelim);
1200     Int_t noptions = oarr->GetEntries();
1201
1202     // protect
1203     if ((noptions-1) < option) {
1204       AliError("Not enough DCS configuration options defined!");
1205       cfgo = "";
1206       return;
1207     }
1208
1209     cfgo = ((TObjString*)oarr->At(option))->GetString();
1210     return;
1211
1212   }
1213   else {
1214
1215     if (option != 0) {
1216       AliError("Not enough DCS configuration options defined!");
1217       cfgo = "";
1218       return;
1219     }
1220     cfgo = fullcfg;
1221     return;
1222
1223   }
1224
1225 }
1226
1227 //_____________________________________________________________________________
1228 Bool_t AliTRDcalibDB::HasOnlineFilterPedestal()
1229 {
1230   //
1231   // Checks whether pedestal filter was applied online
1232   //
1233
1234   TString filterconfig;
1235   GetFilterType(filterconfig);
1236
1237   return filterconfig.Contains("p");
1238
1239 }
1240
1241 //_____________________________________________________________________________
1242 Bool_t AliTRDcalibDB::HasOnlineFilterGain()
1243 {
1244   //
1245   // Checks whether online gain filter was applied
1246   //
1247
1248   TString filterconfig;
1249   GetFilterType(filterconfig);
1250
1251   return filterconfig.Contains("g");
1252
1253 }
1254
1255 //_____________________________________________________________________________
1256 Bool_t AliTRDcalibDB::HasOnlineTailCancellation()
1257 {
1258   //
1259   // Checks whether online tail cancellation was applied
1260   //
1261
1262   TString filterconfig;
1263   GetFilterType(filterconfig);
1264
1265   return filterconfig.Contains("t");
1266
1267 }
1268
1269 //_____________________________________________________________________________
1270 Char_t AliTRDcalibDB::GetPadStatus(Int_t det, Int_t col, Int_t row)
1271 {
1272   //
1273   // Returns the status of the given pad
1274   //
1275
1276   const AliTRDCalPadStatus *cal  = dynamic_cast<const AliTRDCalPadStatus *> 
1277                                    (GetCachedCDBObject(kIDPadStatus));
1278   if (!cal) {
1279     return -1;
1280   }
1281
1282   const AliTRDCalSingleChamberStatus *roc = cal->GetCalROC(det);
1283   if (!roc) {
1284     return -1;
1285   }
1286
1287   return roc->GetStatus(col,row);
1288
1289 }
1290
1291 //_____________________________________________________________________________
1292 AliTRDCalSingleChamberStatus* AliTRDcalibDB::GetPadStatusROC(Int_t det)
1293 {
1294   //
1295   // Returns the pad status calibration object for a given ROC
1296   //
1297
1298   const AliTRDCalPadStatus *cal  = dynamic_cast<const AliTRDCalPadStatus *> 
1299                                    (GetCachedCDBObject(kIDPadStatus));
1300   if (!cal) {
1301     return 0;
1302   }
1303
1304   AliTRDCalSingleChamberStatus *roc = cal->GetCalROC(det);
1305   if (!roc) {
1306     return 0;
1307   }
1308   else {
1309     return roc;
1310   }
1311
1312 }
1313
1314 //_____________________________________________________________________________
1315 Char_t AliTRDcalibDB::GetChamberStatus(Int_t det)
1316 {
1317   //
1318   // Returns the status of the given chamber
1319   //
1320
1321   const AliTRDCalChamberStatus *cal = dynamic_cast<const AliTRDCalChamberStatus *> 
1322                                       (GetCachedCDBObject(kIDChamberStatus));
1323   if (!cal) {
1324     return -1;
1325   }
1326
1327   return cal->GetStatus(det);
1328
1329 }
1330
1331 //_____________________________________________________________________________
1332 AliTRDrecoParam* AliTRDcalibDB::GetRecoParam(Int_t */*eventtype*/)
1333 {
1334   //
1335   // Returns the TRD reconstruction parameters from the OCDB
1336   //
1337
1338   const TClonesArray *recos = dynamic_cast<const TClonesArray*>(GetCachedCDBObject(kIDRecoParam));
1339   if (!recos) return 0x0;
1340
1341   // calculate entry based on event type info
1342   Int_t n = 0; //f(eventtype[0], eventtype[1], ....)
1343
1344   return (AliTRDrecoParam *) recos->UncheckedAt(n);
1345
1346 }
1347
1348 //_____________________________________________________________________________
1349 Bool_t AliTRDcalibDB::IsPadMasked(Int_t det, Int_t col, Int_t row)
1350 {
1351   //
1352   // Returns status, see name of functions for details ;-)
1353   //
1354
1355   const AliTRDCalPadStatus         *cal = dynamic_cast<const AliTRDCalPadStatus *> 
1356                                           (GetCachedCDBObject(kIDPadStatus));
1357   if (!cal) {
1358     return -1;
1359   }
1360
1361   return cal->IsMasked(det,col,row);
1362
1363 }
1364
1365 //_____________________________________________________________________________
1366 Bool_t AliTRDcalibDB::IsPadBridgedLeft(Int_t det, Int_t col, Int_t row)
1367 {
1368   //
1369   // Returns status, see name of functions for details ;-)
1370   //
1371
1372   const AliTRDCalPadStatus         *cal = dynamic_cast<const AliTRDCalPadStatus *> 
1373                                           (GetCachedCDBObject(kIDPadStatus));
1374   if (!cal) {
1375     return -1;
1376   }
1377
1378   return cal->IsBridgedLeft(det,col,row);
1379
1380 }
1381
1382 //_____________________________________________________________________________
1383 Bool_t AliTRDcalibDB::IsPadBridgedRight(Int_t det, Int_t col, Int_t row)
1384 {
1385   //
1386   // Returns status, see name of functions for details ;-)
1387   //
1388
1389   const AliTRDCalPadStatus         * cal = dynamic_cast<const AliTRDCalPadStatus *> 
1390                                            (GetCachedCDBObject(kIDPadStatus));
1391   if (!cal) {
1392     return -1;
1393   }
1394
1395   return cal->IsBridgedRight(det,col,row);
1396
1397 }
1398
1399 //_____________________________________________________________________________
1400 Bool_t AliTRDcalibDB::IsPadNotConnected(Int_t det, Int_t col, Int_t row)
1401 {
1402   //
1403   // Returns status, see name of functions for details ;-)
1404   //
1405
1406   const AliTRDCalPadStatus         * cal = dynamic_cast<const AliTRDCalPadStatus *> 
1407                                            (GetCachedCDBObject(kIDPadStatus));
1408   if (!cal) {
1409     return -1;
1410   }
1411
1412   return cal->IsNotConnected(det,col,row);
1413
1414 }
1415
1416 //_____________________________________________________________________________
1417 Bool_t AliTRDcalibDB::IsChamberGood(Int_t det)
1418 {
1419   //
1420   // Returns status, see name of functions for details ;-)
1421   //
1422
1423   const AliTRDCalChamberStatus     * cal = dynamic_cast<const AliTRDCalChamberStatus *> 
1424                                            (GetCachedCDBObject(kIDChamberStatus));
1425   if (!cal) {
1426     return -1;
1427   }
1428
1429   return cal->IsGood(det);
1430
1431 }
1432
1433 //_____________________________________________________________________________
1434 Bool_t AliTRDcalibDB::IsChamberNoData(Int_t det)
1435 {
1436   //
1437   // Returns status, see name of functions for details ;-)
1438   //
1439
1440   const AliTRDCalChamberStatus     * cal = dynamic_cast<const AliTRDCalChamberStatus *> 
1441                                            (GetCachedCDBObject(kIDChamberStatus));
1442   if (!cal) {
1443     return -1;
1444   }
1445
1446   return cal->IsNoData(det);
1447
1448 }
1449
1450 //_____________________________________________________________________________
1451 Bool_t AliTRDcalibDB::IsHalfChamberNoData(Int_t det, Int_t side)
1452 {
1453   //
1454   // Returns status, see name of functions for details ;-)
1455   //
1456
1457   const AliTRDCalChamberStatus     * cal = dynamic_cast<const AliTRDCalChamberStatus *> 
1458                                            (GetCachedCDBObject(kIDChamberStatus));
1459   if (!cal) {
1460     return -1;
1461   }
1462
1463   return side > 0 ? cal->IsNoDataSideB(det) : cal->IsNoDataSideA(det);
1464
1465 }
1466
1467 //_____________________________________________________________________________
1468 Bool_t AliTRDcalibDB::IsChamberBadCalibrated(Int_t det)
1469 {
1470   //
1471   // Returns status, see name of functions for details ;-)
1472   //
1473
1474   const AliTRDCalChamberStatus     * cal = dynamic_cast<const AliTRDCalChamberStatus *> 
1475                                            (GetCachedCDBObject(kIDChamberStatus));
1476   if (!cal) {
1477     return -1;
1478   }
1479
1480   return cal->IsBadCalibrated(det);
1481
1482 }
1483
1484 //_____________________________________________________________________________
1485 const AliTRDCalPID *AliTRDcalibDB::GetPIDObject(AliTRDpidUtil::ETRDPIDMethod method)
1486 {
1487   //
1488   // Returns the object storing the distributions for PID with likelihood
1489   //
1490
1491   switch(method) {
1492   case AliTRDpidUtil::kLQ: 
1493     return dynamic_cast<const AliTRDCalPID *>(GetCachedCDBObject(kIDPIDLQ));
1494   case AliTRDpidUtil::kNN: 
1495     return dynamic_cast<const AliTRDCalPID *>(GetCachedCDBObject(kIDPIDNN));
1496   case AliTRDpidUtil::kESD:
1497     return 0x0; // To avoid compiler warnings 
1498   }
1499
1500   return 0x0;
1501
1502 }
1503
1504 //_____________________________________________________________________________
1505 AliTRDPIDResponse *AliTRDcalibDB::GetPIDResponse(AliTRDPIDResponse::ETRDPIDMethod method)
1506 {
1507   //
1508   // Returns the PID response object for 1D-LQ
1509   //
1510
1511   if (!fPIDResponse) {
1512
1513     fPIDResponse = new AliTRDPIDResponse;
1514
1515     // Load Reference Histos from OCDB
1516     fPIDResponse->SetPIDmethod(method);
1517     const TObjArray *references = dynamic_cast<const TObjArray *>(GetCachedCDBObject(kIDPIDLQ1D));
1518
1519     TIter refs(references);
1520     TObject *obj = NULL;
1521     AliTRDPIDReference *ref = NULL;
1522     Bool_t hasReference = kFALSE;
1523     while ((obj = refs())){
1524       if ((ref = dynamic_cast<AliTRDPIDReference *>(obj))){
1525         fPIDResponse->Load(ref);
1526         hasReference = kTRUE;
1527         break;
1528       }
1529     }
1530
1531     if (!hasReference) {
1532       AliError("Reference histograms not found in the OCDB");
1533     }
1534
1535   }
1536
1537   return fPIDResponse;
1538
1539 }
1540
1541 //_____________________________________________________________________________
1542 const AliTRDCalTrkAttach* AliTRDcalibDB::GetAttachObject()
1543 {
1544   //
1545   // Returns the object storing likelihood distributions for cluster to track attachment
1546   //
1547
1548   return dynamic_cast<const AliTRDCalTrkAttach*>(GetCachedCDBObject(kIDAttach));
1549
1550 }
1551
1552 //_____________________________________________________________________________
1553 const AliTRDCalMonitoring *AliTRDcalibDB::GetMonitoringObject()
1554 {
1555   //
1556   // Returns the object storing the monitoring data
1557   //
1558
1559   return dynamic_cast<const AliTRDCalMonitoring *> 
1560          (GetCachedCDBObject(kIDMonitoringData));
1561    
1562 }
1563
1564 //_____________________________________________________________________________
1565 void AliTRDcalibDB::SamplePRF()
1566 {
1567   //
1568   // Samples the pad response function (should maybe go somewhere else ...)
1569   //
1570
1571   const Int_t kPRFbin = 61;
1572
1573   Float_t prf[kNlayer][kPRFbin] = { 
1574                    {2.9037e-02, 3.3608e-02, 3.9020e-02, 4.5292e-02,
1575                     5.2694e-02, 6.1362e-02, 7.1461e-02, 8.3362e-02,
1576                     9.7063e-02, 1.1307e-01, 1.3140e-01, 1.5235e-01,
1577                     1.7623e-01, 2.0290e-01, 2.3294e-01, 2.6586e-01,
1578                     3.0177e-01, 3.4028e-01, 3.8077e-01, 4.2267e-01,
1579                     4.6493e-01, 5.0657e-01, 5.4655e-01, 5.8397e-01,
1580                     6.1767e-01, 6.4744e-01, 6.7212e-01, 6.9188e-01,
1581                     7.0627e-01, 7.1499e-01, 7.1851e-01, 7.1499e-01,
1582                     7.0627e-01, 6.9188e-01, 6.7212e-01, 6.4744e-01,
1583                     6.1767e-01, 5.8397e-01, 5.4655e-01, 5.0657e-01,
1584                     4.6493e-01, 4.2267e-01, 3.8077e-01, 3.4028e-01,
1585                     3.0177e-01, 2.6586e-01, 2.3294e-01, 2.0290e-01,
1586                     1.7623e-01, 1.5235e-01, 1.3140e-01, 1.1307e-01,
1587                     9.7063e-02, 8.3362e-02, 7.1461e-02, 6.1362e-02,
1588                     5.2694e-02, 4.5292e-02, 3.9020e-02, 3.3608e-02,
1589                     2.9037e-02},
1590                    {2.5478e-02, 2.9695e-02, 3.4655e-02, 4.0454e-02,
1591                     4.7342e-02, 5.5487e-02, 6.5038e-02, 7.6378e-02,
1592                     8.9696e-02, 1.0516e-01, 1.2327e-01, 1.4415e-01,
1593                     1.6794e-01, 1.9516e-01, 2.2573e-01, 2.5959e-01,
1594                     2.9694e-01, 3.3719e-01, 3.7978e-01, 4.2407e-01,
1595                     4.6889e-01, 5.1322e-01, 5.5569e-01, 5.9535e-01,
1596                     6.3141e-01, 6.6259e-01, 6.8882e-01, 7.0983e-01,
1597                     7.2471e-01, 7.3398e-01, 7.3761e-01, 7.3398e-01,
1598                     7.2471e-01, 7.0983e-01, 6.8882e-01, 6.6259e-01,
1599                     6.3141e-01, 5.9535e-01, 5.5569e-01, 5.1322e-01,
1600                     4.6889e-01, 4.2407e-01, 3.7978e-01, 3.3719e-01,
1601                     2.9694e-01, 2.5959e-01, 2.2573e-01, 1.9516e-01,
1602                     1.6794e-01, 1.4415e-01, 1.2327e-01, 1.0516e-01,
1603                     8.9696e-02, 7.6378e-02, 6.5038e-02, 5.5487e-02,
1604                     4.7342e-02, 4.0454e-02, 3.4655e-02, 2.9695e-02,
1605                     2.5478e-02},
1606                    {2.2363e-02, 2.6233e-02, 3.0782e-02, 3.6140e-02,
1607                     4.2535e-02, 5.0157e-02, 5.9197e-02, 6.9900e-02,
1608                     8.2707e-02, 9.7811e-02, 1.1548e-01, 1.3601e-01,
1609                     1.5998e-01, 1.8739e-01, 2.1840e-01, 2.5318e-01,
1610                     2.9182e-01, 3.3373e-01, 3.7837e-01, 4.2498e-01,
1611                     4.7235e-01, 5.1918e-01, 5.6426e-01, 6.0621e-01,
1612                     6.4399e-01, 6.7700e-01, 7.0472e-01, 7.2637e-01,
1613                     7.4206e-01, 7.5179e-01, 7.5551e-01, 7.5179e-01,
1614                     7.4206e-01, 7.2637e-01, 7.0472e-01, 6.7700e-01,
1615                     6.4399e-01, 6.0621e-01, 5.6426e-01, 5.1918e-01,
1616                     4.7235e-01, 4.2498e-01, 3.7837e-01, 3.3373e-01,
1617                     2.9182e-01, 2.5318e-01, 2.1840e-01, 1.8739e-01,
1618                     1.5998e-01, 1.3601e-01, 1.1548e-01, 9.7811e-02,
1619                     8.2707e-02, 6.9900e-02, 5.9197e-02, 5.0157e-02,
1620                     4.2535e-02, 3.6140e-02, 3.0782e-02, 2.6233e-02,
1621                     2.2363e-02},
1622                    {1.9635e-02, 2.3167e-02, 2.7343e-02, 3.2293e-02,
1623                     3.8224e-02, 4.5335e-02, 5.3849e-02, 6.4039e-02,
1624                     7.6210e-02, 9.0739e-02, 1.0805e-01, 1.2841e-01,
1625                     1.5216e-01, 1.7960e-01, 2.1099e-01, 2.4671e-01,
1626                     2.8647e-01, 3.2996e-01, 3.7660e-01, 4.2547e-01,
1627                     4.7536e-01, 5.2473e-01, 5.7215e-01, 6.1632e-01,
1628                     6.5616e-01, 6.9075e-01, 7.1939e-01, 7.4199e-01,
1629                     7.5838e-01, 7.6848e-01, 7.7227e-01, 7.6848e-01,
1630                     7.5838e-01, 7.4199e-01, 7.1939e-01, 6.9075e-01,
1631                     6.5616e-01, 6.1632e-01, 5.7215e-01, 5.2473e-01,
1632                     4.7536e-01, 4.2547e-01, 3.7660e-01, 3.2996e-01,
1633                     2.8647e-01, 2.4671e-01, 2.1099e-01, 1.7960e-01,
1634                     1.5216e-01, 1.2841e-01, 1.0805e-01, 9.0739e-02,
1635                     7.6210e-02, 6.4039e-02, 5.3849e-02, 4.5335e-02,
1636                     3.8224e-02, 3.2293e-02, 2.7343e-02, 2.3167e-02,
1637                     1.9635e-02},
1638                    {1.7224e-02, 2.0450e-02, 2.4286e-02, 2.8860e-02,
1639                     3.4357e-02, 4.0979e-02, 4.8966e-02, 5.8612e-02,
1640                     7.0253e-02, 8.4257e-02, 1.0102e-01, 1.2094e-01,
1641                     1.4442e-01, 1.7196e-01, 2.0381e-01, 2.4013e-01,
1642                     2.8093e-01, 3.2594e-01, 3.7450e-01, 4.2563e-01,
1643                     4.7796e-01, 5.2991e-01, 5.7974e-01, 6.2599e-01,
1644                     6.6750e-01, 7.0344e-01, 7.3329e-01, 7.5676e-01,
1645                     7.7371e-01, 7.8410e-01, 7.8793e-01, 7.8410e-01,
1646                     7.7371e-01, 7.5676e-01, 7.3329e-01, 7.0344e-01,
1647                     6.6750e-01, 6.2599e-01, 5.7974e-01, 5.2991e-01,
1648                     4.7796e-01, 4.2563e-01, 3.7450e-01, 3.2594e-01,
1649                     2.8093e-01, 2.4013e-01, 2.0381e-01, 1.7196e-01,
1650                     1.4442e-01, 1.2094e-01, 1.0102e-01, 8.4257e-02,
1651                     7.0253e-02, 5.8612e-02, 4.8966e-02, 4.0979e-02,
1652                     3.4357e-02, 2.8860e-02, 2.4286e-02, 2.0450e-02,
1653                     1.7224e-02},
1654                    {1.5096e-02, 1.8041e-02, 2.1566e-02, 2.5793e-02,
1655                     3.0886e-02, 3.7044e-02, 4.4515e-02, 5.3604e-02,
1656                     6.4668e-02, 7.8109e-02, 9.4364e-02, 1.1389e-01,
1657                     1.3716e-01, 1.6461e-01, 1.9663e-01, 2.3350e-01,
1658                     2.7527e-01, 3.2170e-01, 3.7214e-01, 4.2549e-01,
1659                     4.8024e-01, 5.3460e-01, 5.8677e-01, 6.3512e-01,
1660                     6.7838e-01, 7.1569e-01, 7.4655e-01, 7.7071e-01,
1661                     7.8810e-01, 7.9871e-01, 8.0255e-01, 7.9871e-01,
1662                     7.8810e-01, 7.7071e-01, 7.4655e-01, 7.1569e-01,
1663                     6.7838e-01, 6.3512e-01, 5.8677e-01, 5.3460e-01,
1664                     4.8024e-01, 4.2549e-01, 3.7214e-01, 3.2170e-01,
1665                     2.7527e-01, 2.3350e-01, 1.9663e-01, 1.6461e-01,
1666                     1.3716e-01, 1.1389e-01, 9.4364e-02, 7.8109e-02,
1667                     6.4668e-02, 5.3604e-02, 4.4515e-02, 3.7044e-02,
1668                     3.0886e-02, 2.5793e-02, 2.1566e-02, 1.8041e-02,
1669                     1.5096e-02}};
1670
1671   // More sampling precision with linear interpolation
1672   fPRFlo  = -1.5;
1673   fPRFhi  =  1.5;
1674   Float_t pad[kPRFbin];
1675   Int_t   sPRFbin = kPRFbin;  
1676   Float_t sPRFwid = (fPRFhi - fPRFlo) / ((Float_t) sPRFbin);
1677   for (Int_t iPad = 0; iPad < sPRFbin; iPad++) {
1678     pad[iPad] = ((Float_t) iPad + 0.5) * sPRFwid + fPRFlo;
1679   }
1680   fPRFbin = 500;  
1681   fPRFwid = (fPRFhi - fPRFlo) / ((Float_t) fPRFbin);
1682   fPRFpad = ((Int_t) (1.0 / fPRFwid));
1683
1684   if (fPRFsmp) delete [] fPRFsmp;
1685   fPRFsmp = new Float_t[kNlayer*fPRFbin];
1686
1687   Int_t   ipos1;
1688   Int_t   ipos2;
1689   Float_t diff;
1690
1691   for (Int_t iLayer = 0; iLayer < kNlayer; iLayer++) {
1692
1693     for (Int_t iBin = 0; iBin < fPRFbin; iBin++) {
1694
1695       Float_t bin = (((Float_t) iBin) + 0.5) * fPRFwid + fPRFlo;
1696       ipos1 = ipos2 = 0;
1697       diff  = 0;
1698       do {
1699         diff = bin - pad[ipos2++];
1700       } while ((diff > 0) && (ipos2 < kPRFbin));
1701       if      (ipos2 == kPRFbin) {
1702         fPRFsmp[iLayer*fPRFbin+iBin] = prf[iLayer][ipos2-1];
1703       }
1704       else if (ipos2 == 1) {
1705         fPRFsmp[iLayer*fPRFbin+iBin] = prf[iLayer][ipos2-1];
1706       }
1707       else {
1708         ipos2--;
1709         if (ipos2 >= kPRFbin) ipos2 = kPRFbin - 1;
1710         ipos1 = ipos2 - 1;
1711         fPRFsmp[iLayer*fPRFbin+iBin] = prf[iLayer][ipos2] 
1712                                      + diff * (prf[iLayer][ipos2] - prf[iLayer][ipos1]) 
1713                                      / sPRFwid;
1714       }
1715
1716     }
1717   } 
1718
1719 }
1720
1721 //_____________________________________________________________________________
1722 Int_t AliTRDcalibDB::PadResponse(Double_t signal, Double_t dist
1723                                , Int_t layer, Double_t *pad) const
1724 {
1725   //
1726   // Applies the pad response
1727   // So far this is the fixed parametrization and should be replaced by
1728   // something dependent on calibration values
1729   //
1730
1731   Int_t iBin  = ((Int_t) ((-dist - fPRFlo) / fPRFwid));
1732   Int_t iOff  = layer * fPRFbin;
1733
1734   Int_t iBin0 = iBin - fPRFpad + iOff;
1735   Int_t iBin1 = iBin           + iOff;
1736   Int_t iBin2 = iBin + fPRFpad + iOff;
1737
1738   pad[0] = 0.0;
1739   pad[1] = 0.0;
1740   pad[2] = 0.0;
1741   if ((iBin1 >= 0) && (iBin1 < (fPRFbin*kNlayer))) {
1742
1743     if (iBin0 >= 0) {
1744       pad[0] = signal * fPRFsmp[iBin0];
1745     }
1746     pad[1] = signal * fPRFsmp[iBin1];
1747     if (iBin2 < (fPRFbin*kNlayer)) {
1748       pad[2] = signal * fPRFsmp[iBin2];
1749     }
1750
1751     return 1;
1752
1753   }
1754   else {
1755
1756     return 0;
1757
1758   }
1759
1760 }
1761
1762
1763 AliTRDtrapConfig* AliTRDcalibDB::GetTrapConfig()
1764 {
1765   // return an existing TRAPconfig or load it from the OCDB
1766   // in case of failure, a default TRAPconfig is created
1767
1768   if (fTrapConfig)
1769     return fTrapConfig;
1770   else {
1771     if ((fTrapConfigName.Length() <= 0) || (fTrapConfigVersion.Length() <= 0)) {
1772       // query the configuration to be used
1773       TString configName;
1774       this->GetGlobalConfiguration(configName);
1775       TString configVersion;
1776       this->GetGlobalConfigurationVersion(configVersion);
1777     }
1778
1779     // try to load the requested configuration
1780     this->LoadTrapConfig(fTrapConfigName, fTrapConfigVersion);
1781
1782     // if we still don't have a valid TRAPconfig, create a default one
1783     if (!fTrapConfig) {
1784       AliWarning("Falling back to default configuration");
1785       fTrapConfig = new AliTRDtrapConfig("default", "default TRAP configuration");
1786       AliTRDtrapConfigHandler cfgHandler(fTrapConfig);
1787       cfgHandler.Init();
1788       cfgHandler.LoadConfig();
1789     }
1790
1791     AliInfo(Form("using TRAPconfig \"%s\"", fTrapConfig->GetTitle()));
1792
1793     return fTrapConfig;
1794   }
1795 }
1796
1797
1798 AliTRDtrapConfig* AliTRDcalibDB::LoadTrapConfig(const TString &name, const TString &version)
1799 {
1800   // try to load the specified configuration from the OCDB
1801   // if it fails, or it does not exist, return null
1802
1803   AliInfo(Form("looking for TRAPconfig \"%s.%s\"", name.Data(), version.Data()));
1804
1805   const AliTRDCalTrapConfig *caltrap = dynamic_cast<const AliTRDCalTrapConfig*> (GetCachedCDBObject(kIDTrapConfig));
1806
1807   if (caltrap) {
1808     TString configName(name);
1809     configName.Append(".");
1810     configName.Append(version);
1811     fTrapConfig = caltrap->Get(configName);
1812   }
1813   else {
1814     fTrapConfig = 0x0;
1815     AliError("No TRAPconfig entry found!");
1816   }
1817
1818   return fTrapConfig;
1819 }