00001 #ifndef _M_LOGNORMEXPFIT_HH_ 00002 #define _M_LOGNORMEXPFIT_HH_ 00003 00035 #include "MPulseFit.hh" 00036 #include "QLogNormExpFit.hh" 00037 00038 class MLogNormExpFit : public MPulseFit { 00039 00040 public: 00042 MLogNormExpFit(QSequence* s); 00043 00045 ~MLogNormExpFit(); 00046 00048 void Init(); 00049 00051 QEvent* Do(QEvent* ev); 00052 00054 void Done(); 00055 private: 00056 QLogNormExpFit fFitter; 00057 bool fFitDebug; 00058 bool fFitVerbose; 00059 }; 00060 00061 #endif 00062