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

Last change on this file since 17689 was 14408, checked in by lusterma, 12 years ago
updated spike removal thresholds
  • Property svn:executable set to *
File size: 362 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 SingleCandidateTHR = -10.,
12 const float DoubleCandidateTHR = -5.,
13 const float nextDiffTHR = 1
14 //const float nextNextDiffTHR = -10.
15);
16
17#endif
Note: See TracBrowser for help on using the repository browser.