Changeset 2544 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 11/20/03 16:14:31 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MCalibrationCam.cc
r2538 r2544 451 451 break; 452 452 case 6: 453 val = (*this)[idx].Get ErrT();453 val = (*this)[idx].GetSigmaT(); 454 454 break; 455 455 case 7: -
trunk/MagicSoft/Mars/manalysis/MCalibrationPix.cc
r2538 r2544 56 56 fQ = fErrQ = 0.; 57 57 fPed = fPedRms = 0.; 58 fT = f ErrT = 0.;58 fT = fSigmaT = 0.; 59 59 fRQ = fErrRQ = 0.; 60 60 fSigmaQ = fErrSigmaQ = 0.; … … 129 129 } 130 130 131 fT = fHist->GetTMean();132 f ErrT = fHist->GetTSigma();133 fTProb = fHist->GetTProb();131 fT = fHist->GetTMean(); 132 fSigmaT = fHist->GetTSigma(); 133 fTProb = fHist->GetTProb(); 134 134 135 135 return kTRUE; -
trunk/MagicSoft/Mars/manalysis/MCalibrationPix.h
r2538 r2544 19 19 Float_t fQ; // The mean charge after the fit 20 20 Float_t fErrQ; // The error of mean charge after the fit 21 Float_t fSigmaQ; // The sigma of the mean charge after the fit 22 Float_t fErrSigmaQ; // The error of the sigma of the mean charge after the fit 21 23 Float_t fQProb; // The probability of the fit function 24 22 25 Float_t fPed; // The mean pedestal (from MPedestalPix) 23 26 Float_t fPedRms; // The pedestal RMS (from MPedestalPix) 24 Float_t fSigmaQ; // The sigma of the mean charge after the fit 25 Float_t fErrSigmaQ; // The error of the sigma of the mean charge after the fit 27 26 28 Float_t fT; // The mean arrival time after the fit 27 Float_t f ErrT;// The error of the mean arrival time after the fit29 Float_t fSigmaT; // The error of the mean arrival time after the fit 28 30 Float_t fTProb; // The probability of the fit function 29 31 … … 50 52 Float_t GetErrSigmaQ() const { return fErrSigmaQ; } 51 53 Float_t GetT() const { return fT; } 52 Float_t Get ErrT() const { return fErrT;}54 Float_t GetSigmaT() const { return fSigmaT; } 53 55 Float_t GetTProb() const { return fTProb; } 54 56
Note:
See TracChangeset
for help on using the changeset viewer.