Changeset 8132 for trunk/MagicSoft/Mars/msignal/MArrivalTimeCam.h
- Timestamp:
- 10/19/06 15:09:50 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/msignal/MArrivalTimeCam.h
r5601 r8132 18 18 TClonesArray *fArray; //-> FIXME: Change TClonesArray away from a pointer? 19 19 20 Byte_t fFirstUsedSliceHiGain;21 Byte_t fFirstUsedSliceLoGain;20 // Byte_t fFirstUsedSliceHiGain; 21 // Byte_t fFirstUsedSliceLoGain; 22 22 23 Byte_t fLastUsedSliceHiGain;24 Byte_t fLastUsedSliceLoGain;23 // Byte_t fLastUsedSliceHiGain; 24 // Byte_t fLastUsedSliceLoGain; 25 25 26 26 public: … … 37 37 Int_t GetSize() const; 38 38 39 Byte_t GetNumUsedFADCSlices() const { return fLastUsedSliceHiGain-fFirstUsedSliceHiGain+1; }40 Byte_t GetNumUsedHiGainFADCSlices() const { return fLastUsedSliceHiGain-fFirstUsedSliceHiGain+1; }41 Byte_t GetNumUsedLoGainFADCSlices() const { return fLastUsedSliceLoGain-fFirstUsedSliceLoGain+1; }39 // Byte_t GetNumUsedFADCSlices() const { return fLastUsedSliceHiGain-fFirstUsedSliceHiGain+1; } 40 // Byte_t GetNumUsedHiGainFADCSlices() const { return fLastUsedSliceHiGain-fFirstUsedSliceHiGain+1; } 41 // Byte_t GetNumUsedLoGainFADCSlices() const { return fLastUsedSliceLoGain-fFirstUsedSliceLoGain+1; } 42 42 43 Byte_t GetFirstUsedSliceHiGain() const { return fFirstUsedSliceHiGain; }44 Byte_t GetLastUsedSliceHiGain() const { return fLastUsedSliceHiGain; }43 // Byte_t GetFirstUsedSliceHiGain() const { return fFirstUsedSliceHiGain; } 44 // Byte_t GetLastUsedSliceHiGain() const { return fLastUsedSliceHiGain; } 45 45 46 Byte_t GetFirstUsedSliceLoGain() const { return fFirstUsedSliceLoGain; }47 Byte_t GetLastUsedSliceLoGain() const { return fLastUsedSliceLoGain; }48 46 // Byte_t GetFirstUsedSliceLoGain() const { return fFirstUsedSliceLoGain; } 47 // Byte_t GetLastUsedSliceLoGain() const { return fLastUsedSliceLoGain; } 48 /* 49 49 void SetUsedFADCSlices(Byte_t firsth, Byte_t lasth, 50 50 Byte_t firstl, Byte_t lastl) … … 55 55 fLastUsedSliceLoGain = lastl; 56 56 } 57 57 */ 58 58 MArrivalTimePix &operator[](Int_t i); 59 59 const MArrivalTimePix &operator[](Int_t i) const;
Note:
See TracChangeset
for help on using the changeset viewer.