Changeset 2728 for trunk/MagicSoft/Mars/manalysis/MExtractedSignalCam.h
- Timestamp:
- 12/20/03 13:46:17 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MExtractedSignalCam.h
r2699 r2728 7 7 8 8 class TClonesArray; 9 10 class MGeomCam;11 9 class MExtractedSignalPix; 12 10 … … 16 14 TClonesArray *fArray; // FIXME: Change TClonesArray away from a pointer? 17 15 16 // FIXME: Is it necessary to store this information for each event? 18 17 Byte_t fNumUsedHiGainFADCSlices; 19 18 Byte_t fNumUsedLoGainFADCSlices; … … 24 23 Byte_t fLastUsedSliceHiGain; 25 24 Byte_t fLastUsedSliceLoGain; 26 27 25 28 26 public: … … 47 45 48 46 void SetNumUsedFADCSlices(Byte_t numh, Byte_t firsth, Byte_t lasth, 49 Byte_t numl, Byte_t firstl, Byte_t lastl) 50 { 51 fNumUsedHiGainFADCSlices = numh; 52 fFirstUsedSliceHiGain = firsth; 53 fLastUsedSliceHiGain = lasth; 54 fNumUsedLoGainFADCSlices = numl; 55 fFirstUsedSliceLoGain = firstl; 56 fLastUsedSliceLoGain = lastl; 57 } 47 Byte_t numl, Byte_t firstl, Byte_t lastl) 48 { 49 // FIXME: Calculate the number of used slices from first/last 50 // to make sure, that the stored values are always 51 // consistent! 52 fNumUsedHiGainFADCSlices = numh; 53 fFirstUsedSliceHiGain = firsth; 54 fLastUsedSliceHiGain = lasth; 55 fNumUsedLoGainFADCSlices = numl; 56 fFirstUsedSliceLoGain = firstl; 57 fLastUsedSliceLoGain = lastl; 58 } 58 59 59 60 MExtractedSignalPix &operator[](Int_t i);
Note:
See TracChangeset
for help on using the changeset viewer.