Changeset 5480
- Timestamp:
- 11/27/04 13:14:45 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5479 r5480 56 56 "LoGain"-variables of MCalibrationPedCam 57 57 58 * m pedestal/MCalibrationPedCam.cc58 * mcalib/MCalibrationPedCam.cc 59 59 - added new flags in the GetPixelContent called the "low-gain" 60 60 entries (s.a.) 61 61 62 * mcalib/MCalibColorSteer.[h,cc] 63 - removed pointer to MRawRunHeader 62 64 63 65 * mpedestal/MExtractPedestal.[h,cc] -
trunk/MagicSoft/Mars/mcalib/MCalibColorSteer.h
r5054 r5480 9 9 class MGeomCam; 10 10 class MRawEvtHeader; 11 class MRawRunHeader; 11 12 class MCalibrationChargeCalc; 12 13 class MCalibrationRelTimeCalc; … … 21 22 22 23 MRawEvtHeader *fHeader; //! 24 MRawRunHeader *fRunHeader; //! 23 25 MGeomCam *fGeom; //! 24 26 MParList *fParList; //! -
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.