Changeset 5045 for trunk/MagicSoft
- Timestamp:
- 09/15/04 20:21:44 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationBlindCam.h
r5031 r5045 20 20 // Inits 21 21 void Init ( const MGeomCam &geom ) {} 22 void InitSize ( const UInt_t n );23 22 24 23 Bool_t IsFluxInsidePlexiglassAvailable () const; -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.cc
r5043 r5045 118 118 } 119 119 120 /* 120 121 // -------------------------------------------------------------------------- 121 122 // … … 162 163 return cam; 163 164 } 165 */ 164 166 165 167 -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.h
r5044 r5045 36 36 void Clear ( Option_t *o="" ); 37 37 38 // Clone39 TObject *Clone(const char *name="") const;40 41 38 // Draws 42 39 void DrawPixelContent(Int_t num) const; -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargePix.cc
r4882 r5045 90 90 const Float_t MCalibrationChargePix::fgConversionHiLoErr = 2.5; 91 91 const Float_t MCalibrationChargePix::fgPheFFactorMethodLimit = 1.; 92 const Float_t MCalibrationChargePix::fgConvFFactorRelErrLimit = 0. 75;92 const Float_t MCalibrationChargePix::fgConvFFactorRelErrLimit = 0.85; 93 93 // -------------------------------------------------------------------------- 94 94 // … … 886 886 // 887 887 Float_t convrelvar = ffactorsquareRelVar + GetMeanRelVar() + rsigmaSquareRelVar; 888 const Float_t limit 888 const Float_t limit = IsHiGainSaturation() ? fConvFFactorRelVarLimit * 4. : fConvFFactorRelVarLimit; 889 889 890 890 // -
trunk/MagicSoft/Mars/mcalib/MCalibrationQEPix.h
r4882 r5045 6 6 #endif 7 7 8 #ifndef ROOT_TArrayF9 #include <TArrayF.h>8 #ifndef MARS_MArrayF 9 #include "MArrayF.h" 10 10 #endif 11 11 … … 41 41 static const Float_t gkPMTCollectionEffErr; //! Uncertainty Def. Collection efficiency of the PMTs (0.01) 42 42 43 TArrayF fQEBlindPixel; // Calibrated QEs (Blind Pixel Method)44 TArrayF fQEBlindPixelVar; // Variance cal. QEs (Blind Pixel Method)45 TArrayF fQECombined; // Calibrated QEs (Combined Method)46 TArrayF fQECombinedVar; // Variance cal. QEs (Combined Method)47 TArrayF fQEFFactor; // Calibrated QEs (F-Factor Method)48 TArrayF fQEFFactorVar; // Variance cal. QEs (F-Factor Method)49 TArrayF fQEPINDiode; // Calibrated QEs (PIN Diode Method)50 TArrayF fQEPINDiodeVar; // Variance cal. QEs (PIN Diode Method)43 MArrayF fQEBlindPixel; // Calibrated QEs (Blind Pixel Method) 44 MArrayF fQEBlindPixelVar; // Variance cal. QEs (Blind Pixel Method) 45 MArrayF fQECombined; // Calibrated QEs (Combined Method) 46 MArrayF fQECombinedVar; // Variance cal. QEs (Combined Method) 47 MArrayF fQEFFactor; // Calibrated QEs (F-Factor Method) 48 MArrayF fQEFFactorVar; // Variance cal. QEs (F-Factor Method) 49 MArrayF fQEPINDiode; // Calibrated QEs (PIN Diode Method) 50 MArrayF fQEPINDiodeVar; // Variance cal. QEs (PIN Diode Method) 51 51 52 52 Float_t fAvNormBlindPixel; // Normalization w.r.t. default QE (Blind Pixel Method) … … 85 85 ~MCalibrationQEPix() {} 86 86 87 void Clear(Option_t *o=""); 88 87 void Clear(Option_t *o=""); 88 void Copy (TObject& object) const; 89 89 90 // Getters 90 91 91 const Float_t GetAverageQE ( const Float_t zenith=0. ) const; 92 92 const Float_t GetAverageQERelVar( const Float_t zenith=0. ) const;
Note:
See TracChangeset
for help on using the changeset viewer.