19#ifndef PROCEXPSMOOTHING_H
20#define PROCEXPSMOOTHING_H
66 ProcExpSmoothing(
const std::vector< std::pair<std::string, std::string> >& vecArgs,
const std::string& name,
const Config& cfg);
68 virtual void process(
const unsigned int& param,
const std::vector<MeteoData>& ivec,
69 std::vector<MeteoData>& ovec);
72 void parse_args(
const std::vector< std::pair<std::string, std::string> >& vecArgs);
73 static double calcExpSmoothing(
const std::vector<MeteoData>& ivec,
const unsigned int& param,
const size_t& start,
const size_t& end,
const size_t& pos,
const double& i_alpha);
A class that reads a key/value file. These files (typically named *.ini) follow the INI file format s...
Definition: Config.h:79
Exponential smoothing.
Definition: ProcExpSmoothing.h:64
virtual void process(const unsigned int ¶m, const std::vector< MeteoData > &ivec, std::vector< MeteoData > &ovec)
Definition: ProcExpSmoothing.cc:39
ProcExpSmoothing(const std::vector< std::pair< std::string, std::string > > &vecArgs, const std::string &name, const Config &cfg)
Definition: ProcExpSmoothing.cc:27
Definition: WindowedFilter.h:35