Ignore:
Timestamp:
09/17/03 16:28:51 (21 years ago)
Author:
moralejo
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MCerPhotCalc.cc

    r2347 r2350  
    270270    }
    271271
    272     if (SaturatedPixels > 0)
    273       *fLog << warn << "WARNING " << SaturatedPixels << "pixels had saturating low gains..." << endl;
     272    switch(SaturatedPixels)
     273      {
     274      case 0:
     275        break;
     276      case 1:
     277        *fLog << warn << "WARNING: 1 pixel had saturating low gains..." << endl;
     278        break;
     279      default:
     280        *fLog << warn << "WARNING: " << SaturatedPixels << " pixels had saturating low gains..." << endl;
     281        break;
     282      }
     283
    274284
    275285    fCerPhotEvt->FixSize();
Note: See TracChangeset for help on using the changeset viewer.