source: fact/tools/rootmacros/SpikeRemoval.h@ 13535

Last change on this file since 13535 was 13535, checked in by neise, 12 years ago
Makefile works
  • Property svn:executable set to *
File size: 319 bytes
Line 
1#ifndef __SPIKEREMOVAL_H
2#define __SPIKEREMOVAL_H
3
4#include <vector>
5
6std::vector<float> * computeN1mean( std::vector<float> &src);
7
8void removeSpikes(
9 std::vector<float> &src,
10 std::vector<float> &dest,
11 const float CandidateTHR = -5.0,
12 const float nextDiffTHR = -1.6,
13 const float nextNextDiffTHR = -10.
14);
15
16#endif
Note: See TracBrowser for help on using the repository browser.