]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDParameters.cxx
Useless TObjArray::Clear() removed.
[u/mrichter/AliRoot.git] / FMD / AliFMDParameters.cxx
CommitLineData
1a1fdef7 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
1a1fdef7 15/* $Id$ */
c2fc1258 16/** @file AliFMDParameters.cxx
17 @author Christian Holm Christensen <cholm@nbi.dk>
18 @date Mon Mar 27 12:44:26 2006
19 @brief Manager of FMD parameters
20*/
1a1fdef7 21//____________________________________________________________________
22//
23// Forward Multiplicity Detector based on Silicon wafers.
24//
25// This class is a singleton that handles various parameters of
26// the FMD detectors.
6169f936 27// The manager normally serves the parameters from the Conditions
28// Database (CDB). These are retrivied by the member function
29// `Init'. Optionally, the class can serve hard-coded constants, if
30// no CDB is available.
1a1fdef7 31//
f95a63c4 32#include "AliFMDDebug.h" // ALILOG_H
8f6ee336 33#include "AliFMDParameters.h" // ALIFMDPARAMETERS_H
34#include "AliFMDGeometry.h" // ALIFMDGEOMETRY_H
35#include "AliFMDRing.h" // ALIFMDRING_H
36#include "AliFMDCalibGain.h" // ALIFMDCALIBGAIN_H
37#include "AliFMDCalibPedestal.h" // ALIFMDCALIBPEDESTAL_H
c2fc1258 38#include "AliFMDCalibSampleRate.h" // ALIFMDCALIBSAMPLERATE_H
39#include "AliFMDCalibStripRange.h" // ALIFMDCALIBSTRIPRANGE_H
57c3c593 40#include "AliFMDAltroMapping.h" // ALIFMDALTROMAPPING_H
41#include <AliCDBManager.h> // ALICDBMANAGER_H
42#include <AliCDBEntry.h> // ALICDBMANAGER_H
1a1fdef7 43#include <Riostream.h>
8ec606c2 44#include <sstream>
6169f936 45#include <TArrayF.h>
46#include <TH2D.h>
1a1fdef7 47
48//====================================================================
49ClassImp(AliFMDParameters)
50#if 0
51 ; // This is here to keep Emacs for indenting the next line
52#endif
53
54//____________________________________________________________________
55AliFMDParameters* AliFMDParameters::fgInstance = 0;
56
57c3c593 57//____________________________________________________________________
58const char* AliFMDParameters::fgkPulseGain = "FMD/Calib/PulseGain";
59const char* AliFMDParameters::fgkPedestal = "FMD/Calib/Pedestal";
60const char* AliFMDParameters::fgkDead = "FMD/Calib/Dead";
61const char* AliFMDParameters::fgkSampleRate = "FMD/Calib/SampleRate";
62const char* AliFMDParameters::fgkAltroMap = "FMD/Calib/AltroMap";
63const char* AliFMDParameters::fgkZeroSuppression = "FMD/Calib/ZeroSuppression";
c2fc1258 64const char* AliFMDParameters::fgkStripRange = "FMD/Calib/StripRange";
57c3c593 65
66
1a1fdef7 67//____________________________________________________________________
68AliFMDParameters*
69AliFMDParameters::Instance()
70{
71 // Get static instance
72 if (!fgInstance) fgInstance = new AliFMDParameters;
73 return fgInstance;
74}
75
76//____________________________________________________________________
77AliFMDParameters::AliFMDParameters()
57c3c593 78 : fIsInit(kFALSE),
02a27b50 79 fkSiDeDxMip(1.664),
b5ee4425 80 fVA1MipRange(0),
81 fAltroChannelSize(0),
82 fChannelsPerAltro(0),
83 fPedestalFactor(0),
84 fFixedPedestal(0),
85 fFixedPedestalWidth(0),
86 fFixedZeroSuppression(0),
87 fFixedSampleRate(0),
88 fFixedThreshold(0),
89 fFixedMinStrip(0),
90 fFixedMaxStrip(0),
8f6ee336 91 fFixedPulseGain(0),
92 fEdepMip(0),
93 fZeroSuppression(0),
94 fSampleRate(0),
95 fPedestal(0),
96 fPulseGain(0),
57c3c593 97 fDeadMap(0),
c2fc1258 98 fAltroMap(0),
99 fStripRange(0)
1a1fdef7 100{
101 // Default constructor
102 SetVA1MipRange();
103 SetAltroChannelSize();
104 SetChannelsPerAltro();
105 SetZeroSuppression();
106 SetSampleRate();
107 SetPedestal();
108 SetPedestalWidth();
109 SetPedestalFactor();
8f6ee336 110 SetThreshold();
c2fc1258 111 SetStripRange();
1a1fdef7 112}
113
57c3c593 114//__________________________________________________________________
115void
f6449cc0 116AliFMDParameters::Init(Bool_t forceReInit, UInt_t what)
57c3c593 117{
118 // Initialize the parameters manager. We need to get stuff from the
119 // CDB here.
a9579262 120 if (forceReInit) fIsInit = kFALSE;
57c3c593 121 if (fIsInit) return;
f6449cc0 122 if (what & kPulseGain) InitPulseGain();
123 if (what & kPedestal) InitPedestal();
124 if (what & kDeadMap) InitDeadMap();
125 if (what & kSampleRate) InitSampleRate();
126 if (what & kZeroSuppression) InitZeroSuppression();
127 if (what & kAltroMap) InitAltroMap();
1e8f773e 128 fIsInit = kTRUE;
57c3c593 129
1e8f773e 130}
c2fc1258 131
6169f936 132//__________________________________________________________________
133#define DET2IDX(det,ring,sec,str) \
a9579262 134 (det * 1000 + (ring == 'I' ? 0 : 512) + str)
6169f936 135
136//__________________________________________________________________
137void
138AliFMDParameters::Draw(Option_t* option)
139{
140 TString opt(option);
141 enum {
142 kPulseGain, // Path to PulseGain calib object
143 kThreshold, // Path to PulseGain calib object
144 kPedestal, // Path to Pedestal calib object
145 kPedestalWidth, // Path to Pedestal calib object
146 kDead, // Path to Dead calib object
147 kSampleRate, // Path to SampleRate calib object
148 kAltroMap, // Path to AltroMap calib object
149 kZeroSuppression, // Path to ZeroSuppression cal object
150 kMinStripRange, // Path to strip range cal object
151 kMaxStripRange // Path to strip range cal object
152 } what;
153
154
155 if (opt.Contains("dead", TString::kIgnoreCase))
156 what = kDead;
157 else if (opt.Contains("threshold",TString::kIgnoreCase))
158 what = kThreshold;
159 else if (opt.Contains("gain",TString::kIgnoreCase))
160 what = kPulseGain;
161 else if (opt.Contains("pedestal",TString::kIgnoreCase))
162 what = kPedestal;
163 else if (opt.Contains("noise",TString::kIgnoreCase))
164 what = kPedestalWidth;
165 else if (opt.Contains("zero",TString::kIgnoreCase))
166 what = kZeroSuppression;
167 else if (opt.Contains("rate",TString::kIgnoreCase))
168 what = kSampleRate;
169 else if (opt.Contains("min",TString::kIgnoreCase))
170 what = kMinStripRange;
171 else if (opt.Contains("max",TString::kIgnoreCase))
172 what = kMaxStripRange;
173 else if (opt.Contains("map",TString::kIgnoreCase))
174 what = kAltroMap;
175 else {
176 Warning("Draw", "unknown parameter: %s\n\tShould be one of\n\t"
177 "dead, threshold, gain, pedestal, noise, zero, rate, "
178 "min, max, map",
179 option);
180 return;
181 }
182
183 TArrayD xbins(3 * 512 + 2 * 256 + 5);
184 Int_t i = 1;
185 Bool_t skip = kTRUE;
186 for (UShort_t det = 1; det <= 3; det++) {
187 UShort_t nRings = (det == 1 ? 1 : 2);
188 for (UShort_t iring = 0; iring < nRings; iring++) {
189 UShort_t nStrip = (iring == 0 ? 512 : 256);
190 Char_t ring = (iring == 0 ? 'I' : 'O');
191 for (UShort_t str = 0; str < nStrip; str++) {
a9579262 192 // UShort_t nSec = (iring == 0 ? 20 : 40);
193 // Char_t ring = (iring == 0 ? 'I' : 'O');
194 // for (UShort_t sec = 0; sec < nSec; sec++) {
6169f936 195 Int_t idx = DET2IDX(det, ring, 0, str);
a9579262 196 // Int_t idx = DET2IDX(det, ring, sec, 0);
6169f936 197 if (skip) {
198 xbins[i-1] = idx - .5;
199 skip = kFALSE;
200 }
201 xbins[i] = idx + .5;
202 i++;
203 }
204 skip = kTRUE;
205 i++;
206 }
207 }
208 TArrayD ybins(41);
a9579262 209 for (Int_t i = 0; i < ybins.fN; i++) ybins[i] = Float_t(i - .5);
6169f936 210 TH2D* hist = new TH2D("calib", Form("Calibration %s", option),
211 xbins.fN-1, xbins.fArray,
212 ybins.fN-1, ybins.fArray);
a9579262 213 hist->GetXaxis()->SetTitle("1000 #times detector + 512 #times ring + strip");
214 hist->GetYaxis()->SetTitle("sector");
215
6169f936 216 // hist->Draw("Lego");
217 // return;
218
219 for (UShort_t det = 1; det <= 3; det++) {
220 UShort_t nRings = (det == 1 ? 1 : 2);
221 for (UShort_t iring = 0; iring < nRings; iring++) {
222 UShort_t nSector = (iring == 0 ? 20 : 40);
223 UShort_t nStrip = (iring == 0 ? 512 : 256);
224 Char_t ring = (iring == 0 ? 'I' : 'O');
225 for (UShort_t sec = 0; sec < nSector; sec++) {
226 for (UShort_t str = 0; str < nStrip; str++) {
227 Int_t idx = DET2IDX(det, ring, sec, str);
228 UInt_t ddl, addr;
229 Double_t val = 0;
230 switch (what) {
231 case kPulseGain: // Path to PulseGain calib object
232 val = GetPulseGain(det,ring,sec,str); break;
233 case kThreshold: // Path to PulseGain calib object
234 val = GetThreshold(); break;
235 case kPedestal: // Path to Pedestal calib object
236 val = GetPedestal(det,ring,sec,str); break;
237 case kPedestalWidth: // Path to Pedestal calib object
238 val = GetPedestalWidth(det,ring,sec,str); break;
239 case kDead: // Path to Dead calib object
240 val = IsDead(det,ring,sec,str); break;
241 case kSampleRate: // Path to SampleRate calib object
242 val = GetSampleRate(det,ring,sec,str); break;
243 case kAltroMap: // Path to AltroMap calib object
244 Detector2Hardware(det,ring,sec,str, ddl, addr);
245 val = addr; break;
246 case kZeroSuppression: // Path to ZeroSuppression cal object
247 val = GetZeroSuppression(det,ring,sec,str); break;
248 case kMinStripRange: // Path to strip range cal object
249 val = GetMinStrip(det,ring,sec,str); break;
250 case kMaxStripRange: // Path to strip range cal object
251 val = GetMaxStrip(det,ring,sec,str); break;
252 }
253 hist->Fill(idx,sec,val);
a9579262 254 // hist->Fill(idx,str,val);
6169f936 255 }
256 }
257 }
258 }
259 hist->Draw("lego");
260}
261
c2fc1258 262//__________________________________________________________________
263void
264AliFMDParameters::Print(Option_t* option) const
265{
02a27b50 266 // Print information.
267 // If option contains an 'A' then everything is printed.
a9579262 268 // If the option contains the string "FMD" the function will search
269 // for detector, ring, sector, and strip numbers to print, in the
270 // format
271 //
272 // FMD<detector><ring>[<sector>,<string>]
273 //
274 // The wild card '*' means all of <detector>, <ring>, <sector>, or
275 // <strip>.
c2fc1258 276 TString opt(option);
a9579262 277 Bool_t showStrips = opt.Contains("a", TString::kIgnoreCase);
278 UShort_t ds[] = { 1, 2, 3, 0 };
279 Char_t rs[] = { 'I', 'O', '\0' };
280 UShort_t minStrip = 0;
281 UShort_t maxStrip = 512;
282 UShort_t minSector = 0;
283 UShort_t maxSector = 40;
284
285
8ec606c2 286 if (opt.Contains("fmd",TString::kIgnoreCase)) {
a9579262 287 showStrips = kTRUE;
288 size_t i = opt.Index("fmd",TString::kIgnoreCase);
289 size_t j = opt.Index("]",TString::kIgnoreCase);
290 enum {
97e94238 291 kReadDet,
292 kReadRing,
293 kReadLbrack,
294 kReadSector,
295 kReadComma,
296 kReadStrip,
297 kReadRbrack,
298 kEnd
299 } state = kReadDet;
8ec606c2 300 std::stringstream s(opt(i+4, j-i-3).Data());
97e94238 301 while (state != kEnd) {
a9579262 302 Char_t tmp = s.peek();
303 if (tmp == ' ' || tmp == '\t') {
304 s.get();
305 continue;
306 }
307 switch (state) {
97e94238 308 case kReadDet: { // First, try to kRead the detector
a9579262 309 if (tmp == '*') s.get();
310 else {
311 UShort_t det;
312 s >> det;
313 if (!s.bad()) {
314 ds[0] = det;
315 ds[1] = 0;
316 }
317 }
97e94238 318 state = (s.bad() ? kEnd : kReadRing);
a9579262 319 } break;
97e94238 320 case kReadRing: { // Then try to read the ring;
a9579262 321 Char_t ring;
322 s >> ring;
323 if (ring != '*' && !s.bad()) {
324 rs[0] = ring;
325 rs[1] = '\0';
326 }
97e94238 327 state = (s.bad() ? kEnd : kReadLbrack);
a9579262 328 } break;
97e94238 329 case kReadLbrack: { // Try to read a left bracket
a9579262 330 Char_t lbrack;
331 s >> lbrack;
97e94238 332 state = (s.bad() ? kEnd : kReadSector);
a9579262 333 } break;
97e94238 334 case kReadSector: { // Try to read a sector
a9579262 335 if (tmp == '*') s.get();
336 else {
337 UShort_t sec;
338 s >> sec;
339 if (!s.bad()) {
340 minSector = sec;
341 maxSector = sec + 1;
342 }
343 }
97e94238 344 state = (s.bad() ? kEnd : kReadComma);
a9579262 345 } break;
97e94238 346 case kReadComma: { // Try to read a left bracket
a9579262 347 Char_t comma;
348 s >> comma;
97e94238 349 state = (s.bad() ? kEnd : kReadStrip);
a9579262 350 } break;
97e94238 351 case kReadStrip: { // Try to read a strip
a9579262 352 if (tmp == '*') s.get();
353 else {
354 UShort_t str;
355 s >> str;
356 if (!s.bad()) {
357 minStrip = str;
358 maxStrip = str + 1;
359 }
360 }
97e94238 361 state = (s.bad() ? kEnd : kReadRbrack);
a9579262 362 } break;
97e94238 363 case kReadRbrack: { // Try to read a left bracket
a9579262 364 Char_t rbrack;
365 s >> rbrack;
97e94238 366 state = kEnd;
a9579262 367 } break;
97e94238 368 case kEnd:
a9579262 369 break;
370 }
371 }
8ec606c2 372 }
a9579262 373 UShort_t* dp = ds;
374 UShort_t det;
375 while ((det = *(dp++))) {
376
377 Char_t* rp = rs;
378 Char_t ring;
379 while ((ring = *(rp++))) {
380 if (det == 1 && ring == 'O') continue;
381 UShort_t min = GetMinStrip(det, ring, 0, 0);
382 UShort_t max = GetMaxStrip(det, ring, 0, 0);
383 UShort_t rate = GetSampleRate(det, ring, 0, 0);
384 std::cout << "FMD" << det << ring
385 << " Strip range: "
386 << std::setw(3) << min << ","
387 << std::setw(3) << max << " Rate: "
388 << std::setw(2) << rate << std::endl;
389
390 if (!showStrips) continue;
391 UShort_t nSec = ( ring == 'I' ? 20 : 40 );
392 UShort_t nStr = ( ring == 'I' ? 512 : 256 );
393 for (UShort_t sec = minSector; sec < maxSector && sec < nSec; sec++) {
c2fc1258 394 std::cout
8ec606c2 395 << " Strip | Pedestal | Gain | ZS thr. | Address\n"
396 << "--------+-------------------+------------+---------+---------"
c2fc1258 397 << std::endl;
a9579262 398 for (UShort_t str = minStrip; str < nStr && str < maxStrip; str++) {
399 if (str == minStrip) std::cout << std::setw(3) << sec << ",";
400 else std::cout << " ";
401 std::cout << std::setw(3) << str << " | ";
402 if (IsDead(det, ring, sec, str)) {
c2fc1258 403 std::cout << "dead" << std::endl;
404 continue;
405 }
406 UInt_t ddl, addr;
a9579262 407 Detector2Hardware(det, ring, sec, str, ddl, addr);
408 std::cout << std::setw(7) << GetPedestal(det, ring, sec, str)
c2fc1258 409 << "+/-" << std::setw(7)
a9579262 410 << GetPedestalWidth(det, ring, sec, str)
8ec606c2 411 << " | " << std::setw(10)
a9579262 412 << GetPulseGain(det, ring, sec, str)
413 << " | " << std::setw(7)
414 << GetZeroSuppression(det, ring, sec, str)
c2fc1258 415 << " | 0x" << std::hex << std::setw(4)
416 << std::setfill('0') << ddl << ",0x" << std::setw(3)
417 << addr << std::dec << std::setfill(' ') << std::endl;
a9579262 418 } // for (strip)
419 } // for (sector)
420 std::cout
421 << "============================================================="
422 << std::endl;
423 } // while (ring)
424 } // while (det)
425
c2fc1258 426}
427
428//__________________________________________________________________
429void
430AliFMDParameters::SetStripRange(UShort_t min, UShort_t max)
431{
02a27b50 432 // Set fixed strip range
c2fc1258 433 fFixedMinStrip = min;
434 fFixedMaxStrip = max;
435}
436
1e8f773e 437//__________________________________________________________________
438void
439AliFMDParameters::InitPulseGain()
440{
02a27b50 441 // Get pulse gain from CDB or used fixed
57c3c593 442 AliCDBManager* cdb = AliCDBManager::Instance();
443 AliCDBEntry* gain = cdb->Get(fgkPulseGain);
1e8f773e 444 if (!gain) {
f95a63c4 445 AliFatal(Form("No %s found in CDB, perhaps you need to "
1e8f773e 446 "use AliFMDCalibFaker?", fgkPulseGain));
447 return;
448 }
57c3c593 449
f95a63c4 450 AliFMDDebug(1, ("Got gain from CDB"));
1e8f773e 451 fPulseGain = dynamic_cast<AliFMDCalibGain*>(gain->GetObject());
f95a63c4 452 if (!fPulseGain) AliFatal("Invalid pulser gain object from CDB");
1e8f773e 453}
454//__________________________________________________________________
455void
456AliFMDParameters::InitPedestal()
457{
02a27b50 458 // Initialize the pedestals from CDB
1e8f773e 459 AliCDBManager* cdb = AliCDBManager::Instance();
460 AliCDBEntry* pedestal = cdb->Get(fgkPedestal);
461 if (!pedestal) {
f95a63c4 462 AliFatal(Form("No %s found in CDB, perhaps you need to "
1e8f773e 463 "use AliFMDCalibFaker?", fgkPedestal));
464 return;
57c3c593 465 }
f95a63c4 466 AliFMDDebug(1, ("Got pedestal from CDB"));
1e8f773e 467 fPedestal = dynamic_cast<AliFMDCalibPedestal*>(pedestal->GetObject());
f95a63c4 468 if (!fPedestal) AliFatal("Invalid pedestal object from CDB");
1e8f773e 469}
470
471//__________________________________________________________________
472void
473AliFMDParameters::InitDeadMap()
474{
02a27b50 475 // Get Dead-channel-map from CDB
1e8f773e 476 AliCDBManager* cdb = AliCDBManager::Instance();
477 AliCDBEntry* deadMap = cdb->Get(fgkDead);
478 if (!deadMap) {
f95a63c4 479 AliFatal(Form("No %s found in CDB, perhaps you need to "
1e8f773e 480 "use AliFMDCalibFaker?", fgkDead));
481 return;
57c3c593 482 }
f95a63c4 483 AliFMDDebug(1, ("Got dead map from CDB"));
1e8f773e 484 fDeadMap = dynamic_cast<AliFMDCalibDeadMap*>(deadMap->GetObject());
f95a63c4 485 if (!fDeadMap) AliFatal("Invalid dead map object from CDB");
1e8f773e 486}
487
488//__________________________________________________________________
489void
490AliFMDParameters::InitZeroSuppression()
491{
02a27b50 492 // Get 0-suppression from CDB
1e8f773e 493 AliCDBManager* cdb = AliCDBManager::Instance();
494 AliCDBEntry* zeroSup = cdb->Get(fgkZeroSuppression);
495 if (!zeroSup) {
f95a63c4 496 AliFatal(Form("No %s found in CDB, perhaps you need to "
1e8f773e 497 "use AliFMDCalibFaker?", fgkZeroSuppression));
498 return;
57c3c593 499 }
f95a63c4 500 AliFMDDebug(1, ("Got zero suppression from CDB"));
1e8f773e 501 fZeroSuppression =
502 dynamic_cast<AliFMDCalibZeroSuppression*>(zeroSup->GetObject());
f95a63c4 503 if (!fZeroSuppression)AliFatal("Invalid zero suppression object from CDB");
1e8f773e 504}
505
506//__________________________________________________________________
507void
508AliFMDParameters::InitSampleRate()
509{
02a27b50 510 // get Sample rate from CDB
1e8f773e 511 AliCDBManager* cdb = AliCDBManager::Instance();
512 AliCDBEntry* sampRat = cdb->Get(fgkSampleRate);
513 if (!sampRat) {
f95a63c4 514 AliFatal(Form("No %s found in CDB, perhaps you need to "
1e8f773e 515 "use AliFMDCalibFaker?", fgkSampleRate));
516 return;
57c3c593 517 }
f95a63c4 518 AliFMDDebug(1, ("Got zero suppression from CDB"));
1e8f773e 519 fSampleRate = dynamic_cast<AliFMDCalibSampleRate*>(sampRat->GetObject());
f95a63c4 520 if (!fSampleRate) AliFatal("Invalid zero suppression object from CDB");
1e8f773e 521}
522
523//__________________________________________________________________
524void
525AliFMDParameters::InitAltroMap()
526{
02a27b50 527 // Get hardware mapping from CDB
1e8f773e 528 AliCDBManager* cdb = AliCDBManager::Instance();
529 AliCDBEntry* hwMap = cdb->Get(fgkAltroMap);
530 if (!hwMap) {
f95a63c4 531 AliFatal(Form("No %s found in CDB, perhaps you need to "
1e8f773e 532 "use AliFMDCalibFaker?", fgkAltroMap));
533 fAltroMap = new AliFMDAltroMapping;
534 return;
57c3c593 535 }
f95a63c4 536 AliFMDDebug(1, ("Got ALTRO map from CDB"));
1e8f773e 537 fAltroMap = dynamic_cast<AliFMDAltroMapping*>(hwMap->GetObject());
538 if (!fAltroMap) {
f95a63c4 539 AliFatal("Invalid ALTRO map object from CDB");
1e8f773e 540 fAltroMap = new AliFMDAltroMapping;
57c3c593 541 }
57c3c593 542}
543
c2fc1258 544//__________________________________________________________________
545void
546AliFMDParameters::InitStripRange()
547{
02a27b50 548 // Get strips read-out from CDB
c2fc1258 549 AliCDBManager* cdb = AliCDBManager::Instance();
550 AliCDBEntry* range = cdb->Get(fgkStripRange);
551 if (!range) {
f95a63c4 552 AliFatal(Form("No %s found in CDB, perhaps you need to "
c2fc1258 553 "use AliFMDCalibFaker?", fgkStripRange));
554 return;
555 }
f95a63c4 556 AliFMDDebug(1, ("Got strip range from CDB"));
c2fc1258 557 fStripRange = dynamic_cast<AliFMDCalibStripRange*>(range->GetObject());
f95a63c4 558 if (!fStripRange) AliFatal("Invalid strip range object from CDB");
c2fc1258 559}
560
1e8f773e 561
8f6ee336 562//__________________________________________________________________
563Float_t
564AliFMDParameters::GetThreshold() const
565{
02a27b50 566 // Get threshold from CDB
8f6ee336 567 if (!fPulseGain) return fFixedThreshold;
568 return fPulseGain->Threshold();
569}
570
571//__________________________________________________________________
572Float_t
573AliFMDParameters::GetPulseGain(UShort_t detector, Char_t ring,
574 UShort_t sector, UShort_t strip) const
575{
576 // Returns the pulser calibrated gain for strip # strip in sector #
577 // sector or ring id ring of detector # detector.
578 //
579 // For simulation, this is normally set to
580 //
581 // VA1_MIP_Range
582 // ------------------ * MIP_Energy_Loss
583 // ALTRO_channel_size
584 //
585 if (!fPulseGain) {
586 if (fFixedPulseGain <= 0)
587 fFixedPulseGain = fVA1MipRange * GetEdepMip() / fAltroChannelSize;
588 return fFixedPulseGain;
589 }
f95a63c4 590 AliFMDDebug(50, ("pulse gain for FMD%d%c[%2d,%3d]=%f",
1e8f773e 591 detector, ring, sector, strip,
592 fPulseGain->Value(detector, ring, sector, strip)));
8f6ee336 593 return fPulseGain->Value(detector, ring, sector, strip);
594}
595
596//__________________________________________________________________
597Bool_t
598AliFMDParameters::IsDead(UShort_t detector, Char_t ring,
599 UShort_t sector, UShort_t strip) const
600{
02a27b50 601 // Check if the channel is dead
8f6ee336 602 if (!fDeadMap) return kFALSE;
f95a63c4 603 AliFMDDebug(50, ("Dead for FMD%d%c[%2d,%3d]=%s",
1e8f773e 604 detector, ring, sector, strip,
605 fDeadMap->operator()(detector, ring, sector, strip) ?
606 "no" : "yes"));
8f6ee336 607 return fDeadMap->operator()(detector, ring, sector, strip);
608}
609
610//__________________________________________________________________
611UShort_t
612AliFMDParameters::GetZeroSuppression(UShort_t detector, Char_t ring,
613 UShort_t sector, UShort_t strip) const
614{
02a27b50 615 // Get zero suppression threshold
8f6ee336 616 if (!fZeroSuppression) return fFixedZeroSuppression;
617 // Need to map strip to ALTRO chip.
f95a63c4 618 AliFMDDebug(50, ("zero sup. for FMD%d%c[%2d,%3d]=%f",
1e8f773e 619 detector, ring, sector, strip,
620 fZeroSuppression->operator()(detector, ring,
621 sector, strip)));
8f6ee336 622 return fZeroSuppression->operator()(detector, ring, sector, strip/128);
623}
624
625//__________________________________________________________________
626UShort_t
c2fc1258 627AliFMDParameters::GetSampleRate(UShort_t det, Char_t ring, UShort_t sector,
628 UShort_t str) const
8f6ee336 629{
02a27b50 630 // Get sampl rate
8f6ee336 631 if (!fSampleRate) return fFixedSampleRate;
632 // Need to map sector to digitizier card.
c2fc1258 633 UInt_t ret = fSampleRate->Rate(det, ring, sector, str);
f95a63c4 634 AliFMDDebug(50, ("Sample rate for FMD%d%c[%2d,%3d]=%d",
c2fc1258 635 det, ring, sector, str, ret));
636 return ret;
637}
638
639//__________________________________________________________________
640UShort_t
641AliFMDParameters::GetMinStrip(UShort_t det, Char_t ring, UShort_t sector,
642 UShort_t str) const
643{
02a27b50 644 // Get strip range read out
c2fc1258 645 if (!fStripRange) return fFixedMinStrip;
646 // Need to map sector to digitizier card.
647 UInt_t ret = fStripRange->Min(det, ring, sector, str);
f95a63c4 648 AliFMDDebug(50, ("Min strip # for FMD%d%c[%2d,%3d]=%d",
c2fc1258 649 det, ring, sector, str, ret));
650 return ret;
651}
652
653//__________________________________________________________________
654UShort_t
655AliFMDParameters::GetMaxStrip(UShort_t det, Char_t ring, UShort_t sector,
656 UShort_t str) const
657{
02a27b50 658 // Get strip range read out
c2fc1258 659 if (!fStripRange) return fFixedMaxStrip;
660 // Need to map sector to digitizier card.
661 UInt_t ret = fStripRange->Max(det, ring, sector, str);
f95a63c4 662 AliFMDDebug(50, ("Max strip # for FMD%d%c[%2d,%3d]=%d",
c2fc1258 663 det, ring, sector, str, ret));
664 return ret;
8f6ee336 665}
1a1fdef7 666
8f6ee336 667//__________________________________________________________________
668Float_t
669AliFMDParameters::GetPedestal(UShort_t detector, Char_t ring,
670 UShort_t sector, UShort_t strip) const
671{
02a27b50 672 // Get the pedesal
8f6ee336 673 if (!fPedestal) return fFixedPedestal;
f95a63c4 674 AliFMDDebug(50, ("pedestal for FMD%d%c[%2d,%3d]=%f",
1e8f773e 675 detector, ring, sector, strip,
676 fPedestal->Value(detector, ring, sector, strip)));
8f6ee336 677 return fPedestal->Value(detector, ring, sector, strip);
678}
679
680//__________________________________________________________________
681Float_t
682AliFMDParameters::GetPedestalWidth(UShort_t detector, Char_t ring,
683 UShort_t sector, UShort_t strip) const
684{
02a27b50 685 // Get the pedesal
8f6ee336 686 if (!fPedestal) return fFixedPedestalWidth;
f95a63c4 687 AliFMDDebug(50, ("pedetal width for FMD%d%c[%2d,%3d]=%f",
1e8f773e 688 detector, ring, sector, strip,
689 fPedestal->Width(detector, ring, sector, strip)));
8f6ee336 690 return fPedestal->Width(detector, ring, sector, strip);
691}
692
1a1fdef7 693//__________________________________________________________________
57c3c593 694AliFMDAltroMapping*
695AliFMDParameters::GetAltroMap() const
696{
02a27b50 697 // Get the hardware address to detector index map
57c3c593 698 return fAltroMap;
1a1fdef7 699}
700
57c3c593 701
bf000c32 702//__________________________________________________________________
703Bool_t
f6449cc0 704AliFMDParameters::Hardware2Detector(UInt_t ddl, UInt_t board,
705 UInt_t chip, UInt_t chan,
706 UShort_t& det, Char_t& ring,
707 UShort_t& sec, UShort_t& str) const
708{
709 // Map hardware address to detector index
710 if (!fAltroMap) return kFALSE;
711 return fAltroMap->Hardware2Detector(ddl,board,chip,chan, det,ring,sec,str);
712}
713//__________________________________________________________________
714Bool_t
715AliFMDParameters::Hardware2Detector(UInt_t ddl, UInt_t addr,
716 UShort_t& det, Char_t& ring,
717 UShort_t& sec, UShort_t& str) const
bf000c32 718{
02a27b50 719 // Map hardware address to detector index
57c3c593 720 if (!fAltroMap) return kFALSE;
721 return fAltroMap->Hardware2Detector(ddl, addr, det, ring, sec, str);
bf000c32 722}
723
724//__________________________________________________________________
725Bool_t
f6449cc0 726AliFMDParameters::Detector2Hardware(UShort_t det, Char_t ring,
727 UShort_t sec, UShort_t str,
728 UInt_t& ddl, UInt_t& board,
729 UInt_t& chip, UInt_t& chan) const
730{
731 // Map detector index to hardware address
732 if (!fAltroMap) return kFALSE;
733 return fAltroMap->Detector2Hardware(det,ring,sec,str, ddl,board,chip,chan);
734}
735
736//__________________________________________________________________
737Bool_t
738AliFMDParameters::Detector2Hardware(UShort_t det, Char_t ring,
739 UShort_t sec, UShort_t str,
740 UInt_t& ddl, UInt_t& addr) const
bf000c32 741{
02a27b50 742 // Map detector index to hardware address
57c3c593 743 if (!fAltroMap) return kFALSE;
744 return fAltroMap->Detector2Hardware(det, ring, sec, str, ddl, addr);
bf000c32 745}
746
57c3c593 747
748//__________________________________________________________________
749Float_t
750AliFMDParameters::GetEdepMip() const
751{
752 // Get energy deposited by a MIP in the silicon sensors
753 if (fEdepMip <= 0){
754 AliFMDGeometry* fmd = AliFMDGeometry::Instance();
02a27b50 755 fEdepMip = (fkSiDeDxMip
57c3c593 756 * fmd->GetRing('I')->GetSiThickness()
757 * fmd->GetSiDensity());
758 }
759 return fEdepMip;
760}
761
762
bf000c32 763
764
765
1a1fdef7 766//____________________________________________________________________
767//
768// EOF
769//