19#ifndef PROCUNDERCATCH_HAMON_H
20#define PROCUNDERCATCH_HAMON_H
48 ProcUndercatch_Hamon(
const std::vector< std::pair<std::string, std::string> >& vecArgs,
const std::string& name,
const Config& cfg);
50 virtual void process(
const unsigned int& param,
const std::vector<MeteoData>& ivec,
51 std::vector<MeteoData>& ovec);
54 typedef enum SENSOR_TYPE {
60 void parse_args(
const std::vector< std::pair<std::string, std::string> >& vecArgs);
A class that reads a key/value file. These files (typically named *.ini) follow the INI file format s...
Definition: Config.h:79
Correct precipitation for undercatch in winter conditions.
Definition: ProcUndercatch_Hamon.h:46
virtual void process(const unsigned int ¶m, const std::vector< MeteoData > &ivec, std::vector< MeteoData > &ovec)
Definition: ProcUndercatch_Hamon.cc:34
ProcUndercatch_Hamon(const std::vector< std::pair< std::string, std::string > > &vecArgs, const std::string &name, const Config &cfg)
Definition: ProcUndercatch_Hamon.cc:27
The base class for all filters that provides the interface and a few helper methods.
Definition: ProcessingBlock.h:67