]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDcalibDB.h
Remove AliTRDCalPIDLQ
[u/mrichter/AliRoot.git] / TRD / AliTRDcalibDB.h
CommitLineData
3551db50 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
3551db50 14#include "TObject.h"
15
2745a409 16class AliCDBEntry;
3551db50 17
cc7cef99 18class AliTRDCalPIDLQ;
7754cd1f 19class AliTRDCalMonitoring;
56178ff4 20class AliTRDCalROC;
21class AliTRDCalDet;
3551db50 22
2745a409 23class AliTRDcalibDB : public TObject {
24
25 public:
26
b43a3e17 27 enum { kNplan = 6
28 , kNcham = 5
29 , kNsect = 18
30 , kNdet = 540 };
6a739e92 31
56178ff4 32 static AliTRDcalibDB *Instance();
33 static void Terminate();
3551db50 34
56178ff4 35 void SetRun(Long64_t run);
36 Long64_t GetRun() { return fRun; }
7754cd1f 37
56178ff4 38 Float_t GetVdrift(Int_t det, Int_t col, Int_t row);
39 Float_t GetVdriftAverage(Int_t det);
afb9f880 40 AliTRDCalROC *GetVdriftROC(Int_t det);
41 const AliTRDCalDet *GetVdriftDet();
7754cd1f 42
56178ff4 43 Float_t GetT0(Int_t det, Int_t col, Int_t row);
44 Float_t GetT0Average(Int_t det);
45 AliTRDCalROC *GetT0ROC(Int_t det);
46 const AliTRDCalDet *GetT0Det();
7754cd1f 47
56178ff4 48 Float_t GetGainFactor(Int_t det, Int_t col, Int_t row);
49 Float_t GetGainFactorAverage(Int_t det);
50 AliTRDCalROC *GetGainFactorROC(Int_t det);
51 const AliTRDCalDet *GetGainFactorDet();
3551db50 52
524fc8fa 53 AliTRDCalROC *GetPRFROC(Int_t det);
56178ff4 54 Float_t GetPRFWidth(Int_t det, Int_t col, Int_t row);
7754cd1f 55
56178ff4 56 Int_t GetNumberOfTimeBins();
7754cd1f 57
56178ff4 58 Char_t GetPadStatus(Int_t det, Int_t col, Int_t row);
59 Char_t GetChamberStatus(Int_t det);
7754cd1f 60
56178ff4 61 Bool_t IsPadMasked(Int_t det, Int_t col, Int_t row);
62 Bool_t IsPadBridgedLeft(Int_t det, Int_t col, Int_t row);
63 Bool_t IsPadBridgedRight(Int_t det, Int_t col, Int_t row);
3551db50 64
56178ff4 65 Bool_t IsChamberInstalled(Int_t det);
66 Bool_t IsChamberMasked(Int_t det);
7754cd1f 67
2745a409 68 const AliTRDCalMonitoring *GetMonitoringObject();
69 const AliTRDCalPIDLQ *GetPIDLQObject();
7754cd1f 70
2745a409 71 // Related functions, these depend on calibration data
56178ff4 72 static Float_t GetOmegaTau(Float_t vdrift, Float_t bz);
73 Int_t PadResponse(Double_t signal, Double_t dist
74 , Int_t plane, Double_t *pad) const;
3551db50 75
2745a409 76 protected:
77
78 // For caching see also implentation of GetCachedCDBObject in the .cxx file
11f5dd43 79 enum { kCDBCacheSize = 15 }; // Number of cached objects
b43a3e17 80 enum { kIDVdriftPad = 0
81 , kIDVdriftChamber
82 , kIDT0Pad
83 , kIDT0Chamber
84 , kIDGainFactorPad
85 , kIDGainFactorChamber
86 , kIDPRFWidth
aa617684 87 , kIDFEE
b43a3e17 88 , kIDChamberPos
89 , kIDStackPos
90 , kIDSuperModulePos
91 , kIDPIDLQ
92 , kIDMonitoringData
93 , kIDChamberStatus
94 , kIDPadStatus }; // IDs of cached objects
7754cd1f 95
56178ff4 96 const TObject *GetCachedCDBObject(Int_t id);
3551db50 97
2745a409 98 void Invalidate();
99 void SamplePRF();
6a739e92 100
b43a3e17 101 AliCDBEntry *GetCDBEntry(const Char_t *cdbPath);
102 const TObject *CacheCDBEntry(Int_t id, const Char_t *cdbPath);
7754cd1f 103
2745a409 104 static AliTRDcalibDB *fgInstance; // Instance of this class (singleton implementation)
105 static Bool_t fgTerminated; // Defines if this class has already been terminated
6d50f529 106
2745a409 107 AliCDBEntry *fCDBEntries[kCDBCacheSize]; // Cache for CDB entries
108 TObject *fCDBCache[kCDBCacheSize]; // Cache for calibration objects.
6a739e92 109
2745a409 110 Long64_t fRun; // Run Number
3551db50 111
6d50f529 112 Float_t *fPRFsmp; //! Sampled pad response
113 Int_t fPRFbin; // Number of bins for the PRF
114 Float_t fPRFlo; // Lower boundary of the PRF
115 Float_t fPRFhi; // Higher boundary of the PRF
116 Float_t fPRFwid; // Bin width of the sampled PRF
117 Int_t fPRFpad; // Distance to next pad in PRF
6a739e92 118
2745a409 119 private:
120
121 AliTRDcalibDB(); // This is a singleton, constructor is private!
122 AliTRDcalibDB(const AliTRDcalibDB &c);
123 AliTRDcalibDB &operator=(const AliTRDcalibDB &c);
3551db50 124 virtual ~AliTRDcalibDB();
125
b43a3e17 126 ClassDef(AliTRDcalibDB,3) // Provides central access to the CDB
2745a409 127
3551db50 128};
129
3551db50 130#endif