Changeset 5480 for trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.cc
- Timestamp:
- 11/27/04 13:14:45 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.cc
r5132 r5480 400 400 // 31: Error Ped. RMS entire signal extr. range (see MCalibrationChargePix::PedRmsErr()) 401 401 // 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 // 402 407 Bool_t MCalibrationChargeCam::GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type) const 403 408 { … … 582 587 return kFALSE; 583 588 val = pix.GetPedErr()/2.; 589 break; 590 case 32: 591 val = pix.GetMean() == 0. ? 0. : pix.GetHiGainRms()/pix.GetMean(); 584 592 break; 585 593 default:
Note:
See TracChangeset
for help on using the changeset viewer.