]>
Commit | Line | Data |
---|---|---|
c2fc1258 | 1 | #ifndef ALIFMDCALIBSTRIPRANGE_H |
2 | #define ALIFMDCALIBSTRIPRANGE_H | |
3 | /* Copyright(c) 1998-2000, ALICE Experiment at CERN, All rights | |
4 | * reserved. | |
5 | * | |
6 | * See cxx source for full Copyright notice | |
7 | */ | |
02a27b50 | 8 | //____________________________________________________________________ |
9 | // | |
10 | // This class stores which strips are read-out. | |
11 | // In principle this can be set for each half-ring. | |
12 | // However, in real life, all the detectors will probably read out all | |
13 | // strips, and dead areas can be handled off-line. | |
14 | // This information comes from DCS or the like. | |
15 | // | |
c2fc1258 | 16 | /** @file AliFMDCalibStripRange.h |
17 | @author Christian Holm Christensen <cholm@nbi.dk> | |
18 | @date Sun Mar 26 18:32:14 2006 | |
19 | @brief Per digitizer card pulser calibration | |
02a27b50 | 20 | @ingroup FMD_base |
c2fc1258 | 21 | */ |
408bf2b4 | 22 | #include <iosfwd> |
c2fc1258 | 23 | #ifndef ROOT_TObject |
24 | # include <TObject.h> | |
25 | #endif | |
26 | #ifndef ALIFMDUSHORTMAP_H | |
27 | # include "AliFMDUShortMap.h" | |
28 | #endif | |
29 | #ifndef ROOT_TArrayI | |
30 | # include <TArrayI.h> | |
31 | #endif | |
433a88bd | 32 | |
c2fc1258 | 33 | //____________________________________________________________________ |
34 | /** @brief Per digitizer card pulser calibration | |
35 | @ingroup FMD_base | |
36 | */ | |
37 | class AliFMDCalibStripRange : public TObject | |
38 | { | |
39 | public: | |
40 | /** CTOR */ | |
41 | AliFMDCalibStripRange(); | |
42 | /** Copy CTOR | |
43 | @param o Object to copy from */ | |
44 | AliFMDCalibStripRange(const AliFMDCalibStripRange& o); | |
45 | /** Assignment operator | |
46 | @param o Object to assign from | |
47 | @return Reference to assign from */ | |
48 | AliFMDCalibStripRange& operator=(const AliFMDCalibStripRange& o); | |
49 | /** Set sample for a DDL | |
50 | @param det Detector # | |
51 | @param ring Ring ID | |
52 | @param sec Sector # | |
53 | @param str Strip number (not used) | |
54 | @param min Minimum strip (0-127) | |
55 | @param max Maximum strip (0-127) */ | |
56 | void Set(UShort_t det, Char_t ring, UShort_t sec, UShort_t str, | |
57 | UShort_t min, UShort_t max); | |
58 | /** Get minimum strip read out (0-127) | |
59 | @param det Detector # | |
60 | @param ring Ring ID | |
61 | @param sec Sector # | |
62 | @param str Strip number (not used) | |
63 | @return Minimum strip */ | |
64 | UShort_t Min(UShort_t det, Char_t ring, UShort_t sec, UShort_t str=0) const; | |
65 | /** Get maximum strip read out (0-127) | |
66 | @param det Detector # | |
67 | @param ring Ring ID | |
68 | @param sec Sector # | |
69 | @param str Strip number (not used) | |
70 | @return Maximum strip */ | |
71 | UShort_t Max(UShort_t det, Char_t ring, UShort_t sec, UShort_t str=0) const; | |
433a88bd | 72 | /** |
73 | Dump stored strip ranges to file passed as ofstream | |
74 | @param outFile Outputfile | |
75 | */ | |
408bf2b4 | 76 | void WriteToFile(std::ostream &, Bool_t* detectors=0); |
433a88bd | 77 | /** |
78 | Read information from file and set values | |
79 | @param inFile inputFile | |
80 | */ | |
408bf2b4 | 81 | void ReadFromFile(std::istream &); |
433a88bd | 82 | |
045a97a7 | 83 | const AliFMDUShortMap& Ranges() const { return fRanges; } |
c2fc1258 | 84 | protected: |
85 | // TArrayI fRates; // Sample rates | |
02a27b50 | 86 | AliFMDUShortMap fRanges; // Min max |
c2fc1258 | 87 | ClassDef(AliFMDCalibStripRange,1); // Sample rates |
88 | }; | |
89 | ||
90 | #endif | |
91 | //____________________________________________________________________ | |
92 | // | |
93 | // Local Variables: | |
94 | // mode: C++ | |
95 | // End: | |
96 | // | |
97 | ||
98 |