Changeset 2537 for trunk/MagicSoft/Mars
- Timestamp:
- 11/19/03 21:26:30 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2535 r2537 4 4 5 5 -*-*- END OF LINE -*-*- 6 2003/11/19: Markus Gaug 7 8 * manalysis/MCalibrationPix: 9 - new functions: GetPed(), GetPedRms(), GetQProb() 10 - new variable: fQProb 11 12 * manalysis/MCalibrationCam.cc: 13 - function GetPixelContent enlarged 14 15 6 16 2003/11/19: Thomas Bretz 7 17 -
trunk/MagicSoft/Mars/manalysis/MCalibrationCam.cc
r2525 r2537 433 433 { 434 434 case 0: 435 val = (*this)[idx].GetQ(); 436 break; 437 case 1: 438 val = (*this)[idx].GetErrQ(); 439 break; 440 case 2: 441 val = (*this)[idx].GetSigmaQ(); 442 break; 443 case 3: 444 val = (*this)[idx].GetErrSigmaQ(); 445 break; 446 case 4: 447 val = (*this)[idx].GetQProb(); 448 break; 449 case 5: 450 val = (*this)[idx].GetT(); 451 break; 452 case 6: 453 val = (*this)[idx].GetErrT(); 454 break; 455 case 7: 456 val = (*this)[idx].GetPed(); 457 break; 458 case 8: 459 val = (*this)[idx].GetPedRms(); 460 break; 461 case 9: 435 462 val = (*this)[idx].GetRQ(); 436 463 break; 437 case 1 :464 case 10: 438 465 val = (*this)[idx].GetErrRQ(); 439 466 break; -
trunk/MagicSoft/Mars/manalysis/MCalibrationPix.cc
r2525 r2537 59 59 fRQ = fErrRQ = 0.; 60 60 fSigmaQ = fErrSigmaQ = 0.; 61 fQProb = 0.; 61 62 62 63 } … … 93 94 fSigmaQ = fHist->GetQSigma(); 94 95 fErrSigmaQ = fHist->GetQSigmaErr(); 96 fQProb = fHist->GetQProb(); 95 97 96 98 if (fPed) -
trunk/MagicSoft/Mars/manalysis/MCalibrationPix.h
r2525 r2537 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 fQProb; // The probability of the fit function 21 22 Float_t fPed; // The mean pedestal (from MPedestalPix) 22 23 Float_t fPedRms; // The pedestal RMS (from MPedestalPix) … … 42 43 Float_t GetErrQ() const { return fErrQ; } 43 44 Float_t GetErrRQ() const { return fErrRQ; } 45 Float_t GetQProb() const { return fQProb; } 44 46 45 47 Float_t GetSigmaQ() const { return fSigmaQ; } … … 48 50 Float_t GetErrT() const { return fErrT; } 49 51 52 Float_t GetPed() const { return fPed; } 53 Float_t GetPedRms() const { return fPedRms; } 54 50 55 void SetPedestal(Float_t ped, Float_t pedrms); 51 56
Note:
See TracChangeset
for help on using the changeset viewer.