OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
Stencil.h
Go to the documentation of this file.
1#ifndef CLASSIC_STENCIL_HH
2#define CLASSIC_STENCIL_HH
3
4#include "Filters/Filter.h"
5
6class StencilFilter: public Filter {
7public:
9 void apply(std::vector<double> &histogram);
10 void calc_derivative(std::vector<double> &histogram, const double &h);
11};
12
13#endif // CLASSIC_STENCIL_HH
Definition: Filter.h:8
StencilFilter()
Definition: Stencil.h:8
void apply(std::vector< double > &histogram)
Definition: Stencil.cpp:4
void calc_derivative(std::vector< double > &histogram, const double &h)
Definition: Stencil.cpp:31