]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDCalibGain.cxx
Fixes, and extra debug
[u/mrichter/AliRoot.git] / FMD / AliFMDCalibGain.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 "AliFMDCalibGain.h"    // ALIFMDCALIBGAIN_H
23 //____________________________________________________________________
24 ClassImp(AliFMDCalibGain)
25 #if 0
26   ; // This is here to keep Emacs for indenting the next line
27 #endif
28
29 //____________________________________________________________________
30 AliFMDCalibGain::AliFMDCalibGain()
31 {
32   fValue.Reset(-1.);
33   fThreshold = -1.;
34 }
35
36 //____________________________________________________________________
37 AliFMDCalibGain::AliFMDCalibGain(const AliFMDCalibGain& o)
38   : TObject(o), fValue(o.fValue), fThreshold(o.fThreshold)
39 {}
40
41 //____________________________________________________________________
42 AliFMDCalibGain&
43 AliFMDCalibGain::operator=(const AliFMDCalibGain& o)
44 {
45   fValue     = o.fValue;
46   fThreshold = o.fThreshold;
47   return (*this);
48 }
49
50 //____________________________________________________________________
51 void
52 AliFMDCalibGain::Set(UShort_t det, Char_t ring, UShort_t sec, 
53                      UShort_t str, Float_t val)
54 {
55   if (fValue.CheckIndex(det, ring, sec, str) < 0) return;
56   fValue(det, ring, sec, str) = val;
57 }
58
59 //____________________________________________________________________
60 Float_t
61 AliFMDCalibGain::Value(UShort_t det, Char_t ring, UShort_t sec, 
62                        UShort_t str)
63 {
64   return fValue(det, ring, sec, str);
65 }
66
67 //____________________________________________________________________
68 //
69 // EOF
70 //