]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDCalibPedestal.h
Fixes, and extra debug
[u/mrichter/AliRoot.git] / FMD / AliFMDCalibPedestal.h
1 #ifndef ALIFMDCALIBPEDESTAL_H
2 #define ALIFMDCALIBPEDESTAL_H
3 /* Copyright(c) 1998-2000, ALICE Experiment at CERN, All rights
4  * reserved. 
5  *
6  * See cxx source for full Copyright notice                               
7  */
8 #ifndef ALIFMDFLOATMAP_H
9 # include <AliFMDFloatMap.h>
10 #endif
11 //____________________________________________________________________
12 //
13 // Pedestal value and width for each strip in the FMD
14 //
15 class AliFMDCalibPedestal : public TObject 
16 {
17 public:
18   AliFMDCalibPedestal();
19   ~AliFMDCalibPedestal() {}
20   AliFMDCalibPedestal(const AliFMDCalibPedestal& o);
21   AliFMDCalibPedestal& operator=(const AliFMDCalibPedestal& o);
22   void Set(UShort_t det, Char_t ring, UShort_t sec, UShort_t str, 
23            Float_t ped, Float_t pedW);
24   Float_t Value(UShort_t det, Char_t ring, UShort_t sec, UShort_t str);
25   Float_t Width(UShort_t det, Char_t ring, UShort_t sec, UShort_t str);
26 private:
27   AliFMDFloatMap fValue;
28   AliFMDFloatMap fWidth;
29   ClassDef(AliFMDCalibPedestal, 1) // Pedestal data for the FMD 
30 };
31
32
33 #endif
34 //____________________________________________________________________
35 //
36 // Local Variables:
37 //   mode: C++
38 // End:
39 //
40
41