- Timestamp:
- 02/25/04 00:42:01 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3286 r3287 25 25 CalcFFactorMethod(). The average QE was applied twice. 26 26 This error had been introduced on 13/02/04 27 - loosened criterium convFFactorRelErrLimit from 0.1 to 0.2 28 - CalcFFactor asks for IsChargeValid before calculating anything 29 27 30 28 31 * mcalib/MCalibrate.cc -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargePix.cc
r3275 r3287 109 109 const Float_t MCalibrationChargePix::fgTimeLimit = 1.5; 110 110 const Float_t MCalibrationChargePix::fgTimeErrLimit = 3.; 111 const Float_t MCalibrationChargePix::fgConvFFactorRelErrLimit = 0. 1;111 const Float_t MCalibrationChargePix::fgConvFFactorRelErrLimit = 0.2; 112 112 // -------------------------------------------------------------------------- 113 113 // … … 696 696 { 697 697 698 if (!IsChargeValid()) 699 return kFALSE; 698 700 699 701 if (fRSigmaCharge < 0.) … … 719 721 const Float_t avQEFFactorErr = 1./ ( 2. * avQEFFactor ) * fAverageQEErr 720 722 / ( fAverageQE * fAverageQE ); 723 721 724 const Float_t avQEFFactorRelErrSquare = avQEFFactorErr * avQEFFactorErr 722 725 / ( avQEFFactor * avQEFFactor) ; … … 735 738 // 736 739 const Float_t pheFFactorRelErrSquare = ffactorsquareRelErrSquare 737 + chargeSquareRelErrSquare738 + rsigmaSquareRelErrSquare;740 + chargeSquareRelErrSquare 741 + rsigmaSquareRelErrSquare; 739 742 fPheFFactorMethodErr = TMath::Sqrt(pheFFactorRelErrSquare) * fPheFFactorMethod; 740 743 … … 790 793 } 791 794 792 793 794 795 void MCalibrationChargePix::ApplyLoGainConversion() 795 796 { … … 812 813 813 814 } 815
Note:
See TracChangeset
for help on using the changeset viewer.