Ignore:
Timestamp:
12/02/04 14:11:34 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mpedestal/MPedCalcFromLoGain.cc

    r5507 r5547  
    267267   if (fCheckWinLast > lastavailable) //changed to override check
    268268     {
    269        *fLog << warn << GetDescriptor();
    270        *fLog << " - WARNING: Last Check Window slice out of range...adjusting to last available slice ";
    271        *fLog << lastavailable << endl;
     269       *fLog << warn << GetDescriptor()
     270             << " - WARNING: Last Check Window slice out of range...adjusting to last available slice "
     271             << lastavailable << endl;
    272272       
    273273       fCheckWinLast = lastavailable;
     274     }
     275
     276   if (fCheckWinLast < fExtractWinLast)
     277     {
     278       *fLog << warn << GetDescriptor()
     279             << " - WARNING: Last Check Window slice lower than extraction window "
     280             << " - push it up to last number of low-gain samples: ";
     281       fCheckWinLast = fExtractWinLast;
     282       *fLog << fCheckWinLast << endl;
    274283     }
    275284
Note: See TracChangeset for help on using the changeset viewer.