Changeset 3662 for trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.h
- Timestamp:
- 04/05/04 23:10:30 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.h
r3655 r3662 39 39 private: 40 40 41 static const Float_t fgChargeLimit; // Default for fChargeLimit (now set to: 3.) 42 static const Float_t fgChargeErrLimit; // Default for fChargeErrLimit (now set to: 0.) 43 static const Float_t fgChargeRelErrLimit; // Default for fChargeRelErrLimit (now set to: 1.) 44 static const Float_t fgTimeLowerLimit; // Default for fTimeLowerLimit (now set to: 1.) 45 static const Float_t fgTimeUpperLimit; // Default for fTimeUpperLimit (now set to: 2.) 41 static const Float_t fgChargeLimit; //! Default for fChargeLimit (now set to: 3.) 42 static const Float_t fgChargeErrLimit; //! Default for fChargeErrLimit (now set to: 0.) 43 static const Float_t fgChargeRelErrLimit; //! Default for fChargeRelErrLimit (now set to: 1.) 44 static const Float_t fgLambdaCheckLimit; //! Default for fLambdaCheckLimit (now set to: 0.2) 45 static const Float_t fgLambdaErrLimit; //! Default for fLabmdaErrLimit (now set to: 0.2) 46 static const Float_t fgTimeLowerLimit; //! Default for fTimeLowerLimit (now set to: 1.) 47 static const Float_t fgTimeUpperLimit; //! Default for fTimeUpperLimit (now set to: 2.) 46 48 47 49 Float_t fChargeLimit; // Limit (in units of PedRMS) for acceptance of mean charge 48 50 Float_t fChargeErrLimit; // Limit (in units of PedRMS) for acceptance of charge sigma square 49 51 Float_t fChargeRelErrLimit; // Limit (in units of Sigma of fitted charge) for acceptance of mean 52 Float_t fLambdaCheckLimit; // Limit for rel. diff. lambda and lambdacheck blind pixel 53 Float_t fLambdaErrLimit; // Limit for acceptance of lambda error blind pixel 50 54 Float_t fTimeLowerLimit; // Limit (in units of FADC slices) for dist. to first signal slice 51 55 Float_t fTimeUpperLimit; // Limit (in units of FADC slices) for dist. to last signal slice … … 89 93 Bool_t FinalizeCharges(MCalibrationChargePix &cal, MBadPixelsPix &bad); 90 94 Bool_t FinalizePINDiode(); 95 Bool_t FinalizeBlindPixel(); 91 96 92 97 void PrintUnsuitable(MBadPixelsPix::UnsuitableType_t typ, const char *text) const; … … 102 107 void SetChargeErrLimit ( const Float_t f=fgChargeErrLimit ) { fChargeErrLimit = f; } 103 108 void SetChargeRelErrLimit( const Float_t f=fgChargeRelErrLimit ) { fChargeRelErrLimit = f; } 109 void SetLambdaErrLimit ( const Float_t f=fgLambdaErrLimit ) { fLambdaErrLimit = f; } 110 void SetLambdaCheckLimit ( const Float_t f=fgLambdaCheckLimit ) { fLambdaCheckLimit = f; } 104 111 105 112 void SetTimeLowerLimit ( const Float_t f=fgTimeLowerLimit ) { fTimeLowerLimit = f; }
Note:
See TracChangeset
for help on using the changeset viewer.