Ignore:
Timestamp:
06/18/07 15:37:24 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc

    r8544 r8580  
    11/* ======================================================================== *\
    2 ! $Name: not supported by cvs2svn $:$Id: MCalibrationChargeCalc.cc,v 1.181 2007-06-11 15:35:14 tbretz Exp $
     2! $Name: not supported by cvs2svn $:$Id: MCalibrationChargeCalc.cc,v 1.182 2007-06-18 14:36:16 tbretz Exp $
    33! --------------------------------------------------------------------------
    44!
     
    746746            {
    747747                *fLog << warn << "Pixel  " << setw(4) << i << ": Abs-time rms could not be calculated." << endl;
    748                 (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kDeviatingTimeResolution);
     748                (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kDeviatingAbsTimeResolution);
    749749                continue;
    750750            }
     
    753753            {
    754754                *fLog << warn << "Pixel  " << setw(4) << i << ": Abs-time rms==0." << endl;
    755                 (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kDeviatingTimeResolution);
     755                (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kDeviatingAbsTimeResolution);
    756756                continue;
    757757            }
     
    764764                    << Form("[%4.2f,%4.2f]", lolim, hilim) << endl;
    765765
    766                 (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kFluctuatingArrivalTimes);
     766                (*fBadPixels)[i].SetUncalibrated(MBadPixelsPix::kDeviatingAbsTimeResolution);
    767767            }
    768768        }
     
    949949  PrintUncalibrated(MBadPixelsPix::kLoGainOverFlow,   
    950950                    "Pixels with Low Gain Overflow :                   ");
    951   PrintUncalibrated(MBadPixelsPix::kFluctuatingArrivalTimes,
    952                     "Fluctuating Pulse Arrival Times:                  ");
     951//  PrintUncalibrated(MBadPixelsPix::kFluctuatingArrivalTimes,
     952//                    "Fluctuating Pulse Arrival Times:                  ");
     953  PrintUncalibrated(MBadPixelsPix::kDeviatingAbsTimeResolution,
     954                    Form("%s%2.1f%s ","Abs.time rms more than ", fArrTimeRmsLimit, " dev from median:      "));
    953955  PrintUncalibrated(MBadPixelsPix::kDeadPedestalRms,
    954956                    "Presumably dead from Pedestal Rms:                ");
     
    12451247      if (IsCheckArrivalTimes())
    12461248        {
    1247           if (bad.IsUncalibrated( MBadPixelsPix::kFluctuatingArrivalTimes ))
     1249          if (bad.IsUncalibrated( MBadPixelsPix::kDeviatingAbsTimeResolution ))
    12481250            bad.SetUnsuitable(   MBadPixelsPix::kUnsuitableRun    );
     1251          //if (bad.IsUncalibrated( MBadPixelsPix::kFluctuatingArrivalTimes ))
     1252          //  bad.SetUnsuitable(   MBadPixelsPix::kUnsuitableRun    );
    12491253        }
    12501254
Note: See TracChangeset for help on using the changeset viewer.