Ignore:
Timestamp:
06/18/07 15:37:24 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbadpixels
Files:
2 edited

Legend:

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

    r8446 r8580  
    11/* ======================================================================== *\
    2 ! $Name: not supported by cvs2svn $:$Id: MBadPixelsCam.cc,v 1.50 2007-04-25 14:39:41 tbretz Exp $
     2! $Name: not supported by cvs2svn $:$Id: MBadPixelsCam.cc,v 1.51 2007-06-18 14:35:39 tbretz Exp $
    33! --------------------------------------------------------------------------
    44!
     
    455455  *fLog << endl;
    456456
     457  // TO BE FIXED!!!
     458
    457459  PrintBadPixels(MBadPixelsPix::kPreviouslyExcluded,"Previously excluded");
    458460  PrintBadPixels(MBadPixelsPix::kChargeIsPedestal,"Signal smaller 3 Pedestal RMS");
     
    466468  PrintBadPixels(MBadPixelsPix::kLoGainOverFlow,"Low-Gain Histogram Overflow");
    467469  PrintBadPixels(MBadPixelsPix::kDeadPedestalRms,"Presumably dead from Ped. Rms");
    468   PrintBadPixels(MBadPixelsPix::kFluctuatingArrivalTimes,"Fluctuating Pulse Arrival Times");
     470//  PrintBadPixels(MBadPixelsPix::kFluctuatingArrivalTimes,"Fluctuating Pulse Arrival Times");
    469471
    470472  *fLog << endl;
    471473  *fLog << all << "Unreliable pixels statistics:" << endl;
    472474  *fLog << endl;
     475
     476  // TO BE FIXED!!!
    473477
    474478  PrintBadPixels(MBadPixelsPix::kChargeSigmaNotValid,"Signal Sigma smaller Pedestal RMS");
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h

    r8478 r8580  
    4848      kDeviatingNumPhots        = BIT(15),
    4949      kDeviatingFFactor         = BIT(16),
    50       kDeviatingTimeResolution  = BIT(17),
     50      kDeviatingRelTimeResolution  = BIT(17),
    5151      kConversionHiLoNotValid   = BIT(18),
    5252      kHiGainOverFlow           = BIT(19),
     
    5555      kHiLoOscillating          = BIT(22),
    5656      kDeadPedestalRms          = BIT(23),
    57       kFluctuatingArrivalTimes  = BIT(24),
    58       kLoGainBlackout           = BIT(25)
     57      kDeviatingAbsTimeResolution  = BIT(24),
     58      kLoGainBlackout           = BIT(25),
    5959    };
    6060   
     
    107107      if (IsUncalibrated( kDeadPedestalRms     ))    return 5;
    108108      if (IsUncalibrated( kDeviatingNumPhes    ))    return 6;
    109       if (IsUncalibrated( kFluctuatingArrivalTimes)) return 7;
    110       if (IsUncalibrated( kDeviatingTimeResolution)) return 8;
     109      //if (IsUncalibrated( kFluctuatingArrivalTimes)) return 7;
     110      if (IsUncalibrated( kDeviatingAbsTimeResolution)) return 7;
     111      if (IsUncalibrated( kDeviatingRelTimeResolution)) return 8;
    111112      if (IsUncalibrated( kLoGainBlackout      ))    return 9;
    112113      if (IsUncalibrated( kPreviouslyExcluded  ))    return 10;
Note: See TracChangeset for help on using the changeset viewer.