- Timestamp:
- 07/16/04 14:06:40 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeBlindPix.h
r4379 r4399 24 24 class MExtractBlindPixel; 25 25 class MExtractedSignalBlindPixel; 26 class MHCalibrationChargeBlindPix : public MH CalibrationChargePix26 class MHCalibrationChargeBlindPix : public MHGausEvents 27 27 { 28 28 private: … … 43 43 MCalibrationChargeBlindPix *fBlindPix; //! Storage container results 44 44 MExtractedSignalBlindPixel *fSignal; //! Storage container extracted signal 45 MExtractBlindPixel *fExtractor; //! Extractor blind pixel46 45 MRawEvtData *fRawEvt; //! Storage container raw data 47 46 … … 75 74 76 75 Byte_t fFlags; // Bit-field for the flags 77 enum { kSinglePheFitOK, kPedestalFitOK }; 76 enum { kSinglePheFitOK, kPedestalFitOK }; // Possible bits to be set 78 77 79 78 TPaveText *fFitLegend; //! Some legend to display the fit results … … 95 94 96 95 void Clear(Option_t *o=""); 96 void Reset(); 97 97 98 98 // TObject *Clone(const char *) const; … … 110 110 const Double_t GetSigma0 () const { return fSigma0; } 111 111 const Double_t GetSigma1 () const { return fSigma1; } 112 113 112 const Double_t GetLambdaErr () const { return fLambdaErr; } 114 113 const Double_t GetLambdaCheckErr() const { return fLambdaCheckErr; } … … 117 116 const Double_t GetSigma0Err () const { return fSigma0Err; } 118 117 const Double_t GetSigma1Err () const { return fSigma1Err; } 119 118 const Float_t GetSinglePheCut () const { return fSinglePheCut; } 119 120 120 TVector &GetASinglePheFADCSlices() { return fASinglePheFADCSlices; } 121 121 const TVector &GetASinglePheFADCSlices() const { return fASinglePheFADCSlices; } … … 128 128 129 129 // Setters 130 void SetSinglePheCut ( const Float_t cut =fgSinglePheCut ) { fSinglePheCut = cut; } 131 void SetNumSinglePheLimit ( const Float_t lim =fgNumSinglePheLimit ) { fNumSinglePheLimit = lim; } 130 void SetCalibrationChargeBlindPix ( MCalibrationChargeBlindPix *pix) { fBlindPix = pix; } 131 void SetSinglePheCut ( const Float_t cut =fgSinglePheCut ) { fSinglePheCut = cut; } 132 void SetNumSinglePheLimit ( const Float_t lim =fgNumSinglePheLimit ) { fNumSinglePheLimit = lim; } 132 133 133 134 void SetMeanPedestal ( const Float_t f ) { fMeanPedestal = f; }
Note:
See TracChangeset
for help on using the changeset viewer.