/* * NumericConvolutionModel1D.h * * Created on: Jan 11, 2013 * Author: steve */ #ifndef NUMERICCONVOLUTIONMODEL1D_H_ #define NUMERICCONVOLUTIONMODEL1D_H_ #include "core/Model1D.h" class NumericConvolutionModel1D: public Model1D { private: unsigned int divisions; shared_ptr first, second; public: NumericConvolutionModel1D(std::string name_, shared_ptr first_, shared_ptr second_); void initModelParameters(); double eval(const double *x) const; void updateDomain(); }; #endif /* NUMERICCONVOLUTIONMODEL1D_H_ */