#ifndef ALIFMDCALIBSTRIPRANGE_H #define ALIFMDCALIBSTRIPRANGE_H /* Copyright(c) 1998-2000, ALICE Experiment at CERN, All rights * reserved. * * See cxx source for full Copyright notice */ /** @file AliFMDCalibStripRange.h @author Christian Holm Christensen @date Sun Mar 26 18:32:14 2006 @brief Per digitizer card pulser calibration */ #ifndef ROOT_TObject # include #endif #ifndef ALIFMDUSHORTMAP_H # include "AliFMDUShortMap.h" #endif #ifndef ROOT_TArrayI # include #endif //____________________________________________________________________ /** @brief Per digitizer card pulser calibration @ingroup FMD_base */ class AliFMDCalibStripRange : public TObject { public: /** CTOR */ AliFMDCalibStripRange(); /** Copy CTOR @param o Object to copy from */ AliFMDCalibStripRange(const AliFMDCalibStripRange& o); /** Assignment operator @param o Object to assign from @return Reference to assign from */ AliFMDCalibStripRange& operator=(const AliFMDCalibStripRange& o); /** Set sample for a DDL @param det Detector # @param ring Ring ID @param sec Sector # @param str Strip number (not used) @param min Minimum strip (0-127) @param max Maximum strip (0-127) */ void Set(UShort_t det, Char_t ring, UShort_t sec, UShort_t str, UShort_t min, UShort_t max); /** Get minimum strip read out (0-127) @param det Detector # @param ring Ring ID @param sec Sector # @param str Strip number (not used) @return Minimum strip */ UShort_t Min(UShort_t det, Char_t ring, UShort_t sec, UShort_t str=0) const; /** Get maximum strip read out (0-127) @param det Detector # @param ring Ring ID @param sec Sector # @param str Strip number (not used) @return Maximum strip */ UShort_t Max(UShort_t det, Char_t ring, UShort_t sec, UShort_t str=0) const; protected: // TArrayI fRates; // Sample rates AliFMDUShortMap fRates; ClassDef(AliFMDCalibStripRange,1); // Sample rates }; #endif //____________________________________________________________________ // // Local Variables: // mode: C++ // End: //