19#ifndef FILTERHUNHEATEDPSUM_H
20#define FILTERHUNHEATEDPSUM_H
50 FilterUnheatedPSUM(
const std::vector< std::pair<std::string, std::string> >& vecArgs,
const std::string& name,
const Config& cfg);
52 virtual void process(
const unsigned int& param,
const std::vector<MeteoData>& ivec,
53 std::vector<MeteoData>& ovec);
56 void parse_args(
const std::vector< std::pair<std::string, std::string> >& vecArgs);
58 double thresh_rh, thresh_Dt;
A class that reads a key/value file. These files (typically named *.ini) follow the INI file format s...
Definition: Config.h:79
Filters out snow melting in an unheated rain gauge.
Definition: FilterUnheatedPSUM.h:48
virtual void process(const unsigned int ¶m, const std::vector< MeteoData > &ivec, std::vector< MeteoData > &ovec)
Definition: FilterUnheatedPSUM.cc:32
FilterUnheatedPSUM(const std::vector< std::pair< std::string, std::string > > &vecArgs, const std::string &name, const Config &cfg)
Definition: FilterUnheatedPSUM.cc:25
The base class for all filters that provides the interface and a few helper methods.
Definition: ProcessingBlock.h:67