Changeset 712 for trunk/MagicSoft/Mars/mraw
- Timestamp:
- 03/30/01 12:08:08 (24 years ago)
- Location:
- trunk/MagicSoft/Mars/mraw
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mraw/MRawEvtPixelIter.cc
r664 r712 14 14 // // pixel.GetPixelId(); 15 15 // // pixel.GetHiGainFadcSamples()[i]; // i is the number of the slice 16 // // pixel. IsLoGain();// check if pixel has16 // // pixel.HasLoGain(); // check if pixel has 17 17 // // pixel.GetLoGainFadcSamples()[i]; // i is the number of the slice 18 18 // … … 123 123 // return the sum of the lo gain samples of the present pixel 124 124 // 125 if (! IsLoGain())125 if (!HasLoGain()) 126 126 return 0; 127 127 -
trunk/MagicSoft/Mars/mraw/MRawEvtPixelIter.h
r698 r712 66 66 ULong_t GetSumHiGainFadcSamples() const; 67 67 68 Bool_t IsLoGain() const68 Bool_t HasLoGain() const 69 69 { 70 70 // … … 80 80 // for the actual pixel, else return zero 81 81 // 82 return IsLoGain() ? fLoGainPos : NULL;82 return HasLoGain() ? fLoGainPos : NULL; 83 83 } 84 84
Note:
See TracChangeset
for help on using the changeset viewer.