]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDCalibGain.cxx
Updates (N. Bastid)
[u/mrichter/AliRoot.git] / FMD / AliFMDCalibGain.cxx
CommitLineData
a3537838 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 **************************************************************************/
a3537838 15/* $Id$ */
c2fc1258 16/** @file AliFMDCalibGain.cxx
17 @author Christian Holm Christensen <cholm@nbi.dk>
18 @date Sun Mar 26 18:30:02 2006
19 @brief Per strip gain calibration
20*/
a3537838 21//____________________________________________________________________
22//
02a27b50 23// Gain value and width for each strip in the FMD.
24// Foo
25// Bar
26// Baz
27// Gnus
a3537838 28//
29#include "AliFMDCalibGain.h" // ALIFMDCALIBGAIN_H
30//____________________________________________________________________
31ClassImp(AliFMDCalibGain)
32#if 0
33 ; // This is here to keep Emacs for indenting the next line
34#endif
35
36//____________________________________________________________________
37AliFMDCalibGain::AliFMDCalibGain()
38{
02a27b50 39 // CTOR
a3537838 40 fValue.Reset(-1.);
41 fThreshold = -1.;
42}
43
44//____________________________________________________________________
45AliFMDCalibGain::AliFMDCalibGain(const AliFMDCalibGain& o)
46 : TObject(o), fValue(o.fValue), fThreshold(o.fThreshold)
02a27b50 47{
48 // Copy CTOR
49}
a3537838 50
51//____________________________________________________________________
52AliFMDCalibGain&
53AliFMDCalibGain::operator=(const AliFMDCalibGain& o)
54{
02a27b50 55 // Assignment operator
a3537838 56 fValue = o.fValue;
57 fThreshold = o.fThreshold;
58 return (*this);
59}
60
61//____________________________________________________________________
62void
63AliFMDCalibGain::Set(UShort_t det, Char_t ring, UShort_t sec,
64 UShort_t str, Float_t val)
65{
02a27b50 66 // Set the value for a strip
a3537838 67 if (fValue.CheckIndex(det, ring, sec, str) < 0) return;
68 fValue(det, ring, sec, str) = val;
69}
70
71//____________________________________________________________________
72Float_t
73AliFMDCalibGain::Value(UShort_t det, Char_t ring, UShort_t sec,
74 UShort_t str)
75{
02a27b50 76 // Get the value for a strip
a3537838 77 return fValue(det, ring, sec, str);
78}
79
80//____________________________________________________________________
81//
82// EOF
83//