Ignore:
Timestamp:
04/27/04 19:24:37 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r3849 r3855  
    453453// 6: Fourier spectrum not OK                       (calls: MHGausEvents::IsFourierSpectrumOK())
    454454//
     455// Converted values:
     456// =================
     457//
     458// 7: Fitted Mean Test Calibration (MHGausEvents::GetMean()) by MGeomPix::GetA()
     459// 8: Fitted Mean Error Calibration (MHGausEvents::GetSigma()) by MGeomPix::GetA()
     460// 9: Fitted Sigma Test Calibration (MHGausEvents::GetMean()) by MGeomPix::GetA()
     461// 8: Fitted Sigma Error Calibration (MHGausEvents::GetSigma()) by MGeomPix::GetA()
     462//
    455463Bool_t MHCalibrationTestCam::GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type) const
    456464{
     
    488496      if (!pix.IsFourierSpectrumOK())
    489497        val = 1.;
     498      break;
     499    case 7:
     500      val = pix.GetMean()/cam[idx].GetA();
     501      break;
     502    case 8:
     503      val = pix.GetMeanErr()/cam[idx].GetA();
     504      break;
     505    case 9:
     506      val = pix.GetSigma()/cam[idx].GetA();
     507      break;
     508    case 10:
     509      val = pix.GetSigmaErr()/cam[idx].GetA();
    490510      break;
    491511    default:
Note: See TracChangeset for help on using the changeset viewer.