OOPS
oops/interface/GetValues.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 OOPS_INTERFACE_GETVALUES_H_
9 #define OOPS_INTERFACE_GETVALUES_H_
10 
11 #include <memory>
12 #include <string>
13 
14 
15 #include "eckit/config/Configuration.h"
16 #include "eckit/config/LocalConfiguration.h"
17 #include "oops/base/Geometry.h"
18 #include "oops/base/State.h"
19 #include "oops/interface/GeoVaLs.h"
21 #include "oops/util/DateTime.h"
22 #include "oops/util/ObjectCounter.h"
23 #include "oops/util/Printable.h"
24 #include "oops/util/Timer.h"
25 
26 namespace oops {
27 
28 /// \brief Gets values from model State to observation locations (fills GeoVaLs)
29 // -----------------------------------------------------------------------------
30 
31 template <typename MODEL, typename OBS>
32 class GetValues : public util::Printable,
33  private util::ObjectCounter<GetValues<MODEL, OBS> > {
34  typedef typename MODEL::GetValues GetValues_;
39 
40  public:
41  static const std::string classname() {return "oops::GetValues";}
42 
43 /// Constructor, destructor
44  GetValues(const Geometry_ &, const Locations_ &, const eckit::Configuration &);
45  ~GetValues();
46 
47 /// Interfacing
49  const GetValues_ & getvalues() const {return *getvalues_;}
50 
51 /// Get state values at observation locations
52  void fillGeoVaLs(const State_ &, const util::DateTime &, const util::DateTime &,
53  GeoVaLs_ &) const;
54 
55  private:
56  void print(std::ostream &) const;
57  std::unique_ptr<GetValues_> getvalues_;
58 };
59 
60 // =============================================================================
61 
62 template<typename MODEL, typename OBS>
64  const eckit::Configuration & conf)
65  :getvalues_()
66 {
67  Log::trace() << "GetValues<MODEL, OBS>::GetValues starting" << std::endl;
68  util::Timer timer(classname(), "GetValues");
69  getvalues_.reset(new GetValues_(resol.geometry(), locs.locations(), conf));
70  Log::trace() << "GetValues<MODEL, OBS>::GetValues done" << std::endl;
71 }
72 
73 
74 // -----------------------------------------------------------------------------
75 
76 template<typename MODEL, typename OBS>
78  Log::trace() << "GetValues<MODEL, OBS>::~GetValues starting" << std::endl;
79  util::Timer timer(classname(), "~GetValues");
80  getvalues_.reset();
81  Log::trace() << "GetValues<MODEL, OBS>::~GetValues done" << std::endl;
82 }
83 
84 // -----------------------------------------------------------------------------
85 
86 template<typename MODEL, typename OBS>
87 void GetValues<MODEL, OBS>::fillGeoVaLs(const State_ & state, const util::DateTime & t1,
88  const util::DateTime & t2, GeoVaLs_ & gvals) const {
89  Log::trace() << "GetValues<MODEL, OBS>::fillGeoVaLs starting" << std::endl;
90  util::Timer timer(classname(), "fillGeoVaLs");
91  getvalues_->fillGeoVaLs(state.state(), t1, t2, gvals.geovals());
92  Log::trace() << "GetValues<MODEL, OBS>::fillGeoVaLs done" << std::endl;
93 }
94 
95 // -----------------------------------------------------------------------------
96 
97 template<typename MODEL, typename OBS>
98 void GetValues<MODEL, OBS>::print(std::ostream & os) const {
99  Log::trace() << "GetValues<MODEL, OBS>::print starting" << std::endl;
100  util::Timer timer(classname(), "print");
101  os << *getvalues_;
102  Log::trace() << "GetValues<MODEL, OBS>::print done" << std::endl;
103 }
104 
105 // -----------------------------------------------------------------------------
106 
107 } // namespace oops
108 
109 #endif // OOPS_INTERFACE_GETVALUES_H_
const GeoVaLs_ & geovals() const
Interfacing.
Geometry class used in oops; subclass of interface class interface::Geometry.
Gets values from model State to observation locations (fills GeoVaLs)
static const std::string classname()
void fillGeoVaLs(const State_ &, const util::DateTime &, const util::DateTime &, GeoVaLs_ &) const
Get state values at observation locations.
GetValues_ & getvalues()
Interfacing.
Locations< OBS > Locations_
MODEL::GetValues GetValues_
GetValues(const Geometry_ &, const Locations_ &, const eckit::Configuration &)
Constructor, destructor.
const GetValues_ & getvalues() const
Geometry< MODEL > Geometry_
void print(std::ostream &) const
std::unique_ptr< GetValues_ > getvalues_
Locations of observations for observation operator.
const Locations_ & locations() const
Interfacing.
State class used in oops; subclass of interface class interface::State.
const Geometry_ & geometry() const
State_ & state()
Accessor.
The namespace for the main oops code.