Changeset 3922 for trunk/MagicSoft/Mars
- Timestamp:
- 05/01/04 09:54:21 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3919 r3922 39 39 40 40 2004/04/30: Markus Gaug 41 42 * mcalib/MCalibrationRelTimeCalc.[h,cc] 43 - new class to treat rel. times after fits 44 45 * mcalib/MCalibrationChargeCalc.[h,cc] 46 - search for outliers in the total F-Factor and set a flag in 47 MBadPixelsPix 41 48 42 49 * mcalib/MCalibrationRelTimeCam.h -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.h
r3838 r3922 43 43 private: 44 44 45 static const Float_t fgChargeLimit; //! Default for fChargeLimit (now set to: 3.) 46 static const Float_t fgChargeErrLimit; //! Default for fChargeErrLimit (now set to: 0.) 47 static const Float_t fgChargeRelErrLimit; //! Default for fChargeRelErrLimit (now set to: 1.) 48 static const Float_t fgLambdaCheckLimit; //! Default for fLambdaCheckLimit (now set to: 0.2) 49 static const Float_t fgLambdaErrLimit; //! Default for fLabmdaErrLimit (now set to: 0.2) 50 static const Float_t fgPheErrLimit; //! Default for fPheErrLimit (now set to: 5.) 51 45 static const Float_t fgChargeLimit; //! Default for fChargeLimit (now set to: 3.) 46 static const Float_t fgChargeErrLimit; //! Default for fChargeErrLimit (now set to: 0.) 47 static const Float_t fgChargeRelErrLimit; //! Default for fChargeRelErrLimit (now set to: 1.) 48 static const Float_t fgLambdaCheckLimit; //! Default for fLambdaCheckLimit (now set to: 0.2) 49 static const Float_t fgLambdaErrLimit; //! Default for fLabmdaErrLimit (now set to: 0.2) 50 static const Float_t fgPheErrLimit; //! Default for fPheErrLimit (now set to: 4.) 51 static const Float_t fgFFactorErrLimit; //! Default for fFFactorErrLimit (now set to: 3.) 52 52 53 // Variables 53 54 Float_t fChargeLimit; // Limit acceptance mean charge (in units of PedRMS) … … 60 61 Float_t fNumLoGainSamples; // Number Low -Gain FADC slices used by extractor 61 62 Float_t fPheErrLimit; // Limit acceptance nr. phe's w.r.t. area idx mean (in sigmas) 63 Float_t fFFactorErrLimit; // Limit acceptance F-Factor w.r.t. area idx mean 62 64 Float_t fSqrtHiGainSamples; // Square root nr. High-Gain FADC slices used by extractor 63 65 Float_t fSqrtLoGainSamples; // Square root nr. Low -Gain FADC slices used by extractor … … 105 107 void SetChargeErrLimit ( const Float_t f=fgChargeErrLimit ) { fChargeErrLimit = f; } 106 108 void SetChargeRelErrLimit ( const Float_t f=fgChargeRelErrLimit ) { fChargeRelErrLimit = f; } 109 void SetFFactorErrLimit ( const Float_t f=fgFFactorErrLimit ) { fFFactorErrLimit = f; } 107 110 void SetLambdaErrLimit ( const Float_t f=fgLambdaErrLimit ) { fLambdaErrLimit = f; } 108 111 void SetLambdaCheckLimit ( const Float_t f=fgLambdaCheckLimit ) { fLambdaCheckLimit = f; }
Note:
See TracChangeset
for help on using the changeset viewer.