00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef MARSYAS_DAUB4_H
00020 #define MARSYAS_DAUB4_H
00021
00022 #include "MarSystem.h"
00023 #include "WaveletStep.h"
00024
00025 namespace Marsyas
00026 {
00038 class Daub4: public MarSystem
00039 {
00040 private:
00041 realvec workspace_;
00042 mrs_real c0_;
00043 mrs_real c1_;
00044 mrs_real c2_;
00045 mrs_real c3_;
00046 mrs_natural nh, nh1, i, j;
00047 MarControlPtr ctrl_forward_;
00048 MarControlPtr ctrl_processSize_;
00049
00050 void addControls();
00051 void myUpdate(MarControlPtr sender);
00052
00053 public:
00054 Daub4(std::string name);
00055 ~Daub4();
00056 MarSystem* clone() const;
00057 void myProcess(realvec& in, realvec& out);
00058
00059 };
00060
00061 }
00062
00063 #endif