Ignore:
Timestamp:
03/30/01 12:08:08 (24 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mraw
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mraw/MRawEvtPixelIter.cc

    r664 r712  
    1414//     //   pixel.GetPixelId();
    1515//     //   pixel.GetHiGainFadcSamples()[i]; // i is the number of the slice
    16 //     //   pixel.IsLoGain();                // check if pixel has
     16//     //   pixel.HasLoGain();               // check if pixel has
    1717//     //   pixel.GetLoGainFadcSamples()[i]; // i is the number of the slice
    1818//
     
    123123    // return the sum of the lo gain samples of the present pixel
    124124    //
    125     if (!IsLoGain())
     125    if (!HasLoGain())
    126126        return 0;
    127127
  • trunk/MagicSoft/Mars/mraw/MRawEvtPixelIter.h

    r698 r712  
    6666    ULong_t GetSumHiGainFadcSamples() const;
    6767
    68     Bool_t IsLoGain() const
     68    Bool_t HasLoGain() const
    6969    {
    7070        //
     
    8080        // for the actual pixel, else return zero
    8181        //
    82         return IsLoGain() ? fLoGainPos : NULL;
     82        return HasLoGain() ? fLoGainPos : NULL;
    8383    }
    8484
Note: See TracChangeset for help on using the changeset viewer.