19#ifndef FILTERPOTENTIALSW_H
20#define FILTERPOTENTIALSW_H
74 FilterPotentialSW(
const std::vector< std::pair<std::string, std::string> >& vecArgs,
const std::string& name,
const Config& cfg);
76 virtual void process(
const unsigned int& param,
const std::vector<MeteoData>& ivec,
77 std::vector<MeteoData>& ovec)
override;
80 void parse_args(
const std::vector< std::pair<std::string, std::string> >& vecArgs);
82 double min_coeff, max_coeff;
A class that reads a key/value file. These files (typically named *.ini) follow the INI file format s...
Definition Config.h:79
Checks for physically realistic incoming short wave radiation (ISWR) values.
Definition FilterPotentialSW.h:72
virtual void process(const unsigned int ¶m, const std::vector< MeteoData > &ivec, std::vector< MeteoData > &ovec) override
Definition FilterPotentialSW.cc:33
The base class for all filters that provides the interface and a few helper methods.
Definition ProcessingBlock.h:67