]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDCalibSampleRate.h
Added AliFMDAltroMapping
[u/mrichter/AliRoot.git] / FMD / AliFMDCalibSampleRate.h
1 #ifndef ALIFMDCALIBSAMPLERATE_H
2 #define ALIFMDCALIBSAMPLERATE_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 ROOT_TObject
9 # include <TObject.h>
10 #endif
11 #ifndef ROOT_TArrayI
12 # include <TArrayI.h>
13 #endif
14 //____________________________________________________________________
15 //
16 // Gain value and width for each strip in the FMD
17 //
18 class AliFMDCalibSampleRate : public TObject
19 {
20 public:
21   AliFMDCalibSampleRate();
22   AliFMDCalibSampleRate(const AliFMDCalibSampleRate& o);
23   AliFMDCalibSampleRate& operator=(const AliFMDCalibSampleRate& o);
24   void Set(UShort_t ddl, UShort_t rate);
25   UShort_t Rate(UShort_t ddl) const;
26 protected:
27   TArrayI fRates; // Sample rates 
28   ClassDef(AliFMDCalibSampleRate,1); // Sample rates 
29 };
30
31 #endif
32 //____________________________________________________________________
33 //
34 // Local Variables:
35 //   mode: C++
36 // End:
37 //
38
39