#ifndef PNDEMCFPGAFILTERCF_HH #define PNDEMCFPGAFILTERCF_HH #include class PndEmcPSAFPGAFilterCF{ public: PndEmcPSAFPGAFilterCF(); ~PndEmcPSAFPGAFilterCF(); void set(unsigned int newBufferSize, float newRatio); void resetToZero(); float put(float valueToStore); private: std::vector buffer; unsigned int bpointer; float ratio; }; #endif