Changeset 3655 for trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.h
- Timestamp:
- 04/05/04 19:13:31 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.h
r3602 r3655 30 30 class MGeomCam; 31 31 class MExtractedSignalCam; 32 class MExtractedSignalBlindPixel; 33 class MExtractedSignalPINDiode; 32 34 class MBadPixelsCam; 33 35 class MBadPixelsPix; … … 37 39 private: 38 40 39 static const Float_t fgChargeLimit; // The default for fChargeLimit40 static const Float_t fgChargeErrLimit; // The default for fChargeErrLimit41 static const Float_t fgChargeRelErrLimit; // The default for fChargeRelErrLimit42 static const Float_t fgTimeLowerLimit; // The default for fTimeLowerLimit43 static const Float_t fgTimeUpperLimit; // The default for fTimeUpperLimit41 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.) 44 46 45 Float_t fChargeLimit; // The limit (in units of PedRMS) for acceptance of the fittedmean charge46 Float_t fChargeErrLimit; // The limit (in units of PedRMS) for acceptance of the fittedcharge sigma square47 Float_t fChargeRelErrLimit; // The limit (in units of Sigma of fitted charge) for acceptance of the fittedmean48 Float_t fTimeLowerLimit; // The limit (in units of FADC slices) for distance to first signal extractionslice49 Float_t fTimeUpperLimit; // The limit (in units of FADC slices) for distance to last signal extractionslice47 Float_t fChargeLimit; // Limit (in units of PedRMS) for acceptance of mean charge 48 Float_t fChargeErrLimit; // Limit (in units of PedRMS) for acceptance of charge sigma square 49 Float_t fChargeRelErrLimit; // Limit (in units of Sigma of fitted charge) for acceptance of mean 50 Float_t fTimeLowerLimit; // Limit (in units of FADC slices) for dist. to first signal slice 51 Float_t fTimeUpperLimit; // Limit (in units of FADC slices) for dist. to last signal slice 50 52 51 53 MPedestalCam *fPedestals; //! Pedestals of all pixels in the camera … … 59 61 MTime *fEvtTime; //! Time of the event 60 62 61 MExtractedSignalCam *fSignals; // Extracted signal of all pixels in the camera 63 MExtractedSignalCam *fSignals; //! Extracted signal of pixels in the camera 64 MExtractedSignalBlindPixel *fSigBlind; //! Extracted signal of Blind Pixel 65 MExtractedSignalPINDiode *fSigPIN; //! Extracted signal of PIN Diode 66 62 67 MCalibrationChargePINDiode *fPINDiode; // Calibration results of the PIN Diode 63 68 MCalibrationChargeBlindPix *fBlindPixel; // Calibration results of the Blind Pixel … … 83 88 void FinalizeAvPedestals(MCalibrationChargePix &cal, Float_t avped, Float_t avrms, Int_t avnum); 84 89 Bool_t FinalizeCharges(MCalibrationChargePix &cal, MBadPixelsPix &bad); 85 90 Bool_t FinalizePINDiode(); 91 86 92 void PrintUnsuitable(MBadPixelsPix::UnsuitableType_t typ, const char *text) const; 87 93 void PrintUncalibrated(MBadPixelsPix::UncalibratedType_t typ, const char *text) const;
Note:
See TracChangeset
for help on using the changeset viewer.