MeteoIODoc  2.10.0
ProcUnventilatedT.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-or-later
2 /***********************************************************************************/
3 /* Copyright 2012 WSL Institute for Snow and Avalanche Research SLF-DAVOS */
4 /***********************************************************************************/
5 /* This file is part of MeteoIO.
6  MeteoIO is free software: you can redistribute it and/or modify
7  it under the terms of the GNU Lesser General Public License as published by
8  the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
10 
11  MeteoIO is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU Lesser General Public License for more details.
15 
16  You should have received a copy of the GNU Lesser General Public License
17  along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
18 */
19 #ifndef UNVENTILATED_T_H
20 #define UNVENTILATED_T_H
21 
23 #include <vector>
24 #include <string>
25 
26 namespace mio {
27 
66  public:
67  ProcUnventilatedT(const std::vector< std::pair<std::string, std::string> >& vecArgs, const std::string& name, const Config& cfg);
68 
69  virtual void process(const unsigned int& param, const std::vector<MeteoData>& ivec,
70  std::vector<MeteoData>& ovec);
71 
72  private:
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);
76 
77  double usr_albedo, usr_vw_thresh;
78  static const double dflt_albedo, vw_thresh;
79  bool nakamura; //use Nakamura or Huwald model
80 
81 };
82 
83 } //end namespace
84 
85 #endif
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 &param, 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
Definition: Config.cc:30