00001 #ifndef _M_BADPULSE_HH_ 00002 #define _M_BADPULSE_HH_ 00003 00038 #include "QFilter.hh" 00039 00040 class MBadPulse : public QFilter { 00041 00042 public: 00044 MBadPulse(QSequence* s); 00045 00047 ~MBadPulse(); 00048 00050 void GetCuts(); 00051 00053 bool Filter(const QEvent* ev); 00054 00055 private: 00056 int fnPeaks; 00057 double fBaselineSlope; 00058 00059 }; 00060 00061 #endif 00062