Ignore:
Timestamp:
02/19/04 21:33:45 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MCalibrationCam.cc

    r3080 r3242  
    556556      if ((*this)[idx].IsExcluded())
    557557        return kFALSE;
    558       val = (*this)[idx].GetErrCharge();
     558      val = (*this)[idx].GetChargeErr();
    559559      break;
    560560    case 2:
     
    566566      if ((*this)[idx].IsExcluded())
    567567        return kFALSE;
    568       val = (*this)[idx].GetErrSigmaCharge();
     568      val = (*this)[idx].GetSigmaChargeErr();
    569569      break;
    570570    case 4:
     
    581581      if ((*this)[idx].IsExcluded())
    582582        return kFALSE;
    583       val = (*this)[idx].GetErrRSigmaCharge();
     583      val = (*this)[idx].GetRSigmaChargeErr();
    584584      break;
    585585    case 7:
     
    592592        return kFALSE;
    593593      // relative error RsigmaCharge square
    594       val =    (*this)[idx].GetErrRSigmaCharge()* (*this)[idx].GetErrRSigmaCharge()
     594      val =    (*this)[idx].GetRSigmaChargeErr()* (*this)[idx].GetRSigmaChargeErr()
    595595            / ((*this)[idx].GetRSigmaCharge()   * (*this)[idx].GetRSigmaCharge()   );
    596596      // relative error Charge square
    597       val +=   (*this)[idx].GetErrCharge() * (*this)[idx].GetErrCharge()
     597      val +=   (*this)[idx].GetChargeErr() * (*this)[idx].GetChargeErr()
    598598            / ((*this)[idx].GetCharge()    * (*this)[idx].GetCharge()   );
    599599      // calculate relative error out of squares
     
    610610      if ((*this)[idx].IsExcluded())
    611611        return kFALSE;
    612       val = (*this)[idx].GetPheFFactorMethodError();
     612      val = (*this)[idx].GetPheFFactorMethodErr();
    613613      break;
    614614    case 11:
     
    620620      if ((*this)[idx].IsExcluded())
    621621        return kFALSE;
    622       val = (*this)[idx].GetErrorConversionFFactorMethod();
     622      val = (*this)[idx].GetConversionFFactorMethodErr();
    623623      break;
    624624    case 13:
     
    630630      if ((*this)[idx].IsExcluded())
    631631        return kFALSE;
    632       val = (*this)[idx].GetTotalFFactorErrorFFactorMethod();
     632      val = (*this)[idx].GetTotalFFactorErrFFactorMethod();
    633633      break;
    634634    case 15:
     
    650650      if ((*this)[idx].IsExcluded())
    651651        return kFALSE;
    652       val = (*this)[idx].GetErrorConversionBlindPixelMethod();
     652      val = (*this)[idx].GetConversionBlindPixelMethodErr();
    653653      break;
    654654    case 19:
     
    660660      if ((*this)[idx].IsExcluded())
    661661        return kFALSE;
    662       val = (*this)[idx].GetTotalFFactorErrorBlindPixelMethod();
     662      val = (*this)[idx].GetTotalFFactorErrBlindPixelMethod();
    663663      break;
    664664    case 21:
     
    680680      if ((*this)[idx].IsExcluded())
    681681        return kFALSE;
    682       val = (*this)[idx].GetErrorConversionPINDiodeMethod();
     682      val = (*this)[idx].GetConversionPINDiodeMethodErr();
    683683      break;
    684684    case 25:
     
    690690      if ((*this)[idx].IsExcluded())
    691691        return kFALSE;
    692       val = (*this)[idx].GetTotalFFactorErrorBlindPixelMethod();
     692      val = (*this)[idx].GetTotalFFactorErrBlindPixelMethod();
    693693      break;
    694694    case 27:
     
    914914          const Float_t charge    = pix->GetCharge();
    915915          const Float_t area      = (*fGeomCam)[idx].GetA();
    916           const Float_t chargeerr = pix->GetErrCharge();         
     916          const Float_t chargeerr = pix->GetChargeErr();         
    917917
    918918          const Float_t nphot      = fMeanFluxInsidePlexiglass*area;
     
    10251025          const Float_t charge    = pix->GetCharge();
    10261026          const Float_t area      = (*fGeomCam)[idx].GetA();
    1027           const Float_t chargeerr = pix->GetErrCharge();         
     1027          const Float_t chargeerr = pix->GetChargeErr();         
    10281028
    10291029          const Float_t nphot      = fMeanFluxOutsidePlexiglass*area;
     
    10661066
    10671067  mean  = (*this)[ipx].GetMeanConversionBlindPixelMethod();
    1068   err   = (*this)[ipx].GetErrorConversionBlindPixelMethod();
     1068  err   = (*this)[ipx].GetConversionBlindPixelMethodErr();
    10691069  sigma = (*this)[ipx].GetSigmaConversionBlindPixelMethod();
    10701070
     
    10851085
    10861086  mean  = conv;
    1087   err   = (*this)[ipx].GetErrorConversionFFactorMethod();
     1087  err   = (*this)[ipx].GetConversionFFactorMethodErr();
    10881088  sigma = (*this)[ipx].GetSigmaConversionFFactorMethod();
    10891089
     
    11111111
    11121112  mean  = (*this)[ipx].GetMeanConversionPINDiodeMethod();
    1113   err   = (*this)[ipx].GetErrorConversionPINDiodeMethod();
     1113  err   = (*this)[ipx].GetConversionPINDiodeMethodErr();
    11141114  sigma = (*this)[ipx].GetSigmaConversionPINDiodeMethod();
    11151115
Note: See TracChangeset for help on using the changeset viewer.