]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDcalibDB.cxx
23aa5635f75ae2bea78f6bd057429b1fcfe731a1
[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 <TMath.h>
32 #include <TRandom.h>
33
34 #include "AliCDBManager.h"
35 #include "AliCDBStorage.h"
36 #include "AliCDBEntry.h"
37 #include "AliLog.h"
38
39 #include "AliTRDcalibDB.h"
40 #include "AliTRDgeometry.h"
41 #include "AliTRDpadPlane.h"
42 #include "AliTRDCommonParam.h"
43
44 #include "Cal/AliTRDCalROC.h"
45 #include "Cal/AliTRDCalPad.h"
46 #include "Cal/AliTRDCalDet.h"
47 #include "Cal/AliTRDCalGlobals.h"
48 #include "Cal/AliTRDCalPIDLQ.h"
49 #include "Cal/AliTRDCalMonitoring.h"
50 #include "Cal/AliTRDCalChamberStatus.h"
51 #include "Cal/AliTRDCalPadStatus.h"
52 #include "Cal/AliTRDCalSingleChamberStatus.h"
53
54 ClassImp(AliTRDcalibDB)
55
56 AliTRDcalibDB *AliTRDcalibDB::fgInstance   = 0;
57 Bool_t         AliTRDcalibDB::fgTerminated = kFALSE;
58
59 //_ singleton implementation __________________________________________________
60 AliTRDcalibDB* AliTRDcalibDB::Instance()
61 {
62   //
63   // Singleton implementation
64   // Returns an instance of this class, it is created if neccessary
65   //
66   
67   if (fgTerminated != kFALSE) {
68     return 0;
69   }
70
71   if (fgInstance == 0) {
72     fgInstance = new AliTRDcalibDB();
73   }
74
75   return fgInstance;
76
77 }
78
79 //_____________________________________________________________________________
80 void AliTRDcalibDB::Terminate()
81 {
82   //
83   // Singleton implementation
84   // Deletes the instance of this class and sets the terminated flag,
85   // instances cannot be requested anymore
86   // This function can be called several times.
87   //
88   
89   fgTerminated = kTRUE;
90   
91   if (fgInstance != 0) {
92     delete fgInstance;
93     fgInstance = 0;
94   }
95
96 }
97
98 //_____________________________________________________________________________
99 AliTRDcalibDB::AliTRDcalibDB()
100   :TObject()
101   ,fRun(-1)
102   ,fPRFsmp(0)
103   ,fPRFbin(0)
104   ,fPRFlo(0)
105   ,fPRFhi(0)
106   ,fPRFwid(0)
107   ,fPRFpad(0)
108 {
109   //
110   // Default constructor
111   //
112   // TODO Default runnumber is set to 0, this should be changed later
113   //      to an invalid value (e.g. -1) to prevent
114   // TODO invalid calibration data to be used.
115   //
116
117   for (Int_t i = 0; i < kCDBCacheSize; ++i) {
118     fCDBCache[i]   = 0;
119     fCDBEntries[i] = 0;
120   }
121   
122   // Create the sampled PRF
123   SamplePRF();
124   
125 }
126
127 //_____________________________________________________________________________
128 AliTRDcalibDB::AliTRDcalibDB(const AliTRDcalibDB &c)
129   :TObject(c)
130   ,fRun(-1)
131   ,fPRFsmp(0)
132   ,fPRFbin(0)
133   ,fPRFlo(0)
134   ,fPRFhi(0)
135   ,fPRFwid(0)
136   ,fPRFpad(0)
137 {
138   //
139   // Copy constructor (not that it make any sense for a singleton...)
140   //
141
142   for (Int_t i = 0; i < kCDBCacheSize; ++i) {
143     fCDBCache[i]   = 0;
144     fCDBEntries[i] = 0;
145   }
146   
147   // Create the sampled PRF
148   SamplePRF();
149
150 }
151
152 //_____________________________________________________________________________
153 AliTRDcalibDB &AliTRDcalibDB::operator=(const AliTRDcalibDB &c) 
154 {
155   //
156   // Assignment operator (same as above ...)
157   //
158
159   if (this != &c) {
160     AliFatal("No assignment operator defined");
161   }
162
163   return *this;
164
165 }
166
167 //_____________________________________________________________________________
168 AliTRDcalibDB::~AliTRDcalibDB() 
169 {
170   //
171   // destructor
172   //
173   
174   if (fPRFsmp) {
175     delete [] fPRFsmp;
176     fPRFsmp = 0;
177   }
178
179   Invalidate();
180
181 }
182
183 //_caching functions____________________________________________________________
184 const TObject *AliTRDcalibDB::GetCachedCDBObject(Int_t id)
185 {
186   //
187   // Retrieves a cdb object with the given id. The objects are cached as
188   // long as the run number is not changed.
189   //
190   // Put together the available objects here by using the lines
191   //   a) For usual calibration objects:
192   //      case kID<Name> : 
193   //        return CacheCDBEntry(kID<Name>,"TRD/Calib/<Path>"); 
194   //        break;
195   //      See function CacheCDBEntry for details.
196   //   and
197   //   b) For calibration data which depends on two objects: One containing 
198   //      a value per detector and one the local fluctuations per pad:
199   //      case kID<Name> :
200   //        return CacheMergeCDBEntry(kID<Name>,"TRD/Calib/<padPath>","TRD/Calib/<chamberPath>"); 
201   //        break;
202   //      See function CacheMergeCDBEntry for details.
203   //
204     
205   switch (id) {
206
207     // Parameters defined per pad and chamber
208     case kIDVdriftPad : 
209       return CacheCDBEntry(kIDVdriftPad         ,"TRD/Calib/LocalVdrift"); 
210       break;
211     case kIDVdriftChamber : 
212       return CacheCDBEntry(kIDVdriftChamber     ,"TRD/Calib/ChamberVdrift"); 
213       break;
214     case kIDT0Pad : 
215       return CacheCDBEntry(kIDT0Pad             ,"TRD/Calib/LocalT0"); 
216       break;
217     case kIDT0Chamber : 
218       return CacheCDBEntry(kIDT0Chamber         ,"TRD/Calib/ChamberT0"); 
219       break;
220     case kIDGainFactorPad : 
221       return CacheCDBEntry(kIDGainFactorPad     ,"TRD/Calib/LocalGainFactor"); 
222       break;
223     case kIDGainFactorChamber : 
224       return CacheCDBEntry(kIDGainFactorChamber ,"TRD/Calib/ChamberGainFactor"); 
225       break;
226
227     // Parameters defined per pad
228     case kIDPRFWidth : 
229       return CacheCDBEntry(kIDPRFWidth          ,"TRD/Calib/PRFWidth"); 
230       break;
231
232     // Status values
233     case kIDChamberStatus : 
234       return CacheCDBEntry(kIDChamberStatus     ,"TRD/Calib/ChamberStatus"); 
235       break;
236     case kIDPadStatus : 
237       return CacheCDBEntry(kIDPadStatus         ,"TRD/Calib/PadStatus"); 
238       break;
239
240     // Global parameters
241     case kIDMonitoringData : 
242       return CacheCDBEntry(kIDMonitoringData    ,"TRD/Calib/MonitoringData"); 
243       break;
244     case kIDGlobals : 
245       return CacheCDBEntry(kIDGlobals           ,"TRD/Calib/Globals"); 
246       break;
247     case kIDPIDLQ : 
248       return CacheCDBEntry(kIDPIDLQ             ,"TRD/Calib/PIDLQ"); 
249       break;
250
251   }
252
253   return 0;
254
255 }
256
257 //_____________________________________________________________________________
258 AliCDBEntry *AliTRDcalibDB::GetCDBEntry(const char *cdbPath)
259 {
260   // 
261   // Retrieves an entry with path <cdbPath> from the CDB.
262   //
263     
264   AliCDBEntry *entry = AliCDBManager::Instance()->Get(cdbPath,fRun);
265   if (!entry) { 
266     AliError(Form("Failed to get entry: %s",cdbPath));
267     return 0; 
268   }
269   
270   return entry;
271
272 }
273
274 //_____________________________________________________________________________
275 const TObject *AliTRDcalibDB::CacheCDBEntry(Int_t id, const char *cdbPath)
276 {
277   //
278   // Caches the entry <id> with cdb path <cdbPath>
279   //
280   
281   if (!fCDBCache[id]) {
282     fCDBEntries[id] = GetCDBEntry(cdbPath);
283     if (fCDBEntries[id]) {
284       fCDBCache[id] = fCDBEntries[id]->GetObject();
285     }
286   }
287
288   return fCDBCache[id];
289
290 }
291
292 //_____________________________________________________________________________
293 void AliTRDcalibDB::SetRun(Long64_t run)
294 {
295   //
296   // Sets current run number. Calibration data is read from the corresponding file.
297   // When the run number changes the caching is invalidated.
298   //
299
300   if (fRun == run) {
301     return;
302   }
303
304   fRun = run;
305
306   Invalidate();
307
308 }
309
310 //_____________________________________________________________________________
311 void AliTRDcalibDB::Invalidate()
312 {
313   //
314   // Invalidates cache (when run number is changed).
315   //
316   
317   for (Int_t i = 0; i < kCDBCacheSize; ++i) {
318     if (fCDBEntries[i]) {
319       if (AliCDBManager::Instance()->GetCacheFlag() == kFALSE) {
320         if ((fCDBEntries[i]->IsOwner() == kFALSE) && 
321             (fCDBCache[i])) {
322           delete fCDBCache[i];
323         }
324         delete fCDBEntries[i];
325       }
326       fCDBEntries[i] = 0;
327       fCDBCache[i]   = 0;
328     }
329   }
330
331 }
332
333 //_____________________________________________________________________________
334 Float_t AliTRDcalibDB::GetVdrift(Int_t det, Int_t col, Int_t row)
335 {
336   //
337   // Returns the drift velocity for the given pad.
338   //
339
340   const AliTRDCalPad *calPad     = dynamic_cast<const AliTRDCalPad *> 
341                                    (GetCachedCDBObject(kIDVdriftPad));
342   if (!calPad) {
343     return -1;
344   }
345
346   AliTRDCalROC       *roc        = calPad->GetCalROC(det);
347   if (!roc) {
348     return -1;
349   }
350
351   const AliTRDCalDet *calChamber = dynamic_cast<const AliTRDCalDet *> 
352                                    (GetCachedCDBObject(kIDVdriftChamber));
353   if (!calChamber) {
354     return -1;
355   }
356
357   return calChamber->GetValue(det) * roc->GetValue(col,row);
358
359 }
360
361 //_____________________________________________________________________________
362 Float_t AliTRDcalibDB::GetVdriftAverage(Int_t det)
363 {
364   //
365   // Returns the average drift velocity for the given detector
366   //
367
368   const AliTRDCalDet *calDet     = dynamic_cast<const AliTRDCalDet *> 
369                                    (GetCachedCDBObject(kIDVdriftChamber));
370   if (!calDet) {
371     return -1;
372   }
373
374   return calDet->GetValue(det);
375
376 }
377
378 //_____________________________________________________________________________
379 Float_t AliTRDcalibDB::GetT0(Int_t det, Int_t col, Int_t row)
380 {
381   //
382   // Returns t0 for the given pad.
383   //
384   
385   const AliTRDCalGlobals *calGlobal  = dynamic_cast<const AliTRDCalGlobals *> 
386                                        (GetCachedCDBObject(kIDGlobals));
387   if (!calGlobal) {
388     return -1;
389   }
390
391   const AliTRDCalPad     *calPad     = dynamic_cast<const AliTRDCalPad *> 
392                                        (GetCachedCDBObject(kIDT0Pad));
393   if (!calPad) {
394     return -1;
395   }
396
397   AliTRDCalROC           *roc        = calPad->GetCalROC(det);
398   if (!roc) {
399     return -1;
400   }
401
402   const AliTRDCalDet     *calChamber = dynamic_cast<const AliTRDCalDet *> 
403                                        (GetCachedCDBObject(kIDT0Chamber));
404   if (!calChamber) {
405     return -1;
406   }
407
408   return calGlobal->GetT0Offset() 
409        + calChamber->GetValue(det) 
410        + roc->GetValue(col,row);
411
412 }
413
414 //_____________________________________________________________________________
415 Float_t AliTRDcalibDB::GetT0Average(Int_t det)
416 {
417   //
418   // Returns the average t0 for the given detector
419   //
420
421   const AliTRDCalDet *calDet     = dynamic_cast<const AliTRDCalDet *> 
422                                    (GetCachedCDBObject(kIDT0Chamber));
423   if (!calDet) {
424     return -1;
425   }
426
427   return calDet->GetValue(det);
428
429 }
430
431 //_____________________________________________________________________________
432 Float_t AliTRDcalibDB::GetGainFactor(Int_t det, Int_t col, Int_t row)
433 {
434   //
435   // Returns the gain factor for the given pad.
436   //
437   
438   const AliTRDCalPad *calPad     = dynamic_cast<const AliTRDCalPad *> 
439                                    (GetCachedCDBObject(kIDGainFactorPad));
440   if (!calPad) {
441     return -1;
442   }
443
444   AliTRDCalROC       *roc        = calPad->GetCalROC(det);
445   if (!roc)
446     return -1;
447
448   const AliTRDCalDet *calChamber = dynamic_cast<const AliTRDCalDet *> 
449                                    (GetCachedCDBObject(kIDGainFactorChamber));
450   if (!calChamber) {
451     return -1;
452   }
453
454   return calChamber->GetValue(det) * roc->GetValue(col,row);
455
456 }
457
458 //_____________________________________________________________________________
459 Float_t AliTRDcalibDB::GetGainFactorAverage(Int_t det)
460 {
461   //
462   // Returns the average gain factor for the given detector
463   //
464
465   const AliTRDCalDet *calDet     = dynamic_cast<const AliTRDCalDet *> 
466                                    (GetCachedCDBObject(kIDGainFactorChamber));
467   if (!calDet) {
468     return -1;
469   }
470
471   return calDet->GetValue(det);
472
473 }
474
475 //_____________________________________________________________________________
476 Float_t AliTRDcalibDB::GetPRFWidth(Int_t det, Int_t col, Int_t row)
477 {
478   //
479   // Returns the PRF width for the given pad.
480   //
481   
482   const AliTRDCalPad *calPad     = dynamic_cast<const AliTRDCalPad *> 
483                                    (GetCachedCDBObject(kIDPRFWidth));
484   if (!calPad) {
485     return -1;
486   }
487
488   AliTRDCalROC       *roc        = calPad->GetCalROC(det);
489   if (!roc) {
490     return -1;
491   }
492
493   return roc->GetValue(col,row);
494
495 }
496   
497 //_____________________________________________________________________________
498 Int_t AliTRDcalibDB::GetNumberOfTimeBins()
499 {
500   //
501   // Returns the number of time bins which are read-out.
502   //
503
504   const AliTRDCalGlobals *calGlobal = dynamic_cast<const AliTRDCalGlobals *> 
505                                       (GetCachedCDBObject(kIDGlobals));
506   if (!calGlobal) {
507     return -1;
508   }
509
510   return calGlobal->GetNumberOfTimeBins();
511
512 }
513
514 //_____________________________________________________________________________
515 Char_t AliTRDcalibDB::GetPadStatus(Int_t det, Int_t col, Int_t row)
516 {
517   //
518   // Returns the status of the given pad
519   //
520
521   const AliTRDCalPadStatus *cal     = dynamic_cast<const AliTRDCalPadStatus *> 
522                                       (GetCachedCDBObject(kIDPadStatus));
523   if (!cal) {
524     return -1;
525   }
526
527   const AliTRDCalSingleChamberStatus *roc = cal->GetCalROC(det);
528   if (!roc) {
529     return -1;
530   }
531
532   return roc->GetStatus(col,row);
533
534 }
535
536 //_____________________________________________________________________________
537 Char_t AliTRDcalibDB::GetChamberStatus(Int_t det)
538 {
539   //
540   // Returns the status of the given chamber
541   //
542
543   const AliTRDCalChamberStatus *cal = dynamic_cast<const AliTRDCalChamberStatus *> 
544                                       (GetCachedCDBObject(kIDChamberStatus));
545   if (!cal) {
546     return -1;
547   }
548
549   return cal->GetStatus(det);
550
551 }
552
553 //_____________________________________________________________________________
554 Bool_t AliTRDcalibDB::IsPadMasked(Int_t det, Int_t col, Int_t row)
555 {
556   //
557   // Returns status, see name of functions for details ;-)
558   //
559
560   const AliTRDCalPadStatus         *cal = dynamic_cast<const AliTRDCalPadStatus *> 
561                                           (GetCachedCDBObject(kIDPadStatus));
562   if (!cal) {
563     return -1;
564   }
565
566   return cal->IsMasked(det,col,row);
567
568 }
569
570 //_____________________________________________________________________________
571 Bool_t AliTRDcalibDB::IsPadBridgedLeft(Int_t det, Int_t col, Int_t row)
572 {
573   //
574   // Returns status, see name of functions for details ;-)
575   //
576
577   const AliTRDCalPadStatus         *cal = dynamic_cast<const AliTRDCalPadStatus *> 
578                                           (GetCachedCDBObject(kIDPadStatus));
579   if (!cal) {
580     return -1;
581   }
582
583   return cal->IsBridgedLeft(det,col,row);
584
585 }
586
587 //_____________________________________________________________________________
588 Bool_t AliTRDcalibDB::IsPadBridgedRight(Int_t det, Int_t col, Int_t row)
589 {
590   //
591   // Returns status, see name of functions for details ;-)
592   //
593
594   const AliTRDCalPadStatus         * cal = dynamic_cast<const AliTRDCalPadStatus *> 
595                                            (GetCachedCDBObject(kIDPadStatus));
596   if (!cal) {
597     return -1;
598   }
599
600   return cal->IsBridgedRight(det,col,row);
601
602 }
603
604 //_____________________________________________________________________________
605 Bool_t AliTRDcalibDB::IsChamberInstalled(Int_t det)
606 {
607   //
608   // Returns status, see name of functions for details ;-)
609   //
610
611   const AliTRDCalChamberStatus     * cal = dynamic_cast<const AliTRDCalChamberStatus *> 
612                                            (GetCachedCDBObject(kIDChamberStatus));
613   if (!cal) {
614     return -1;
615   }
616
617   return cal->IsInstalled(det);
618
619 }
620
621 //_____________________________________________________________________________
622 Bool_t AliTRDcalibDB::IsChamberMasked(Int_t det)
623 {
624   //
625   // Returns status, see name of functions for details ;-)
626   //
627
628   const AliTRDCalChamberStatus     * cal = dynamic_cast<const AliTRDCalChamberStatus *> 
629                                            (GetCachedCDBObject(kIDChamberStatus));
630   if (!cal) {
631     return -1;
632   }
633
634   return cal->IsMasked(det);
635
636 }
637
638 //_____________________________________________________________________________
639 const AliTRDCalPIDLQ *AliTRDcalibDB::GetPIDLQObject()
640 {
641   //
642   // Returns the object storing the distributions for PID with likelihood
643   //
644
645   return dynamic_cast<const AliTRDCalPIDLQ *> 
646          (GetCachedCDBObject(kIDPIDLQ));
647
648 }
649
650 //_____________________________________________________________________________
651 const AliTRDCalMonitoring *AliTRDcalibDB::GetMonitoringObject()
652 {
653   //
654   // Returns the object storing the monitoring data
655   //
656
657   return dynamic_cast<const AliTRDCalMonitoring *> 
658          (GetCachedCDBObject(kIDMonitoringData));
659    
660 }
661
662 //_____________________________________________________________________________
663 Float_t AliTRDcalibDB::GetOmegaTau(Float_t vdrift, Float_t bz)
664 {
665   //
666   // Returns omega*tau (tan(Lorentz-angle)) for a given drift velocity <vdrift> 
667   // and a B-field <bz> for Xe/CO2 (15%).
668   // The values are according to a GARFIELD simulation.
669   //
670   // This function basically does not belong to the calibration class.
671   // It should be moved somewhere else. 
672   // However, currently it is in use by simulation and reconstruction.
673   //
674   
675   Float_t fieldAbs = TMath::Abs(bz);
676   Float_t fieldSgn = (bz > 0.0) ? 1.0 : -1.0;
677
678   const Int_t kNb = 5;
679   Float_t p0[kNb] = {  0.004810,  0.007412,  0.010252,  0.013409,  0.016888 };
680   Float_t p1[kNb] = {  0.054875,  0.081534,  0.107333,  0.131983,  0.155455 };
681   Float_t p2[kNb] = { -0.008682, -0.012896, -0.016987, -0.020880, -0.024623 };
682   Float_t p3[kNb] = {  0.000155,  0.000238,  0.000330,  0.000428,  0.000541 };
683
684   // No ExB if field is too small (or zero)
685   if (fieldAbs < 0.01) {
686
687     return 0.0;
688
689   }
690   // Calculate ExB from parametrization
691   else {
692
693     Int_t ib = ((Int_t) (10 * (fieldAbs - 0.15)));
694     ib       = TMath::Max(  0,ib);
695     ib       = TMath::Min(kNb,ib);
696
697     Float_t alphaL = p0[ib] 
698                    + p1[ib] * vdrift
699                    + p2[ib] * vdrift*vdrift
700                    + p3[ib] * vdrift*vdrift*vdrift;
701
702     return TMath::Tan(fieldSgn * alphaL);
703
704   }
705
706 }
707
708 //_____________________________________________________________________________
709 void AliTRDcalibDB::SamplePRF()
710 {
711   //
712   // Samples the pad response function (should maybe go somewhere else ...)
713   //
714
715   const Int_t kPRFbin = 61;
716
717   Float_t prf[kNplan][kPRFbin] = { 
718                    {2.9037e-02, 3.3608e-02, 3.9020e-02, 4.5292e-02,
719                     5.2694e-02, 6.1362e-02, 7.1461e-02, 8.3362e-02,
720                     9.7063e-02, 1.1307e-01, 1.3140e-01, 1.5235e-01,
721                     1.7623e-01, 2.0290e-01, 2.3294e-01, 2.6586e-01,
722                     3.0177e-01, 3.4028e-01, 3.8077e-01, 4.2267e-01,
723                     4.6493e-01, 5.0657e-01, 5.4655e-01, 5.8397e-01,
724                     6.1767e-01, 6.4744e-01, 6.7212e-01, 6.9188e-01,
725                     7.0627e-01, 7.1499e-01, 7.1851e-01, 7.1499e-01,
726                     7.0627e-01, 6.9188e-01, 6.7212e-01, 6.4744e-01,
727                     6.1767e-01, 5.8397e-01, 5.4655e-01, 5.0657e-01,
728                     4.6493e-01, 4.2267e-01, 3.8077e-01, 3.4028e-01,
729                     3.0177e-01, 2.6586e-01, 2.3294e-01, 2.0290e-01,
730                     1.7623e-01, 1.5235e-01, 1.3140e-01, 1.1307e-01,
731                     9.7063e-02, 8.3362e-02, 7.1461e-02, 6.1362e-02,
732                     5.2694e-02, 4.5292e-02, 3.9020e-02, 3.3608e-02,
733                     2.9037e-02},
734                    {2.5478e-02, 2.9695e-02, 3.4655e-02, 4.0454e-02,
735                     4.7342e-02, 5.5487e-02, 6.5038e-02, 7.6378e-02,
736                     8.9696e-02, 1.0516e-01, 1.2327e-01, 1.4415e-01,
737                     1.6794e-01, 1.9516e-01, 2.2573e-01, 2.5959e-01,
738                     2.9694e-01, 3.3719e-01, 3.7978e-01, 4.2407e-01,
739                     4.6889e-01, 5.1322e-01, 5.5569e-01, 5.9535e-01,
740                     6.3141e-01, 6.6259e-01, 6.8882e-01, 7.0983e-01,
741                     7.2471e-01, 7.3398e-01, 7.3761e-01, 7.3398e-01,
742                     7.2471e-01, 7.0983e-01, 6.8882e-01, 6.6259e-01,
743                     6.3141e-01, 5.9535e-01, 5.5569e-01, 5.1322e-01,
744                     4.6889e-01, 4.2407e-01, 3.7978e-01, 3.3719e-01,
745                     2.9694e-01, 2.5959e-01, 2.2573e-01, 1.9516e-01,
746                     1.6794e-01, 1.4415e-01, 1.2327e-01, 1.0516e-01,
747                     8.9696e-02, 7.6378e-02, 6.5038e-02, 5.5487e-02,
748                     4.7342e-02, 4.0454e-02, 3.4655e-02, 2.9695e-02,
749                     2.5478e-02},
750                    {2.2363e-02, 2.6233e-02, 3.0782e-02, 3.6140e-02,
751                     4.2535e-02, 5.0157e-02, 5.9197e-02, 6.9900e-02,
752                     8.2707e-02, 9.7811e-02, 1.1548e-01, 1.3601e-01,
753                     1.5998e-01, 1.8739e-01, 2.1840e-01, 2.5318e-01,
754                     2.9182e-01, 3.3373e-01, 3.7837e-01, 4.2498e-01,
755                     4.7235e-01, 5.1918e-01, 5.6426e-01, 6.0621e-01,
756                     6.4399e-01, 6.7700e-01, 7.0472e-01, 7.2637e-01,
757                     7.4206e-01, 7.5179e-01, 7.5551e-01, 7.5179e-01,
758                     7.4206e-01, 7.2637e-01, 7.0472e-01, 6.7700e-01,
759                     6.4399e-01, 6.0621e-01, 5.6426e-01, 5.1918e-01,
760                     4.7235e-01, 4.2498e-01, 3.7837e-01, 3.3373e-01,
761                     2.9182e-01, 2.5318e-01, 2.1840e-01, 1.8739e-01,
762                     1.5998e-01, 1.3601e-01, 1.1548e-01, 9.7811e-02,
763                     8.2707e-02, 6.9900e-02, 5.9197e-02, 5.0157e-02,
764                     4.2535e-02, 3.6140e-02, 3.0782e-02, 2.6233e-02,
765                     2.2363e-02},
766                    {1.9635e-02, 2.3167e-02, 2.7343e-02, 3.2293e-02,
767                     3.8224e-02, 4.5335e-02, 5.3849e-02, 6.4039e-02,
768                     7.6210e-02, 9.0739e-02, 1.0805e-01, 1.2841e-01,
769                     1.5216e-01, 1.7960e-01, 2.1099e-01, 2.4671e-01,
770                     2.8647e-01, 3.2996e-01, 3.7660e-01, 4.2547e-01,
771                     4.7536e-01, 5.2473e-01, 5.7215e-01, 6.1632e-01,
772                     6.5616e-01, 6.9075e-01, 7.1939e-01, 7.4199e-01,
773                     7.5838e-01, 7.6848e-01, 7.7227e-01, 7.6848e-01,
774                     7.5838e-01, 7.4199e-01, 7.1939e-01, 6.9075e-01,
775                     6.5616e-01, 6.1632e-01, 5.7215e-01, 5.2473e-01,
776                     4.7536e-01, 4.2547e-01, 3.7660e-01, 3.2996e-01,
777                     2.8647e-01, 2.4671e-01, 2.1099e-01, 1.7960e-01,
778                     1.5216e-01, 1.2841e-01, 1.0805e-01, 9.0739e-02,
779                     7.6210e-02, 6.4039e-02, 5.3849e-02, 4.5335e-02,
780                     3.8224e-02, 3.2293e-02, 2.7343e-02, 2.3167e-02,
781                     1.9635e-02},
782                    {1.7224e-02, 2.0450e-02, 2.4286e-02, 2.8860e-02,
783                     3.4357e-02, 4.0979e-02, 4.8966e-02, 5.8612e-02,
784                     7.0253e-02, 8.4257e-02, 1.0102e-01, 1.2094e-01,
785                     1.4442e-01, 1.7196e-01, 2.0381e-01, 2.4013e-01,
786                     2.8093e-01, 3.2594e-01, 3.7450e-01, 4.2563e-01,
787                     4.7796e-01, 5.2991e-01, 5.7974e-01, 6.2599e-01,
788                     6.6750e-01, 7.0344e-01, 7.3329e-01, 7.5676e-01,
789                     7.7371e-01, 7.8410e-01, 7.8793e-01, 7.8410e-01,
790                     7.7371e-01, 7.5676e-01, 7.3329e-01, 7.0344e-01,
791                     6.6750e-01, 6.2599e-01, 5.7974e-01, 5.2991e-01,
792                     4.7796e-01, 4.2563e-01, 3.7450e-01, 3.2594e-01,
793                     2.8093e-01, 2.4013e-01, 2.0381e-01, 1.7196e-01,
794                     1.4442e-01, 1.2094e-01, 1.0102e-01, 8.4257e-02,
795                     7.0253e-02, 5.8612e-02, 4.8966e-02, 4.0979e-02,
796                     3.4357e-02, 2.8860e-02, 2.4286e-02, 2.0450e-02,
797                     1.7224e-02},
798                    {1.5096e-02, 1.8041e-02, 2.1566e-02, 2.5793e-02,
799                     3.0886e-02, 3.7044e-02, 4.4515e-02, 5.3604e-02,
800                     6.4668e-02, 7.8109e-02, 9.4364e-02, 1.1389e-01,
801                     1.3716e-01, 1.6461e-01, 1.9663e-01, 2.3350e-01,
802                     2.7527e-01, 3.2170e-01, 3.7214e-01, 4.2549e-01,
803                     4.8024e-01, 5.3460e-01, 5.8677e-01, 6.3512e-01,
804                     6.7838e-01, 7.1569e-01, 7.4655e-01, 7.7071e-01,
805                     7.8810e-01, 7.9871e-01, 8.0255e-01, 7.9871e-01,
806                     7.8810e-01, 7.7071e-01, 7.4655e-01, 7.1569e-01,
807                     6.7838e-01, 6.3512e-01, 5.8677e-01, 5.3460e-01,
808                     4.8024e-01, 4.2549e-01, 3.7214e-01, 3.2170e-01,
809                     2.7527e-01, 2.3350e-01, 1.9663e-01, 1.6461e-01,
810                     1.3716e-01, 1.1389e-01, 9.4364e-02, 7.8109e-02,
811                     6.4668e-02, 5.3604e-02, 4.4515e-02, 3.7044e-02,
812                     3.0886e-02, 2.5793e-02, 2.1566e-02, 1.8041e-02,
813                     1.5096e-02}};
814
815   // More sampling precision with linear interpolation
816   fPRFlo  = -1.5;
817   fPRFhi  =  1.5;
818   Float_t pad[kPRFbin];
819   Int_t   sPRFbin = kPRFbin;  
820   Float_t sPRFwid = (fPRFhi - fPRFlo) / ((Float_t) sPRFbin);
821   for (Int_t iPad = 0; iPad < sPRFbin; iPad++) {
822     pad[iPad] = ((Float_t) iPad + 0.5) * sPRFwid + fPRFlo;
823   }
824   fPRFbin = 500;  
825   fPRFwid = (fPRFhi - fPRFlo) / ((Float_t) fPRFbin);
826   fPRFpad = ((Int_t) (1.0 / fPRFwid));
827
828   if (fPRFsmp) delete [] fPRFsmp;
829   fPRFsmp = new Float_t[kNplan*fPRFbin];
830
831   Int_t   ipos1;
832   Int_t   ipos2;
833   Float_t diff;
834
835   for (Int_t iPla = 0; iPla < kNplan; iPla++) {
836
837     for (Int_t iBin = 0; iBin < fPRFbin; iBin++) {
838
839       Float_t bin = (((Float_t) iBin) + 0.5) * fPRFwid + fPRFlo;
840       ipos1 = ipos2 = 0;
841       diff  = 0;
842       do {
843         diff = bin - pad[ipos2++];
844       } while ((diff > 0) && (ipos2 < kPRFbin));
845       if      (ipos2 == kPRFbin) {
846         fPRFsmp[iPla*fPRFbin+iBin] = prf[iPla][ipos2-1];
847       }
848       else if (ipos2 == 1) {
849         fPRFsmp[iPla*fPRFbin+iBin] = prf[iPla][ipos2-1];
850       }
851       else {
852         ipos2--;
853         if (ipos2 >= kPRFbin) ipos2 = kPRFbin - 1;
854         ipos1 = ipos2 - 1;
855         fPRFsmp[iPla*fPRFbin+iBin] = prf[iPla][ipos2] 
856                                    + diff * (prf[iPla][ipos2] - prf[iPla][ipos1]) 
857                                           / sPRFwid;
858       }
859
860     }
861   } 
862
863 }
864
865 //_____________________________________________________________________________
866 Int_t AliTRDcalibDB::PadResponse(Double_t signal, Double_t dist
867                                 , Int_t plane, Double_t *pad) const
868 {
869   //
870   // Applies the pad response
871   //
872
873   Int_t iBin  = ((Int_t) (( - dist - fPRFlo) / fPRFwid));
874   Int_t iOff  = plane * fPRFbin;
875
876   Int_t iBin0 = iBin - fPRFpad + iOff;
877   Int_t iBin1 = iBin           + iOff;
878   Int_t iBin2 = iBin + fPRFpad + iOff;
879
880   pad[0] = 0.0;
881   pad[1] = 0.0;
882   pad[2] = 0.0;
883   if ((iBin1 >= 0) && (iBin1 < (fPRFbin*kNplan))) {
884
885     if (iBin0 >= 0) {
886       pad[0] = signal * fPRFsmp[iBin0];
887     }
888     pad[1] = signal * fPRFsmp[iBin1];
889     if (iBin2 < (fPRFbin*kNplan)) {
890       pad[2] = signal * fPRFsmp[iBin2];
891     }
892
893     return 1;
894
895   }
896   else {
897
898     return 0;
899
900   }
901
902 }