Changeset 2538


Ignore:
Timestamp:
11/19/03 21:37:26 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

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

    r2537 r2538  
    454454        break;
    455455    case 7:
     456       val = (*this)[idx].GetTProb();
     457        break;
     458    case 8:
    456459       val = (*this)[idx].GetPed();
    457460        break;
    458     case 8:
     461    case 9:
    459462       val = (*this)[idx].GetPedRms();
    460463        break;
    461     case 9:
     464    case 10:
    462465      val = (*this)[idx].GetRQ();
    463466        break;
    464     case 10:
     467    case 11:
    465468      val = (*this)[idx].GetErrRQ();
    466469      break;
  • trunk/MagicSoft/Mars/manalysis/MCalibrationPix.cc

    r2537 r2538  
    129129    }
    130130
    131   fT    = fHist->GetTMean();
    132   fErrT = fHist->GetTSigma();
     131  fT     = fHist->GetTMean();
     132  fErrT  = fHist->GetTSigma();
     133  fTProb = fHist->GetTProb();
    133134
    134135  return kTRUE;
  • trunk/MagicSoft/Mars/manalysis/MCalibrationPix.h

    r2537 r2538  
    2626  Float_t fT;                // The mean arrival time after the fit 
    2727  Float_t fErrT;             // The error of the mean arrival time after the fit
     28  Float_t fTProb;            // The probability of the fit function
    2829 
    2930  Float_t fRQ;               // The reduced mean charge after the fit
     
    4041
    4142  Float_t GetQ()     const    { return fQ;     }
    42   Float_t GetRQ()    const    { return fRQ;    }   
     43  Float_t GetRQ()    const    { return fRQ;    }
     44   
    4345  Float_t GetErrQ()  const    { return fErrQ;  }
    4446  Float_t GetErrRQ() const    { return fErrRQ; }   
     
    4951  Float_t GetT()         const   { return fT;         }
    5052  Float_t GetErrT()      const   { return fErrT;      }
     53  Float_t GetTProb()     const   { return fTProb;    }   
    5154 
    5255  Float_t GetPed()       const    { return fPed;     }
  • trunk/MagicSoft/Mars/mhist/MHCalibrationPixel.h

    r2525 r2538  
    9393  const Double_t GetTMean()   const  { return fTMean; }
    9494  const Double_t GetTSigma()  const  { return fTSigma; }
     95
     96  const Double_t GetTChiSquare() const { return fTChisquare; }
     97  const Double_t GetTProb()      const { return fTProb; }
     98  const Int_t    GetTNdf()       const { return fTNdf;       }   
    9599 
    96100  const TH1I *GetHT()       { return fHT; }
Note: See TracChangeset for help on using the changeset viewer.