source: fact/tools/rootmacros/factfir.h@ 13595

Last change on this file since 13595 was 13535, checked in by neise, 12 years ago
Makefile works
File size: 328 bytes
Line 
1#ifndef __FACTFIR_H
2#define __FACTFIR_H
3
4#include <vector>
5
6
7void factfir(
8 double b,
9 std::vector<double> &a,
10 int k,
11 std::vector<float> &source,
12 std::vector<float> &dest);
13
14void sliding_avg(
15 std::vector<float> &source,
16 std::vector<float> &dest,
17 unsigned int HalfWidth);
18#endif // __FACTFIR_H
Note: See TracBrowser for help on using the repository browser.