19#ifndef UNVENTILATED_T_H
20#define UNVENTILATED_T_H
67 ProcUnventilatedT(
const std::vector< std::pair<std::string, std::string> >& vecArgs,
const std::string& name,
const Config& cfg);
69 virtual void process(
const unsigned int& param,
const std::vector<MeteoData>& ivec,
70 std::vector<MeteoData>& ovec);
73 void filterTA(
const unsigned int& param, std::vector<MeteoData>& ovec)
const;
74 void correctTA(
const unsigned int& param, std::vector<MeteoData>& ovec)
const;
75 void parse_args(
const std::vector< std::pair<std::string, std::string> >& vecArgs);
77 double usr_albedo, usr_vw_thresh;
78 static const double dflt_albedo, vw_thresh;
A class that reads a key/value file. These files (typically named *.ini) follow the INI file format s...
Definition: Config.h:79
Filters and corrects temperatures from unventilated sensor.
Definition: ProcUnventilatedT.h:65
virtual void process(const unsigned int ¶m, const std::vector< MeteoData > &ivec, std::vector< MeteoData > &ovec)
Definition: ProcUnventilatedT.cc:37
ProcUnventilatedT(const std::vector< std::pair< std::string, std::string > > &vecArgs, const std::string &name, const Config &cfg)
Definition: ProcUnventilatedT.cc:29
The base class for all filters that provides the interface and a few helper methods.
Definition: ProcessingBlock.h:67