19#ifndef PROCUNDERCATCH_FORLAND_H
20#define PROCUNDERCATCH_FORLAND_H
55 virtual void process(
const unsigned int& param,
const std::vector<MeteoData>& ivec,
56 std::vector<MeteoData>& ovec);
59 typedef enum SENSOR_TYPE {
70 double solidPrecipitation(
double TA,
double VW)
const;
71 double liquidPrecipitation(
const double& Pint,
double VW)
const;
72 void parse_args(
const std::vector< std::pair<std::string, std::string> >& vecArgs);
75 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_Forland.h:51
virtual void process(const unsigned int ¶m, const std::vector< MeteoData > &ivec, std::vector< MeteoData > &ovec)
Definition: ProcUndercatch_Forland.cc:38
ProcUndercatch_Forland(const std::vector< std::pair< std::string, std::string > > &vecArgs, const std::string &name, const Config &cfg)
Definition: ProcUndercatch_Forland.cc:31
The base class for all filters that provides the interface and a few helper methods.
Definition: ProcessingBlock.h:67