Changeset 3242 for trunk/MagicSoft/Mars/mcalib/MCalibrationCam.cc
- Timestamp:
- 02/19/04 21:33:45 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationCam.cc
r3080 r3242 556 556 if ((*this)[idx].IsExcluded()) 557 557 return kFALSE; 558 val = (*this)[idx].Get ErrCharge();558 val = (*this)[idx].GetChargeErr(); 559 559 break; 560 560 case 2: … … 566 566 if ((*this)[idx].IsExcluded()) 567 567 return kFALSE; 568 val = (*this)[idx].Get ErrSigmaCharge();568 val = (*this)[idx].GetSigmaChargeErr(); 569 569 break; 570 570 case 4: … … 581 581 if ((*this)[idx].IsExcluded()) 582 582 return kFALSE; 583 val = (*this)[idx].Get ErrRSigmaCharge();583 val = (*this)[idx].GetRSigmaChargeErr(); 584 584 break; 585 585 case 7: … … 592 592 return kFALSE; 593 593 // relative error RsigmaCharge square 594 val = (*this)[idx].Get ErrRSigmaCharge()* (*this)[idx].GetErrRSigmaCharge()594 val = (*this)[idx].GetRSigmaChargeErr()* (*this)[idx].GetRSigmaChargeErr() 595 595 / ((*this)[idx].GetRSigmaCharge() * (*this)[idx].GetRSigmaCharge() ); 596 596 // relative error Charge square 597 val += (*this)[idx].Get ErrCharge() * (*this)[idx].GetErrCharge()597 val += (*this)[idx].GetChargeErr() * (*this)[idx].GetChargeErr() 598 598 / ((*this)[idx].GetCharge() * (*this)[idx].GetCharge() ); 599 599 // calculate relative error out of squares … … 610 610 if ((*this)[idx].IsExcluded()) 611 611 return kFALSE; 612 val = (*this)[idx].GetPheFFactorMethodErr or();612 val = (*this)[idx].GetPheFFactorMethodErr(); 613 613 break; 614 614 case 11: … … 620 620 if ((*this)[idx].IsExcluded()) 621 621 return kFALSE; 622 val = (*this)[idx].Get ErrorConversionFFactorMethod();622 val = (*this)[idx].GetConversionFFactorMethodErr(); 623 623 break; 624 624 case 13: … … 630 630 if ((*this)[idx].IsExcluded()) 631 631 return kFALSE; 632 val = (*this)[idx].GetTotalFFactorErr orFFactorMethod();632 val = (*this)[idx].GetTotalFFactorErrFFactorMethod(); 633 633 break; 634 634 case 15: … … 650 650 if ((*this)[idx].IsExcluded()) 651 651 return kFALSE; 652 val = (*this)[idx].Get ErrorConversionBlindPixelMethod();652 val = (*this)[idx].GetConversionBlindPixelMethodErr(); 653 653 break; 654 654 case 19: … … 660 660 if ((*this)[idx].IsExcluded()) 661 661 return kFALSE; 662 val = (*this)[idx].GetTotalFFactorErr orBlindPixelMethod();662 val = (*this)[idx].GetTotalFFactorErrBlindPixelMethod(); 663 663 break; 664 664 case 21: … … 680 680 if ((*this)[idx].IsExcluded()) 681 681 return kFALSE; 682 val = (*this)[idx].Get ErrorConversionPINDiodeMethod();682 val = (*this)[idx].GetConversionPINDiodeMethodErr(); 683 683 break; 684 684 case 25: … … 690 690 if ((*this)[idx].IsExcluded()) 691 691 return kFALSE; 692 val = (*this)[idx].GetTotalFFactorErr orBlindPixelMethod();692 val = (*this)[idx].GetTotalFFactorErrBlindPixelMethod(); 693 693 break; 694 694 case 27: … … 914 914 const Float_t charge = pix->GetCharge(); 915 915 const Float_t area = (*fGeomCam)[idx].GetA(); 916 const Float_t chargeerr = pix->Get ErrCharge();916 const Float_t chargeerr = pix->GetChargeErr(); 917 917 918 918 const Float_t nphot = fMeanFluxInsidePlexiglass*area; … … 1025 1025 const Float_t charge = pix->GetCharge(); 1026 1026 const Float_t area = (*fGeomCam)[idx].GetA(); 1027 const Float_t chargeerr = pix->Get ErrCharge();1027 const Float_t chargeerr = pix->GetChargeErr(); 1028 1028 1029 1029 const Float_t nphot = fMeanFluxOutsidePlexiglass*area; … … 1066 1066 1067 1067 mean = (*this)[ipx].GetMeanConversionBlindPixelMethod(); 1068 err = (*this)[ipx].Get ErrorConversionBlindPixelMethod();1068 err = (*this)[ipx].GetConversionBlindPixelMethodErr(); 1069 1069 sigma = (*this)[ipx].GetSigmaConversionBlindPixelMethod(); 1070 1070 … … 1085 1085 1086 1086 mean = conv; 1087 err = (*this)[ipx].Get ErrorConversionFFactorMethod();1087 err = (*this)[ipx].GetConversionFFactorMethodErr(); 1088 1088 sigma = (*this)[ipx].GetSigmaConversionFFactorMethod(); 1089 1089 … … 1111 1111 1112 1112 mean = (*this)[ipx].GetMeanConversionPINDiodeMethod(); 1113 err = (*this)[ipx].Get ErrorConversionPINDiodeMethod();1113 err = (*this)[ipx].GetConversionPINDiodeMethodErr(); 1114 1114 sigma = (*this)[ipx].GetSigmaConversionPINDiodeMethod(); 1115 1115
Note:
See TracChangeset
for help on using the changeset viewer.