Ignore:
Timestamp:
01/05/05 14:29:59 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r5682 r5701  
    810810                    Form("%s%2.1f%s","Signal Error bigger than ",fChargeRelErrLimit," times Mean Signal:   "));
    811811  PrintUncalibrated(MBadPixelsPix::kLoGainSaturation,   
    812                     "Pixels with Low Gain Saturation:                  ");
     812                    "Low Gain Saturation:                             ");
    813813  PrintUncalibrated(MBadPixelsPix::kMeanTimeInFirstBin,
    814814                    Form("%s%2.1f%s","Mean Abs. Arr. Time in First ",1.," Bin(s):          "));
     
    824824
    825825  PrintUncalibrated(MBadPixelsPix::kChargeSigmaNotValid,
    826                     "Signal Sigma smaller than Pedestal RMS:           ");
     826                    "Signal Sigma smaller than Pedestal RMS: ");
    827827  PrintUncalibrated(MBadPixelsPix::kHiGainOscillating,   
    828                     "Pixels with changing Hi Gain signal over time:    ");
     828                    "Changing Hi Gain signal over time:      ");
    829829  PrintUncalibrated(MBadPixelsPix::kLoGainOscillating,   
    830                     "Pixels with changing Lo Gain signal over time:    ");
     830                    "Changing Lo Gain signal over time:      ");
    831831  PrintUncalibrated(MBadPixelsPix::kHiGainNotFitted,     
    832                     "Pixels with unsuccesful Gauss fit to the Hi Gain: ");
     832                    "Unsuccesful Gauss fit to the Hi Gain:  ");
    833833  PrintUncalibrated(MBadPixelsPix::kLoGainNotFitted,     
    834                     "Pixels with unsuccesful Gauss fit to the Lo Gain: ");
     834                    "Unsuccesful Gauss fit to the Lo Gain:  ");
    835835  PrintUncalibrated(MBadPixelsPix::kDeviatingNumPhes,   
    836                     "Pixels with deviating number of phes:             ");
     836                    "Deviating number of phes:               ");
    837837  PrintUncalibrated(MBadPixelsPix::kDeviatingFFactor,   
    838                     "Pixels with deviating F-Factor:                   ");
     838                    "Deviating F-Factor:                     ");
    839839
    840840  if (!fOutputFile.IsNull())
     
    12181218        }
    12191219     
    1220       *fLog << inf << GetDescriptor() << ": Mean number of photo-electrons "
    1221             << "with area idx " << i << ": "
     1220      *fLog << inf << GetDescriptor() << ": Mean number of phes with area idx " << i << ": "
    12221221            << Form("%7.2f+-%6.2f",mean,sigma) << endl;
    12231222
     
    12651264      if ( nphe < lowlim[aidx] || nphe > upplim[aidx] )
    12661265        {
    1267           *fLog << warn << GetDescriptor() << ": Number of phes: "
     1266          *fLog << warn << "Number of phes: "
    12681267                << Form("%7.2f out of %3.1f sigma limit: ",nphe,fPheErrLimit)
    12691268                << Form("[%7.2f,%7.2f] pixel%4i",lowlim[aidx],upplim[aidx],i) << endl;
     
    13211320     
    13221321      *fLog << inf << GetDescriptor()
    1323             << ": Average total number phes in area idx " << aidx << ": "
     1322            << ": Average total phes for area idx " << aidx << ": "
    13241323            << Form("%7.2f +- 6.2f",areaphes[aidx],TMath::Sqrt(areaweights[aidx])) << endl;
    13251324                   
     
    13561355        {
    13571356          *fLog << warn << GetDescriptor()
    1358                 <<": Mean number phes per area for sector " << sector << " could not be calculated: "
     1357                <<": Mean number phes/area for sector " << sector << " could not be calculated: "
    13591358                << " Mean: "  << sectorphes[sector]
    13601359                << " Variance: "             << sectorweights[sector]    << endl;
     
    13641363
    13651364      *fLog << inf << GetDescriptor()
    1366             << ": Average number phes per area in sector " << sector << ": "
    1367             << Form("%5.3f+-%4.3f  [phe/mm^2]",sectorphes[sector],TMath::Sqrt(sectorweights[sector]))
     1365            << ": Avg number phes/mm^2 in sector " << sector << ": "
     1366            << Form("%5.3f+-%4.3f",sectorphes[sector],TMath::Sqrt(sectorweights[sector]))
    13681367            << endl;
    13691368
     
    17581757      if ( ffactor < lowlim[aidx] || ffactor > upplim[aidx] )
    17591758        {
    1760           *fLog << warn << GetDescriptor() << ": Overall F-Factor "
     1759          *fLog << warn << "Overall F-Factor "
    17611760                << Form("%5.2f",ffactor) << " out of range ["
    1762                 << Form("%5.2f,%5.2f",lowlim[aidx],upplim[aidx]) << "] pixel " << i << endl;
     1761                << Form("%5.2f,%5.2f",lowlim[aidx],upplim[aidx]) << "] Pixel " << i << endl;
    17631762
    17641763          bad.SetUncalibrated( MBadPixelsPix::kDeviatingFFactor );
Note: See TracChangeset for help on using the changeset viewer.