Changeset 2538 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 11/19/03 21:37:26 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/MagicSoft/Mars/manalysis/MCalibrationCam.cc ¶
r2537 r2538 454 454 break; 455 455 case 7: 456 val = (*this)[idx].GetTProb(); 457 break; 458 case 8: 456 459 val = (*this)[idx].GetPed(); 457 460 break; 458 case 8:461 case 9: 459 462 val = (*this)[idx].GetPedRms(); 460 463 break; 461 case 9:464 case 10: 462 465 val = (*this)[idx].GetRQ(); 463 466 break; 464 case 1 0:467 case 11: 465 468 val = (*this)[idx].GetErrRQ(); 466 469 break; -
TabularUnified trunk/MagicSoft/Mars/manalysis/MCalibrationPix.cc ¶
r2537 r2538 129 129 } 130 130 131 fT = fHist->GetTMean(); 132 fErrT = fHist->GetTSigma(); 131 fT = fHist->GetTMean(); 132 fErrT = fHist->GetTSigma(); 133 fTProb = fHist->GetTProb(); 133 134 134 135 return kTRUE; -
TabularUnified trunk/MagicSoft/Mars/manalysis/MCalibrationPix.h ¶
r2537 r2538 26 26 Float_t fT; // The mean arrival time after the fit 27 27 Float_t fErrT; // The error of the mean arrival time after the fit 28 Float_t fTProb; // The probability of the fit function 28 29 29 30 Float_t fRQ; // The reduced mean charge after the fit … … 40 41 41 42 Float_t GetQ() const { return fQ; } 42 Float_t GetRQ() const { return fRQ; } 43 Float_t GetRQ() const { return fRQ; } 44 43 45 Float_t GetErrQ() const { return fErrQ; } 44 46 Float_t GetErrRQ() const { return fErrRQ; } … … 49 51 Float_t GetT() const { return fT; } 50 52 Float_t GetErrT() const { return fErrT; } 53 Float_t GetTProb() const { return fTProb; } 51 54 52 55 Float_t GetPed() const { return fPed; }
Note:
See TracChangeset
for help on using the changeset viewer.