Changeset 2830 for trunk/MagicSoft/Mars
- Timestamp:
- 01/16/04 14:17:52 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2829 r2830 15 15 - fixed a bug due to which DrawClone crashed when class was used 16 16 in a compiled macro 17 18 * mcalib/MCalibrationCalc.cc 19 - fixed the warns and errs in fLog's 17 20 18 21 2004/01/16: Abelardo Moralejo -
trunk/MagicSoft/Mars/mcalib/MCalibrationBlindPix.h
r2734 r2830 11 11 { 12 12 private: 13 14 MHCalibrationBlindPixel *fHist; // Pointer to the histograms performing the fits, etc. 13 15 14 16 Float_t fLambda; // The mean charge after the fit … … 27 29 Float_t fErrTime; // The error of the mean arrival time after the fit 28 30 29 MHCalibrationBlindPixel *fHist; // Pointer to the histograms performing the fits, etc.30 31 31 32 public: … … 51 52 Float_t GetErrTime() const { return fErrTime; } 52 53 53 Bool_t FillCharge(Float_t q) { return fHist->FillBlindPixelCharge(q); }54 Bool_t FillTime(Int_t t) { return fHist->FillBlindPixelTime(t); }54 Bool_t FillCharge(Float_t q) { return fHist->FillBlindPixelCharge(q); } 55 Bool_t FillTime(Int_t t) { return fHist->FillBlindPixelTime(t); } 55 56 Bool_t FillRChargevsTime(Float_t rq, Int_t t) { return fHist->FillBlindPixelChargevsN(rq,t); } 56 57 … … 60 61 Bool_t FitTime(); 61 62 62 virtual void Draw(Option_t *opt="") { fHist->Draw(opt); } 63 void Draw(Option_t *opt="") { fHist->Draw(opt); } 64 TObject *DrawClone(Option_t *opt="") const { return fHist->DrawClone(opt); } 65 63 66 MHCalibrationBlindPixel *GetHist() const { return fHist; } 64 67
Note:
See TracChangeset
for help on using the changeset viewer.