OOPS
GetValuesQG.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2019-2020 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #ifndef QG_MODEL_GETVALUESQG_H_
9 #define QG_MODEL_GETVALUESQG_H_
10 
11 #include <memory>
12 #include <ostream>
13 #include <string>
14 
15 #include "eckit/config/LocalConfiguration.h"
16 
17 #include "oops/util/DateTime.h"
18 #include "oops/util/ObjectCounter.h"
19 #include "oops/util/Printable.h"
20 
21 #include "oops/qg/LocationsQG.h"
22 #include "oops/qg/QgFortran.h"
23 
24 namespace eckit {
25  class Configuration;
26 }
27 
28 namespace qg {
29  class GomQG;
30  class GeometryQG;
31  class StateQG;
32 
33 /// \brief used for getting state values at observation locations
34 // -----------------------------------------------------------------------------
35 class GetValuesQG : public util::Printable,
36  private util::ObjectCounter<GetValuesQG> {
37  public:
38  static const std::string classname() {return "qg::GetValuesQG";}
39 
40 /// \brief saves all locations \p locs to use during filling GeoVaLs
41  GetValuesQG(const GeometryQG &, const LocationsQG & locs, const eckit::Configuration &);
43 
44 /// \brief fills in \p geovals for all observations in the timeframe (\p t1, \p t2],
45 /// \p geovals are interpolated trilinearly from \p state at the nearest gridpoints
46  void fillGeoVaLs(const StateQG &, const util::DateTime & t1,
47  const util::DateTime & t2, GomQG &) const;
48 
49  private:
50  void print(std::ostream &) const;
52  eckit::LocalConfiguration conf_;
53 };
54 // -----------------------------------------------------------------------------
55 
56 } // namespace qg
57 
58 #endif // QG_MODEL_GETVALUESQG_H_
GeometryQG handles geometry for QG model.
Definition: GeometryQG.h:58
used for getting state values at observation locations
Definition: GetValuesQG.h:36
eckit::LocalConfiguration conf_
Definition: GetValuesQG.h:52
GetValuesQG(const GeometryQG &, const LocationsQG &locs, const eckit::Configuration &)
saves all locations locs to use during filling GeoVaLs
Definition: GetValuesQG.cc:27
void fillGeoVaLs(const StateQG &, const util::DateTime &t1, const util::DateTime &t2, GomQG &) const
fills in geovals for all observations in the timeframe (t1, t2], geovals are interpolated trilinearly...
Definition: GetValuesQG.cc:37
LocationsQG locs_
Definition: GetValuesQG.h:51
void print(std::ostream &) const
Definition: GetValuesQG.cc:54
static const std::string classname()
Definition: GetValuesQG.h:38
GomQG class to handle local model values for QG model.
Definition: GomQG.h:35
LocationsQG class to handle locations for QG model.
Definition: LocationsQG.h:36
QG model state.
Definition: StateQG.h:42
Definition: FieldL95.h:22
The namespace for the qg model.