Ignore:
Timestamp:
11/27/04 13:14:45 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r5132 r5480  
    400400// 31: Error Ped. RMS entire signal extr. range  (see MCalibrationChargePix::PedRmsErr())
    401401//
     402// Special variables (for data check):
     403// ====================================
     404//
     405// 32: HiGain RMS divided by Mean for every pixel (with inclusion of the excluded pixels)
     406//
    402407Bool_t MCalibrationChargeCam::GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type) const
    403408{
     
    582587        return kFALSE;
    583588      val = pix.GetPedErr()/2.;
     589      break;
     590    case 32:
     591      val = pix.GetMean() == 0. ? 0. : pix.GetHiGainRms()/pix.GetMean();
    584592      break;
    585593    default:
Note: See TracChangeset for help on using the changeset viewer.