]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDcalibDB.h
Coding rules
[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 #ifndef ROOT_TObject
15 #include "TObject.h"
16 #endif
17
18 #ifndef ALITRDPIDUTIL_H
19 #include "AliTRDpidUtil.h"
20 #endif
21
22 class AliCDBEntry;
23
24 class AliTRDrecoParam;
25 class AliTRDCalPID;
26 class AliTRDCalMonitoring;
27 class AliTRDCalROC;
28 class AliTRDCalDet;
29 class AliTRDCalSingleChamberStatus;
30 class AliTRDcalibDB : public TObject {
31
32  public:
33
34   enum { kNlayer  =   6
35        , kNstack  =   5
36        , kNsector =  18
37        , kNdet    = 540 };
38   
39   static AliTRDcalibDB               *Instance();
40   static void                         Terminate();
41
42   void                                SetRun(Long64_t run);
43   Long64_t                            GetRun() const { return fRun; }
44
45   Float_t                             GetNoise(Int_t det, Int_t col, Int_t row);
46         AliTRDCalROC                 *GetNoiseROC(Int_t det);
47   const AliTRDCalDet                 *GetNoiseDet();
48
49   Float_t                             GetVdrift(Int_t det, Int_t col, Int_t row);
50   Float_t                             GetVdriftAverage(Int_t det);
51         AliTRDCalROC                 *GetVdriftROC(Int_t det);
52   const AliTRDCalDet                 *GetVdriftDet();
53
54   Float_t                             GetT0(Int_t det, Int_t col, Int_t row);
55   Float_t                             GetT0Average(Int_t det);
56         AliTRDCalROC                 *GetT0ROC(Int_t det);
57   const AliTRDCalDet                 *GetT0Det();
58
59   Float_t                             GetGainFactor(Int_t det, Int_t col, Int_t row);
60   Float_t                             GetGainFactorAverage(Int_t det);
61   AliTRDCalROC                       *GetGainFactorROC(Int_t det);
62   const AliTRDCalDet                 *GetGainFactorDet();
63
64   AliTRDCalROC                       *GetPRFROC(Int_t det);
65   Float_t                             GetPRFWidth(Int_t det, Int_t col, Int_t row);
66
67   Float_t*                            GetSampledPRF() { return fPRFsmp; };
68   Int_t                               GetPRFbin()     { return fPRFbin; };
69   Float_t                             GetPRFlo()      { return fPRFlo;  };
70   Float_t                             GetPRFhi()      { return fPRFhi;  };
71
72   Int_t                               GetNumberOfTimeBins();
73
74   Char_t                              GetPadStatus(Int_t det, Int_t col, Int_t row);
75   AliTRDCalSingleChamberStatus       *GetPadStatusROC(Int_t det);
76   AliTRDrecoParam*                    GetRecoParam(Int_t *eventtype);
77
78   Char_t                              GetChamberStatus(Int_t det);
79
80   Bool_t                              IsPadMasked(Int_t det, Int_t col, Int_t row);
81   Bool_t                              IsPadBridgedLeft(Int_t det, Int_t col, Int_t row);
82   Bool_t                              IsPadBridgedRight(Int_t det, Int_t col, Int_t row);
83   Bool_t                              IsPadNotConnected(Int_t det, Int_t col, Int_t row);
84   
85   Bool_t                              IsChamberInstalled(Int_t det);
86   Bool_t                              IsChamberMasked(Int_t det);
87
88   const AliTRDCalMonitoring          *GetMonitoringObject();
89   const AliTRDCalPID                 *GetPIDObject(AliTRDpidUtil::ETRDPIDMethod m);
90
91   // Related functions, these depend on calibration data
92          Int_t                        PadResponse(Double_t signal, Double_t dist
93                                                 , Int_t layer, Double_t *pad) const;
94
95  protected:
96
97   // For caching see also implentation of GetCachedCDBObject in the .cxx file
98   enum { kCDBCacheSize = 19 };   // Number of cached objects
99   enum { kIDVdriftPad = 0
100        , kIDVdriftChamber
101        , kIDT0Pad
102        , kIDT0Chamber
103        , kIDGainFactorPad
104        , kIDGainFactorChamber
105        , kIDNoiseChamber
106        , kIDNoisePad
107        , kIDPRFWidth
108        , kIDFEE
109        , kIDChamberPos
110        , kIDStackPos
111        , kIDSuperModulePos
112        , kIDPIDNN
113        , kIDPIDLQ
114        , kIDRecoParam
115        , kIDMonitoringData
116        , kIDChamberStatus
117        , kIDPadStatus };         // IDs of cached objects
118
119   const TObject *GetCachedCDBObject(Int_t id);
120   
121   void           Invalidate();
122   void           SamplePRF();
123   
124   AliCDBEntry   *GetCDBEntry(const Char_t *cdbPath);
125   const TObject *CacheCDBEntry(Int_t id, const Char_t *cdbPath);
126
127   static AliTRDcalibDB *fgInstance;                 //  Instance of this class (singleton implementation)
128   static Bool_t         fgTerminated;               //  Defines if this class has already been terminated
129
130   AliCDBEntry          *fCDBEntries[kCDBCacheSize]; //  Cache for CDB entries
131   TObject              *fCDBCache[kCDBCacheSize];   //  Cache for calibration objects.
132
133   Long64_t              fRun;                       //  Run Number
134   
135   Float_t              *fPRFsmp;                    //! Sampled pad response
136   Int_t                 fPRFbin;                    //  Number of bins for the PRF
137   Float_t               fPRFlo;                     //  Lower boundary of the PRF
138   Float_t               fPRFhi;                     //  Higher boundary of the PRF
139   Float_t               fPRFwid;                    //  Bin width of the sampled PRF
140   Int_t                 fPRFpad;                    //  Distance to next pad in PRF
141   
142  private:
143
144   AliTRDcalibDB();                                  //  This is a singleton, constructor is private!  
145   AliTRDcalibDB(const AliTRDcalibDB &c);   
146   AliTRDcalibDB &operator=(const AliTRDcalibDB &c); 
147   virtual ~AliTRDcalibDB();
148
149   ClassDef(AliTRDcalibDB, 4)                         //  Provides central access to the CDB
150
151 };
152
153 #endif