]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDcalibDB.h
Remove the last print statements
[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, kNcham = 5, kNsect = 18, kNdet = 540 };
26   
27   static AliTRDcalibDB *Instance();
28   static void           Terminate();
29
30   void     SetRun(Long64_t run);
31   Long64_t GetRun() { return fRun; }
32
33   Float_t  GetVdrift(Int_t det, Int_t col, Int_t row);
34   Float_t  GetVdriftAverage(Int_t det);
35
36   Float_t  GetT0(Int_t det, Int_t col, Int_t row);
37   Float_t  GetT0Average(Int_t det);
38
39   Float_t  GetGainFactor(Int_t det, Int_t col, Int_t row);
40   Float_t  GetGainFactorAverage(Int_t det);
41
42   Float_t  GetPRFWidth(Int_t det, Int_t col, Int_t row);
43
44   Float_t  GetSamplingFrequency();
45   Int_t    GetNumberOfTimeBins();
46
47   Char_t   GetPadStatus(Int_t det, Int_t col, Int_t row);
48   Char_t   GetMCMStatus(Int_t det, Int_t col, Int_t row);
49   Char_t   GetChamberStatus(Int_t det);
50   Char_t   GetSuperModuleStatus(Int_t sm);
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   IsMCMMasked(Int_t det, Int_t col, Int_t row);
57   
58   Bool_t   IsChamberInstalled(Int_t det);
59   Bool_t   IsChamberMasked(Int_t det);
60   
61   Bool_t   IsSuperModuleInstalled(Int_t det);
62   Bool_t   IsSuperModuleMasked(Int_t det);
63
64   const AliTRDCalMonitoring *GetMonitoringObject();
65   const AliTRDCalPIDLQ      *GetPIDLQObject();
66
67   // Related functions, these depend on calibration data
68   static Float_t GetOmegaTau(Float_t vdrift);
69   Int_t          PadResponse(Double_t signal, Double_t dist, Int_t plane, Double_t *pad) const;
70   
71  protected:
72
73   // For caching see also implentation of GetCachedCDBObject in the .cxx file
74   enum { kCDBCacheSize = 17 };   // Number of cached objects
75   enum { kIDVdriftPad = 0, kIDVdriftChamber,
76          kIDT0Pad, kIDT0Chamber,
77          kIDGainFactorPad, kIDGainFactorChamber,
78          kIDPRFWidth,
79          kIDGlobals,
80          kIDChamberPos, kIDStackPos, kIDSuperModulePos,
81          kIDPIDLQ, kIDMonitoringData,
82          kIDSuperModuleStatus, kIDChamberStatus, kIDMCMStatus, kIDPadStatus };    // IDs of cached objects
83
84   const TObject* GetCachedCDBObject(Int_t id);
85   
86   void           Invalidate();
87   void           SamplePRF();
88   
89   AliCDBEntry   *GetCDBEntry(const char* cdbPath);
90   const TObject *CacheCDBEntry(Int_t id, const char* cdbPath);
91
92   static AliTRDcalibDB *fgInstance;                 //  Instance of this class (singleton implementation)
93   static Bool_t         fgTerminated;               //  Defines if this class has already been terminated
94
95   AliCDBEntry          *fCDBEntries[kCDBCacheSize]; //  Cache for CDB entries
96   TObject              *fCDBCache[kCDBCacheSize];   //  Cache for calibration objects.
97
98   Long64_t              fRun;                       //  Run Number
99   
100   Float_t              *fPRFsmp;                    //! Sampled pad response
101   Int_t                 fPRFbin;                    //  Number of bins for the PRF
102   Float_t               fPRFlo;                     //  Lower boundary of the PRF
103   Float_t               fPRFhi;                     //  Higher boundary of the PRF
104   Float_t               fPRFwid;                    //  Bin width of the sampled PRF
105   Int_t                 fPRFpad;                    //  Distance to next pad in PRF
106   
107  private:
108
109   AliTRDcalibDB();                                  //  This is a singleton, constructor is private!  
110   AliTRDcalibDB(const AliTRDcalibDB &c);   
111   AliTRDcalibDB &operator=(const AliTRDcalibDB &c); 
112   virtual ~AliTRDcalibDB();
113
114   ClassDef(AliTRDcalibDB,3)                        //  Provides central access to the CDB
115
116 };
117
118 #endif