Changeset 7012 for trunk


Ignore:
Timestamp:
05/11/05 18:50:42 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc

    r6993 r7012  
    448448  *fLog << endl;
    449449 
     450  PrintBadPixels(MBadPixelsPix::kPreviouslyExcluded,"Previously excluded");
    450451  PrintBadPixels(MBadPixelsPix::kChargeIsPedestal,"Signal smaller 3 Pedestal RMS");
    451452  PrintBadPixels(MBadPixelsPix::kChargeSigmaNotValid,"Signal smaller 3 Pedestal RMS");
     
    458459  PrintBadPixels(MBadPixelsPix::kHiGainOverFlow,"High-Gain Histogram Overflow");
    459460  PrintBadPixels(MBadPixelsPix::kLoGainOverFlow,"Low-Gain Histogram Overflow");
     461  PrintBadPixels(MBadPixelsPix::kDeadPedestalRms,"Presumably dead from Ped. Rms");
     462  PrintBadPixels(MBadPixelsPix::kFluctuatingArrivalTimes,"Fluctuating Pulse Arrival Times");
    460463
    461464  *fLog << endl;
     
    559562
    560563        (*this)[idx].SetUnsuitable(MBadPixelsPix::kUnsuitableRun);
     564        (*this)[idx].SetUncalibrated(MBadPixelsPix::kPreviouslyExcluded);
    561565    }
    562566}
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h

    r5996 r7012  
    3131    // All types are initialized to normal behaviour
    3232    enum UncalibratedType_t {
     33      kPreviouslyExcluded       = BIT(0),
    3334      kHiGainNotFitted          = BIT(1),
    3435      kLoGainNotFitted          = BIT(2),
     
    5253      kLoGainOverFlow           = BIT(20),
    5354      kHiLoNotFitted            = BIT(21),
    54       kHiLoOscillating          = BIT(22)
     55      kHiLoOscillating          = BIT(22),
     56      kDeadPedestalRms          = BIT(23),
     57      kFluctuatingArrivalTimes  = BIT(24)
    5558    };
    5659   
     
    101104      if (IsUncalibrated( kHiGainOverFlow      )) return 7;
    102105      if (IsUncalibrated( kLoGainOverFlow      )) return 8;
    103       return 9;
     106      if (IsUncalibrated( kDeadPedestalRms     )) return 9;
     107      if (IsUncalibrated( kFluctuatingArrivalTimes )) return 10;
     108      if (IsUncalibrated( kPreviouslyExcluded      )) return 11;
     109      return 12;
    104110    }
    105111   
  • trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc

    r7001 r7012  
    1818!   Author(s): Thomas Bretz, 4/2003 <mailto:tbretz@astro.uni-wuerzburg.de>
    1919!
    20 !   Copyright: MAGIC Software Development, 2003-2004
     20!   Copyright: MAGIC Software Development, 2003-2005
    2121!
    2222!
     
    474474
    475475    // Add copyright notice
    476     l = new TGLabel(f, "(c) MAGIC Software Development, 2000-2004");
     476    l = new TGLabel(f, "(c) MAGIC Software Development, 2000-2005");
    477477    fList->Add(l);
    478478    f->AddFrame(l, layb);
Note: See TracChangeset for help on using the changeset viewer.