OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
RelativeFFTLowPass.h
Go to the documentation of this file.
1 #ifndef CLASSIC_RELATIVE_LOW_PASS_FFT_HH
2 #define CLASSIC_RELATIVE_LOW_PASS_FFT_HH
3 
4 #include "Filters/Filter.h"
5 
7 public:
8  RelativeFFTLowPassFilter(const double &threshold);
9  void apply(std::vector<double> &LineDensity);
10  void calc_derivative(std::vector<double> &histogram, const double &h);
11 
12 private:
13  double threshold_m;
14 };
15 
16 #endif // CLASSIC_RELATIVE_LOW_PASS_FFT_HH
Definition: Filter.h:8
void calc_derivative(std::vector< double > &histogram, const double &h)
RelativeFFTLowPassFilter(const double &threshold)
void apply(std::vector< double > &LineDensity)