00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef MARSYAS_ACCUMULATOR_H
00020 #define MARSYAS_ACCUMULATOR_H
00021
00022 #include "MarSystem.h"
00023
00024 namespace Marsyas
00025 {
00026
00061 class Accumulator: public MarSystem
00062 {
00063 private:
00064 MarControlPtr ctrl_nTimes_;
00065 MarControlPtr ctrl_maxTimes_;
00066 MarControlPtr ctrl_minTimes_;
00067 MarControlPtr ctrl_timesToKeep_;
00068
00069 MarControlPtr ctrl_flush_;
00070 MarControlPtr ctrl_mode_;
00071
00072 mrs_natural nTimes_;
00073
00074 mrs_natural childOnSamples_;
00075 mrs_natural keptOnSamples_;
00076
00077 realvec childOut_;
00078 realvec tout_;
00079
00080 void addControls();
00081 void myUpdate(MarControlPtr sender);
00082
00083 public:
00084 Accumulator(std::string name);
00085 Accumulator(const Accumulator& a);
00086 ~Accumulator();
00087 MarSystem* clone() const;
00088
00089 void myProcess(realvec& in, realvec& out);
00090 bool addMarSystem(MarSystem *marsystem);
00091
00092 };
00093
00094 }
00095
00096 #endif