Changeset 3855 for trunk/MagicSoft/Mars/mcalib
- Timestamp:
- 04/27/04 19:24:37 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MHCalibrationTestCam.cc
r3849 r3855 453 453 // 6: Fourier spectrum not OK (calls: MHGausEvents::IsFourierSpectrumOK()) 454 454 // 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 // 455 463 Bool_t MHCalibrationTestCam::GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type) const 456 464 { … … 488 496 if (!pix.IsFourierSpectrumOK()) 489 497 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(); 490 510 break; 491 511 default:
Note:
See TracChangeset
for help on using the changeset viewer.