Changeset 7355 for trunk/MagicSoft/Mars/msignal
- Timestamp:
- 09/16/05 14:57:22 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/msignal/MSignalPix.cc
r6856 r7355 17 17 ! 18 18 ! Author(s): Thomas Bretz 12/2000 <mailto:tbretz@astro.uni-wuerzburg.de> 19 ! Author(s): Harald Kornmayer 1/200120 19 ! 21 ! Copyright: MAGIC Software Development, 2000-200 420 ! Copyright: MAGIC Software Development, 2000-2005 22 21 ! 23 22 ! … … 59 58 // the container for calibrated data will change soon. 60 59 // 60 // Version 7: 61 // ---------- 62 // - removed '!' from fRing to allow the status 'Unmapped' to be stored 63 // after calibration (bad pixel treatment). This increases the file 64 // size of the calibrated data by roughly 0.5% 65 // 61 66 //////////////////////////////////////////////////////////////////////////// 62 67 #include "MSignalPix.h" … … 97 102 { 98 103 gLog << GetDescriptor();// << " Pixel: "<< fPixId; 99 gLog << (fRing>0?" Used ":" Unused "); 104 switch (fRing) 105 { 106 case -1: 107 gLog << "Unampped"; 108 break; 109 case 0: 110 gLog << " Unused "; 111 break; 112 default: 113 gLog << " Used "; 114 break; 115 } 100 116 gLog << (fIsCore?" Core ":" "); 101 117 gLog << "Nphot= " << fPhot << " Error(Nphot)=" << fErrPhot << endl;
Note:
See TracChangeset
for help on using the changeset viewer.