]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDCalibPedestal.cxx
Added new library libFMDutil. This library contains utility classes that
[u/mrichter/AliRoot.git] / FMD / AliFMDCalibPedestal.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
16 /* $Id$ */
17
18 //____________________________________________________________________
19 //                                                                          
20 //
21 //
22 #include "AliFMDCalibPedestal.h"        // ALIFMDCALIBPEDESTAL_H
23 //____________________________________________________________________
24 ClassImp(AliFMDCalibPedestal)
25 #if 0
26   ; // This is here to keep Emacs for indenting the next line
27 #endif
28
29 //____________________________________________________________________
30 AliFMDCalibPedestal::AliFMDCalibPedestal()
31 {
32   fValue.Reset(-1.);
33   fWidth.Reset(-1.);
34 }
35
36 //____________________________________________________________________
37 AliFMDCalibPedestal::AliFMDCalibPedestal(const AliFMDCalibPedestal& o)
38   : TObject(o), fValue(o.fValue), fWidth(o.fWidth)
39 {}
40
41 //____________________________________________________________________
42 AliFMDCalibPedestal&
43 AliFMDCalibPedestal::operator=(const AliFMDCalibPedestal& o)
44 {
45   fValue = o.fValue;
46   fWidth = o.fWidth;
47   return (*this);
48 }
49
50 //____________________________________________________________________
51 void
52 AliFMDCalibPedestal::Set(UShort_t det, Char_t ring, UShort_t sec, 
53                          UShort_t str, Float_t ped, Float_t pedW)
54 {
55   if (fValue.CheckIndex(det, ring, sec, str) < 0) return;
56   fValue(det, ring, sec, str) = ped;
57   fWidth(det, ring, sec, str) = pedW;
58 }
59
60 //____________________________________________________________________
61 Float_t
62 AliFMDCalibPedestal::Value(UShort_t det, Char_t ring, UShort_t sec, 
63                            UShort_t str)
64 {
65   return fValue(det, ring, sec, str);
66 }
67
68 //____________________________________________________________________
69 Float_t
70 AliFMDCalibPedestal::Width(UShort_t det, Char_t ring, UShort_t sec, 
71                            UShort_t str)
72 {
73   return fValue(det, ring, sec, str);
74 }
75
76 //____________________________________________________________________
77 //
78 // EOF
79 //