19#ifndef PROCUNDERCATCH_WMO_H
20#define PROCUNDERCATCH_WMO_H
76 ProcUndercatch_WMO(
const std::vector< std::pair<std::string, std::string> >& vecArgs,
const std::string& name,
const Config& cfg);
78 virtual void process(
const unsigned int& param,
const std::vector<MeteoData>& ivec,
79 std::vector<MeteoData>& ovec);
82 typedef enum SENSOR_TYPE {
95 typedef enum PRECIP_TYPE {
101 void parse_args(
const std::vector< std::pair<std::string, std::string> >& vecArgs);
104 double factor_snow, factor_mixed;
106 static const double Tsnow_WMO, Train_WMO;
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_WMO.h:74
virtual void process(const unsigned int ¶m, const std::vector< MeteoData > &ivec, std::vector< MeteoData > &ovec)
Definition: ProcUndercatch_WMO.cc:38
ProcUndercatch_WMO(const std::vector< std::pair< std::string, std::string > > &vecArgs, const std::string &name, const Config &cfg)
Definition: ProcUndercatch_WMO.cc:30
The base class for all filters that provides the interface and a few helper methods.
Definition: ProcessingBlock.h:67