Changeset 5479 for trunk/MagicSoft/Mars
- Timestamp:
- 11/27/04 13:11:53 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5473 r5479 55 55 - added a direct calculation of mean's and RMS's stored in the 56 56 "LoGain"-variables of MCalibrationPedCam 57 58 * mpedestal/MCalibrationPedCam.cc 59 - added new flags in the GetPixelContent called the "low-gain" 60 entries (s.a.) 61 57 62 58 63 * mpedestal/MExtractPedestal.[h,cc] -
trunk/MagicSoft/Mars/mcalib/MCalibrationPedCam.cc
r5044 r5479 118 118 { 119 119 case 0: 120 val = (*this)[idx].Get Mean();120 val = (*this)[idx].GetHiGainMean(); 121 121 break; 122 122 case 1: 123 val = (*this)[idx].Get MeanErr();123 val = (*this)[idx].GetHiGainMeanErr(); 124 124 break; 125 125 case 2: 126 val = (*this)[idx].Get Sigma();126 val = (*this)[idx].GetHiGainSigma(); 127 127 break; 128 128 case 3: 129 val = (*this)[idx].Get SigmaErr();129 val = (*this)[idx].GetHiGainSigmaErr(); 130 130 break; 131 131 case 4: 132 val = (*this)[idx].GetProb(); 132 val = (*this)[idx].GetHiGainProb(); 133 break; 134 case 5: 135 val = (*this)[idx].GetLoGainMean() > 1. ? 0. : (*this)[idx].GetLoGainMean(); 136 break; 137 case 6: 138 val = (*this)[idx].GetLoGainMeanErr(); 139 break; 140 case 7: 141 val = (*this)[idx].GetLoGainSigma(); 142 break; 143 case 8: 144 val = (*this)[idx].GetLoGainSigmaErr(); 133 145 break; 134 146 default: -
trunk/MagicSoft/Mars/mhcalib/MHCalibrationTestCam.h
r5137 r5479 6 6 #endif 7 7 8 #ifndef ROOT_TArrayF9 #include < TArrayF.h>8 #ifndef MARS_MArrayF 9 #include <MArrayF.h> 10 10 #endif 11 #ifndef ROOT_TArrayI12 #include < TArrayI.h>11 #ifndef MARS_MArrayI 12 #include <MArrayI.h> 13 13 #endif 14 14 … … 27 27 static const TString gsHistYTitle; //! Default Histogram y-axis titles 28 28 29 TArrayF fMeanMeanPhotPerArea;30 TArrayF fRmsMeanPhotPerArea ;31 TArrayF fMeanSigmaPhotPerArea;32 TArrayF fRmsSigmaPhotPerArea ;29 MArrayF fMeanMeanPhotPerArea; 30 MArrayF fRmsMeanPhotPerArea ; 31 MArrayF fMeanSigmaPhotPerArea; 32 MArrayF fRmsSigmaPhotPerArea ; 33 33 34 34 Bool_t ReInitHists(MParList *pList);
Note:
See TracChangeset
for help on using the changeset viewer.