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