Changeset 2665 for trunk/MagicSoft/Mars/manalysis/MExtractedSignalCam.h
- Timestamp:
- 12/12/03 12:49:51 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MExtractedSignalCam.h
r2643 r2665 19 19 Byte_t fNumUsedLoGainFADCSlices; 20 20 21 Byte_t fFirstUsedSliceHiGain; 22 Byte_t fFirstUsedSliceLoGain; 23 24 Byte_t fLastUsedSliceHiGain; 25 Byte_t fLastUsedSliceLoGain; 26 27 21 28 public: 22 29 … … 32 39 Byte_t GetNumUsedHiGainFADCSlices() { return fNumUsedHiGainFADCSlices; } 33 40 Byte_t GetNumUsedLoGainFADCSlices() { return fNumUsedLoGainFADCSlices; } 34 void SetNumUsedFADCSlices(Byte_t numh, Byte_t numl) 41 42 Byte_t GetFirstUsedSliceHiGain() { return fFirstUsedSliceHiGain; } 43 Byte_t GetLastUsedSliceHiGain() { return fLastUsedSliceHiGain; } 44 45 Byte_t GetFirstUsedSliceLoGain() { return fFirstUsedSliceLoGain; } 46 Byte_t GetLastUsedSliceLoGain() { return fLastUsedSliceLoGain; } 47 48 void SetNumUsedFADCSlices(Byte_t numh, Byte_t firsth, Byte_t lasth, 49 Byte_t numl, Byte_t firstl, Byte_t lastl) 35 50 { 36 51 fNumUsedHiGainFADCSlices = numh; 52 fFirstUsedSliceHiGain = firsth; 53 fLastUsedSliceHiGain = lasth; 37 54 fNumUsedLoGainFADCSlices = numl; 55 fFirstUsedSliceLoGain = firstl; 56 fLastUsedSliceLoGain = lastl; 38 57 } 39 58
Note:
See TracChangeset
for help on using the changeset viewer.