PandaRoot
PndEmcPSAFPGAFilterMA.h
Go to the documentation of this file.
1 #ifndef PNDEMCFPGAFILTERMA_HH
2 #define PNDEMCFPGAFILTERMA_HH
3 #include <vector>
4 #include <iostream>
6 {
7  public:
10  void set(unsigned int newBufferSize);
11  void resetToZero();
12  float put(float valueToStore);
13  private:
14  std::vector<float> buffer;
15  unsigned int bpointer;
16  float sum;
17 };
18 
19 #endif
float put(float valueToStore)