Changeset 2350 for trunk/MagicSoft/Mars/manalysis/MCerPhotCalc.cc
- Timestamp:
- 09/17/03 16:28:51 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MCerPhotCalc.cc
r2347 r2350 270 270 } 271 271 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 274 284 275 285 fCerPhotEvt->FixSize();
Note:
See TracChangeset
for help on using the changeset viewer.