Changeset 2830


Ignore:
Timestamp:
01/16/04 14:17:52 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2829 r2830  
    1515     - fixed a bug due to which DrawClone crashed when class was used
    1616       in a compiled macro
     17
     18   * mcalib/MCalibrationCalc.cc
     19     - fixed the warns and errs in fLog's
    1720
    1821 2004/01/16: Abelardo Moralejo
  • trunk/MagicSoft/Mars/mcalib/MCalibrationBlindPix.h

    r2734 r2830  
    1111{
    1212private:
     13
     14  MHCalibrationBlindPixel *fHist; // Pointer to the histograms performing the fits, etc. 
    1315
    1416  Float_t fLambda;           // The mean charge after the fit
     
    2729  Float_t fErrTime;             // The error of the mean arrival time after the fit
    2830 
    29   MHCalibrationBlindPixel *fHist; // Pointer to the histograms performing the fits, etc. 
    3031 
    3132public:
     
    5152  Float_t GetErrTime()   const    { return fErrTime;      }
    5253 
    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); } 
    5556  Bool_t FillRChargevsTime(Float_t rq, Int_t t) { return fHist->FillBlindPixelChargevsN(rq,t); }   
    5657 
     
    6061  Bool_t FitTime();
    6162 
    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
    6366  MHCalibrationBlindPixel *GetHist()  const  { return fHist;  }
    6467 
Note: See TracChangeset for help on using the changeset viewer.