Ignore:
Timestamp:
09/16/05 14:57:22 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/msignal/MSignalPix.cc

    r6856 r7355  
    1717!
    1818!   Author(s): Thomas Bretz  12/2000 <mailto:tbretz@astro.uni-wuerzburg.de>
    19 !   Author(s): Harald Kornmayer 1/2001
    2019!
    21 !   Copyright: MAGIC Software Development, 2000-2004
     20!   Copyright: MAGIC Software Development, 2000-2005
    2221!
    2322!
     
    5958//    the container for calibrated data will change soon.
    6059//
     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//
    6166////////////////////////////////////////////////////////////////////////////
    6267#include "MSignalPix.h"
     
    97102{
    98103    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    }
    100116    gLog << (fIsCore?" Core ":"      ");
    101117    gLog << "Nphot= " << fPhot << " Error(Nphot)=" << fErrPhot << endl;
Note: See TracChangeset for help on using the changeset viewer.