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 */
6 ///////////////////////////////////////////////////////////////////////////////
8 // Class providing the calibration parameters by accessing the CDB //
10 ///////////////////////////////////////////////////////////////////////////////
18 #ifndef ALITRDPIDUTIL_H
19 #include "AliTRDpidUtil.h"
22 #ifndef ALITRDPIDRESPONSE_H
23 #include "AliTRDPIDResponse.h"
26 #include "AliTRDCalTrapConfig.h"
27 #include "AliTRDtrapConfig.h"
33 class AliTRDrecoParam;
34 class AliTRDCalTrkAttach;
36 class AliTRDCalMonitoring;
39 class AliTRDCalSingleChamberStatus;
40 class AliTRDCalOnlineGainTableROC;
42 class AliTRDcalibDB : public TObject {
58 static AliTRDcalibDB *Instance();
59 static void Terminate();
61 void SetRun(Long64_t run);
62 Long64_t GetRun() const { return fRun; }
64 Float_t GetNoise(Int_t det, Int_t col, Int_t row);
65 AliTRDCalROC *GetNoiseROC(Int_t det);
66 const AliTRDCalDet *GetNoiseDet();
68 Float_t GetVdrift(Int_t det, Int_t col, Int_t row);
69 Float_t GetVdriftAverage(Int_t det);
70 AliTRDCalROC *GetVdriftROC(Int_t det);
71 const AliTRDCalDet *GetVdriftDet();
73 const AliTRDCalDet *GetExBDet();
75 Float_t GetT0(Int_t det, Int_t col, Int_t row);
76 Float_t GetT0Average(Int_t det);
77 AliTRDCalROC *GetT0ROC(Int_t det);
78 const AliTRDCalDet *GetT0Det();
80 Float_t GetGainFactor(Int_t det, Int_t col, Int_t row);
81 Float_t GetGainFactorAverage(Int_t det);
82 AliTRDCalROC *GetGainFactorROC(Int_t det);
83 const AliTRDCalDet *GetGainFactorDet();
85 Float_t GetOnlineGainFactor(Int_t det, Int_t col, Int_t row);
86 AliTRDCalOnlineGainTableROC *GetOnlineGainTableROC(Int_t det);
88 AliTRDCalROC *GetPRFROC(Int_t det);
89 Float_t GetPRFWidth(Int_t det, Int_t col, Int_t row);
91 Float_t* GetSampledPRF() const { return fPRFsmp; };
92 Int_t GetPRFbin() const { return fPRFbin; };
93 Float_t GetPRFlo() const { return fPRFlo; };
94 Float_t GetPRFhi() const { return fPRFhi; };
96 Int_t ExtractTimeBinsFromString(TString tbstr);
97 Int_t GetNumberOfTimeBinsDCS();
98 void GetFilterType(TString &filterType);
99 void GetGlobalConfiguration(TString &config);
100 void GetGlobalConfigurationVersion(TString &version);
101 Int_t GetNumberOfParsDCS(TString cname, Char_t delimiter='_');
102 Int_t GetNumberOfOptsDCS(TString cname, Int_t cfgType);
103 void GetDCSConfigParOption(TString cname, Int_t cfgType, Int_t option, TString &cfgo);
105 Int_t GetOnlineGainTableID();
107 Bool_t HasOnlineFilterPedestal();
108 Bool_t HasOnlineFilterGain();
109 Bool_t HasOnlineTailCancellation();
111 Char_t GetPadStatus(Int_t det, Int_t col, Int_t row);
112 AliTRDCalSingleChamberStatus *GetPadStatusROC(Int_t det);
113 AliTRDrecoParam* GetRecoParam(Int_t *eventtype);
114 AliTRDPIDResponse *GetPIDResponse(AliTRDPIDResponse::ETRDPIDMethod m);
116 Char_t GetChamberStatus(Int_t det);
118 Bool_t IsPadMasked(Int_t det, Int_t col, Int_t row);
119 Bool_t IsPadBridgedLeft(Int_t det, Int_t col, Int_t row);
120 Bool_t IsPadBridgedRight(Int_t det, Int_t col, Int_t row);
121 Bool_t IsPadNotConnected(Int_t det, Int_t col, Int_t row);
123 Bool_t IsChamberGood(Int_t det);
124 Bool_t IsChamberNoData(Int_t det);
125 Bool_t IsHalfChamberNoData(Int_t det, Int_t side);
126 Bool_t IsChamberBadCalibrated(Int_t det);
127 Bool_t IsChamberNotCalibrated(Int_t det);
129 const AliTRDCalMonitoring *GetMonitoringObject();
130 const AliTRDCalPID *GetPIDObject(AliTRDpidUtil::ETRDPIDMethod m);
131 const AliTRDCalTrkAttach *GetAttachObject();
133 // Related functions, these depend on calibration data
134 Int_t PadResponse(Double_t signal, Double_t dist
135 , Int_t layer, Double_t *pad) const;
137 AliTRDtrapConfig* GetTrapConfig();
138 void GetTrapConfig(TString &name, TString &version) { name = fTrapConfigName; version = fTrapConfigVersion; }
139 void SetTrapConfig(const TString name, const TString version) { fTrapConfigName = name; fTrapConfigVersion = version; }
140 void SetTrapConfig(AliTRDtrapConfig *trapcfg) { fTrapConfig = trapcfg; }
144 AliTRDtrapConfig* LoadTrapConfig(const TString &name = "", const TString &version = "");
146 // For caching see also implentation of GetCachedCDBObject in the .cxx file
147 enum { kIDVdriftPad = 0
153 , kIDGainFactorChamber
154 , kIDOnlineGainFactor
173 , kCDBCacheSize }; // IDs of cached objects
175 const TObject *GetCachedCDBObject(Int_t id);
180 AliCDBEntry *GetCDBEntry(const Char_t *cdbPath);
181 const TObject *CacheCDBEntry(Int_t id, const Char_t *cdbPath);
183 static AliTRDcalibDB *fgInstance; // Instance of this class (singleton implementation)
184 static Bool_t fgTerminated; // Defines if this class has already been terminated
186 AliCDBEntry *fCDBEntries[kCDBCacheSize]; // Cache for CDB entries
187 TObject *fCDBCache[kCDBCacheSize]; // Cache for calibration objects.
189 Long64_t fRun; // Run Number
191 Float_t *fPRFsmp; //! Sampled pad response
192 Int_t fPRFbin; // Number of bins for the PRF
193 Float_t fPRFlo; // Lower boundary of the PRF
194 Float_t fPRFhi; // Higher boundary of the PRF
195 Float_t fPRFwid; // Bin width of the sampled PRF
196 Int_t fPRFpad; // Distance to next pad in PRF
198 AliTRDPIDResponse *fPIDResponse; // TRD PID Response function
200 Int_t fOnlineGainTableID; // ID for online gain table
202 AliTRDtrapConfig* fTrapConfig; // TRAP configuration
203 TString fTrapConfigName; // name of the TRAPconfig
204 TString fTrapConfigVersion; // version of the TRAPconfig
208 AliTRDcalibDB(); // This is a singleton, constructor is private!
209 AliTRDcalibDB(const AliTRDcalibDB &c);
210 AliTRDcalibDB &operator=(const AliTRDcalibDB &c);
211 virtual ~AliTRDcalibDB();
213 ClassDef(AliTRDcalibDB, 8) // Provides central access to the CDB