OOPS
oops/interface/LinearGetValues.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_LINEARGETVALUES_H_
9 #define OOPS_INTERFACE_LINEARGETVALUES_H_
10 
11 #include <memory>
12 #include <string>
13 #include <vector>
14 
15 #include "eckit/config/Configuration.h"
16 
17 #include "oops/base/Geometry.h"
18 #include "oops/base/Increment.h"
19 #include "oops/base/State.h"
20 #include "oops/interface/GeoVaLs.h"
22 #include "oops/util/DateTime.h"
23 #include "oops/util/Duration.h"
24 #include "oops/util/ObjectCounter.h"
25 #include "oops/util/Printable.h"
26 #include "oops/util/Timer.h"
27 
28 namespace oops {
29 
30 /// \brief sets trajectory and computes TL and AD for GetValues
31 // -----------------------------------------------------------------------------
32 
33 template <typename MODEL, typename OBS>
34 class LinearGetValues : public util::Printable,
35  private util::ObjectCounter<LinearGetValues<MODEL, OBS> > {
36  typedef typename MODEL::LinearGetValues LinearGetValues_;
42 
43  public:
44  static const std::string classname() {return "oops::LinearGetValues";}
45 
46 /// Constructor, destructor
47  LinearGetValues(const Geometry_ &, const Locations_ &, const eckit::Configuration &);
48  virtual ~LinearGetValues();
49 
50 /// Interfacing
52  const LinearGetValues_ & lingetvalues() const {return *lingetvalues_;}
53 
54 /// set trajectory for GetValues
55  void setTrajectory(const State_ &, const util::DateTime &, const util::DateTime &,
56  GeoVaLs_ &);
57 /// compute TL of GetValues
58  void fillGeoVaLsTL(const Increment_ &, const util::DateTime &, const util::DateTime &,
59  GeoVaLs_ &) const;
60 /// compute AD of GetValues
61  void fillGeoVaLsAD(Increment_ &, const util::DateTime &, const util::DateTime &,
62  const GeoVaLs_ &) const;
63 
64  private:
65  void print(std::ostream &) const;
66  std::unique_ptr<LinearGetValues_> lingetvalues_;
67 };
68 
69 // =============================================================================
70 /// Constructor, destructor
71 // -----------------------------------------------------------------------------
72 
73 template<typename MODEL, typename OBS>
75  const Locations_ & loc,
76  const eckit::Configuration & linearGetValuesConf)
77  : lingetvalues_() {
78  Log::trace() << "LinearGetValues<MODEL, OBS>::LinearGetValues starting" << std::endl;
79  util::Timer timer(classname(), "LinearGetValues");
80  lingetvalues_.reset(new LinearGetValues_(resol.geometry(), loc.locations(),
81  linearGetValuesConf));
82  Log::trace() << "LinearGetValues<MODEL, OBS>::LinearGetValues done" << std::endl;
83 }
84 
85 // -----------------------------------------------------------------------------
86 
87 template<typename MODEL, typename OBS>
89  Log::trace() << "LinearGetValues<MODEL, OBS>::~LinearGetValues starting" << std::endl;
90  util::Timer timer(classname(), "~LinearGetValues");
91  lingetvalues_.reset();
92  Log::trace() << "LinearGetValues<MODEL, OBS>::~LinearGetValues done" << std::endl;
93 }
94 
95 // -----------------------------------------------------------------------------
96 
97 template<typename MODEL, typename OBS>
98 void LinearGetValues<MODEL, OBS>::setTrajectory(const State_ & state, const util::DateTime & t1,
99  const util::DateTime & t2, GeoVaLs_ & gvals) {
100  Log::trace() << "LinearGetValues<MODEL, OBS>::setTrajectory starting" << std::endl;
101  util::Timer timer(classname(), "setTrajectory");
102  lingetvalues_->setTrajectory(state.state(), t1, t2, gvals.geovals());
103  Log::trace() << "LinearGetValues<MODEL, OBS>::setTrajectory done" << std::endl;
104 }
105 
106 // -----------------------------------------------------------------------------
107 
108 template<typename MODEL, typename OBS>
109 void LinearGetValues<MODEL, OBS>::fillGeoVaLsTL(const Increment_ & inc, const util::DateTime & t1,
110  const util::DateTime & t2, GeoVaLs_ & gvals) const {
111  Log::trace() << "LinearGetValues<MODEL, OBS>::fillGeoVaLsTL starting" << std::endl;
112  util::Timer timer(classname(), "fillGeoVaLsTL");
113  lingetvalues_->fillGeoVaLsTL(inc.increment(), t1, t2, gvals.geovals());
114  Log::trace() << "LinearGetValues<MODEL, OBS>::fillGeoVaLsTL done" << std::endl;
115 }
116 
117 // -----------------------------------------------------------------------------
118 
119 template<typename MODEL, typename OBS>
120 void LinearGetValues<MODEL, OBS>::fillGeoVaLsAD(Increment_ & inc, const util::DateTime & t1,
121  const util::DateTime & t2, const GeoVaLs_ & gvals) const {
122  Log::trace() << "LinearGetValues<MODEL, OBS>::fillGeoVaLsAD starting" << std::endl;
123  util::Timer timer(classname(), "fillGeoVaLsAD");
124  lingetvalues_->fillGeoVaLsAD(inc.increment(), t1, t2, gvals.geovals());
125  Log::trace() << "LinearGetValues<MODEL, OBS>::fillGeoVaLsAD done" << std::endl;
126 }
127 
128 // -----------------------------------------------------------------------------
129 
130 template<typename MODEL, typename OBS>
131 void LinearGetValues<MODEL, OBS>::print(std::ostream & os) const {
132  Log::trace() << "LinearGetValues<MODEL, OBS>::print starting" << std::endl;
133  util::Timer timer(classname(), "print");
134  os << *lingetvalues_;
135  Log::trace() << "LinearGetValues<MODEL, OBS>::print done" << std::endl;
136 }
137 
138 // -----------------------------------------------------------------------------
139 
140 } // namespace oops
141 
142 #endif // OOPS_INTERFACE_LINEARGETVALUES_H_
const GeoVaLs_ & geovals() const
Interfacing.
Geometry class used in oops; subclass of interface class interface::Geometry.
Increment class used in oops.
sets trajectory and computes TL and AD for GetValues
static const std::string classname()
const LinearGetValues_ & lingetvalues() const
void fillGeoVaLsTL(const Increment_ &, const util::DateTime &, const util::DateTime &, GeoVaLs_ &) const
compute TL of GetValues
LinearGetValues_ & lingetvalues()
Interfacing.
MODEL::LinearGetValues LinearGetValues_
std::unique_ptr< LinearGetValues_ > lingetvalues_
void print(std::ostream &) const
LinearGetValues(const Geometry_ &, const Locations_ &, const eckit::Configuration &)
Constructor, destructor.
void fillGeoVaLsAD(Increment_ &, const util::DateTime &, const util::DateTime &, const GeoVaLs_ &) const
compute AD of GetValues
void setTrajectory(const State_ &, const util::DateTime &, const util::DateTime &, GeoVaLs_ &)
set trajectory for 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
const Increment_ & increment() const
State_ & state()
Accessor.
The namespace for the main oops code.