MFirTest.hh
00001 #ifndef _M_FIRTEST_HH_
00002 #define _M_FIRTEST_HH_
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #include "QModule.hh"
00040 #include "QVector.hh"
00041
00042 class MFirTest : public QModule {
00043
00044 public:
00046 MFirTest(QSequence* s);
00047
00049 ~MFirTest();
00050
00052 void Init();
00053
00055 QEvent* Do(QEvent* ev);
00056
00058 void Done();
00059
00060 QVector FFTSym(const QVector &);
00061
00062 private:
00063 std::string fOutputFile;
00064 bool fFilterDebug;
00065 bool fCausal;
00066 bool fFFTWithWindow;
00067 size_t fFilterSize;
00068
00069 };
00070
00071 #endif // _M_FIRTEST_HH_
00072