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