]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDcalibDB.h
Move sampling frequency to common params
[u/mrichter/AliRoot.git] / TRD / AliTRDcalibDB.h
1 #ifndef ALITRDCALIBDB_H
2 #define ALITRDCALIBDB_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 ///////////////////////////////////////////////////////////////////////////////
7 //                                                                           //
8 // Class providing the calibration parameters by accessing the CDB           //
9 //                                                                           //
10 ///////////////////////////////////////////////////////////////////////////////
11
12 /* $Id$ */
13
14 #include "TObject.h"
15
16 class AliCDBEntry;
17
18 class AliTRDCalPIDLQ;
19 class AliTRDCalMonitoring;
20
21 class AliTRDcalibDB : public TObject {
22
23  public:
24
25   enum { kNplan =   6
26        , kNcham =   5
27        , kNsect =  18
28        , kNdet  = 540 };
29   
30   static AliTRDcalibDB *Instance();
31   static void           Terminate();
32
33   void     SetRun(Long64_t run);
34   Long64_t GetRun() { return fRun; }
35
36   Float_t  GetVdrift(Int_t det, Int_t col, Int_t row);
37   Float_t  GetVdriftAverage(Int_t det);
38
39   Float_t  GetT0(Int_t det, Int_t col, Int_t row);
40   Float_t  GetT0Average(Int_t det);
41
42   Float_t  GetGainFactor(Int_t det, Int_t col, Int_t row);
43   Float_t  GetGainFactorAverage(Int_t det);
44
45   Float_t  GetPRFWidth(Int_t det, Int_t col, Int_t row);
46
47   Int_t    GetNumberOfTimeBins();
48
49   Char_t   GetPadStatus(Int_t det, Int_t col, Int_t row);
50   Char_t   GetChamberStatus(Int_t det);
51
52   Bool_t   IsPadMasked(Int_t det, Int_t col, Int_t row);
53   Bool_t   IsPadBridgedLeft(Int_t det, Int_t col, Int_t row);
54   Bool_t   IsPadBridgedRight(Int_t det, Int_t col, Int_t row);
55   
56   Bool_t   IsChamberInstalled(Int_t det);
57   Bool_t   IsChamberMasked(Int_t det);
58
59   const AliTRDCalMonitoring *GetMonitoringObject();
60   const AliTRDCalPIDLQ      *GetPIDLQObject();
61
62   // Related functions, these depend on calibration data
63   static Float_t GetOmegaTau(Float_t vdrift, Float_t bz);
64          Int_t   PadResponse(Double_t signal, Double_t dist, Int_t plane, Double_t *pad) const;
65   
66  protected:
67
68   // For caching see also implentation of GetCachedCDBObject in the .cxx file
69   enum { kCDBCacheSize = 15 };   // Number of cached objects
70   enum { kIDVdriftPad = 0
71        , kIDVdriftChamber
72        , kIDT0Pad
73        , kIDT0Chamber
74        , kIDGainFactorPad
75        , kIDGainFactorChamber
76        , kIDPRFWidth
77        , kIDGlobals
78        , kIDChamberPos
79        , kIDStackPos
80        , kIDSuperModulePos
81        , kIDPIDLQ
82        , kIDMonitoringData
83        , kIDChamberStatus
84        , kIDPadStatus };         // IDs of cached objects
85
86   const TObject* GetCachedCDBObject(Int_t id);
87   
88   void           Invalidate();
89   void           SamplePRF();
90   
91   AliCDBEntry   *GetCDBEntry(const Char_t *cdbPath);
92   const TObject *CacheCDBEntry(Int_t id, const Char_t *cdbPath);
93
94   static AliTRDcalibDB *fgInstance;                 //  Instance of this class (singleton implementation)
95   static Bool_t         fgTerminated;               //  Defines if this class has already been terminated
96
97   AliCDBEntry          *fCDBEntries[kCDBCacheSize]; //  Cache for CDB entries
98   TObject              *fCDBCache[kCDBCacheSize];   //  Cache for calibration objects.
99
100   Long64_t              fRun;                       //  Run Number
101   
102   Float_t              *fPRFsmp;                    //! Sampled pad response
103   Int_t                 fPRFbin;                    //  Number of bins for the PRF
104   Float_t               fPRFlo;                     //  Lower boundary of the PRF
105   Float_t               fPRFhi;                     //  Higher boundary of the PRF
106   Float_t               fPRFwid;                    //  Bin width of the sampled PRF
107   Int_t                 fPRFpad;                    //  Distance to next pad in PRF
108   
109  private:
110
111   AliTRDcalibDB();                                  //  This is a singleton, constructor is private!  
112   AliTRDcalibDB(const AliTRDcalibDB &c);   
113   AliTRDcalibDB &operator=(const AliTRDcalibDB &c); 
114   virtual ~AliTRDcalibDB();
115
116   ClassDef(AliTRDcalibDB,3)                         //  Provides central access to the CDB
117
118 };
119
120 #endif