OOPS
oops/interface/GeoVaLs.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
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  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef OOPS_INTERFACE_GEOVALS_H_
12 #define OOPS_INTERFACE_GEOVALS_H_
13 
14 #include <memory>
15 #include <string>
16 #include <vector>
17 
18 #include <boost/noncopyable.hpp>
19 
20 #include "eckit/config/Configuration.h"
21 #include "oops/base/Variables.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 // -----------------------------------------------------------------------------
31 template <typename OBS>
32 class GeoVaLs : public util::Printable,
33  private util::ObjectCounter<GeoVaLs<OBS> > {
34  typedef typename OBS::GeoVaLs GeoVaLs_;
37 
38  public:
39  static const std::string classname() {return "oops::GeoVaLs";}
40 
41  /// Allocate GeoVaLs for \p locs locations, to be filled with \p vars variables.
42  /// Sizes of GeoVaLs for i-th variable at a single location are defined by
43  /// i-th value of \p sizes.
44  GeoVaLs(const Locations_ & locs, const Variables &, const std::vector<size_t> & sizes);
45  GeoVaLs(const eckit::Configuration &, const ObsSpace_ &, const Variables &);
46  GeoVaLs(const GeoVaLs &);
47 
48  ~GeoVaLs();
49 
50 /// Interfacing
51  const GeoVaLs_ & geovals() const {return *gvals_;}
52  GeoVaLs_ & geovals() {return *gvals_;}
53 
54 /// Linear algebra and utilities, mostly for writing tests
55  void zero();
56  void random();
57  double rms() const;
58  double normalizedrms(const GeoVaLs &) const;
59  GeoVaLs & operator=(const GeoVaLs &);
60  GeoVaLs & operator*=(const double &);
61  GeoVaLs & operator+=(const GeoVaLs &);
62  GeoVaLs & operator-=(const GeoVaLs &);
63  GeoVaLs & operator*=(const GeoVaLs &);
64  double dot_product_with(const GeoVaLs &) const;
65  void read(const eckit::Configuration &);
66  void write(const eckit::Configuration &) const;
67 
68  private:
69  void print(std::ostream &) const;
70  std::unique_ptr<GeoVaLs_> gvals_;
71 };
72 
73 // -----------------------------------------------------------------------------
74 
75 template <typename OBS>
76 GeoVaLs<OBS>::GeoVaLs(const Locations_ & locs, const Variables & vars,
77  const std::vector<size_t> & sizes) : gvals_() {
78  Log::trace() << "GeoVaLs<OBS>::GeoVaLs starting" << std::endl;
79  util::Timer timer(classname(), "GeoVaLs");
80  gvals_.reset(new GeoVaLs_(locs.locations(), vars, sizes));
81  Log::trace() << "GeoVaLs<OBS>::GeoVaLs done" << std::endl;
82 }
83 
84 // -----------------------------------------------------------------------------
85 
86 template <typename OBS>
87  GeoVaLs<OBS>::GeoVaLs(const eckit::Configuration & conf,
88  const ObsSpace_ & ospace, const Variables & vars)
89  : gvals_() {
90  Log::trace() << "GeoVaLs<OBS>::GeoVaLs read starting" << std::endl;
91  util::Timer timer(classname(), "GeoVaLs");
92  gvals_.reset(new GeoVaLs_(conf, ospace.obsspace(), vars));
93  Log::trace() << "GeoVaLs<OBS>::GeoVaLs read done" << std::endl;
94 }
95 
96 // -----------------------------------------------------------------------------
97 
98 template <typename OBS>
99 GeoVaLs<OBS>::GeoVaLs(const GeoVaLs & other): gvals_() {
100  Log::trace() << "GeoVaLs<OBS>::GeoVaLs starting" << std::endl;
101  util::Timer timer(classname(), "GeoVaLs");
102  gvals_.reset(new GeoVaLs_(*other.gvals_));
103  Log::trace() << "ObsVector<OBS>::GeoVaLs done" << std::endl;
104 }
105 
106 // -----------------------------------------------------------------------------
107 
108 template <typename OBS>
110  Log::trace() << "GeoVaLs<OBS>::~GeoVaLs starting" << std::endl;
111  util::Timer timer(classname(), "~GeoVaLs");
112  gvals_.reset();
113  Log::trace() << "GeoVaLs<OBS>::~GeoVaLs done" << std::endl;
114 }
115 
116 // -----------------------------------------------------------------------------
117 
118 template <typename OBS>
119 double GeoVaLs<OBS>::dot_product_with(const GeoVaLs & other) const {
120  Log::trace() << "GeoVaLs<OBS>::dot_product_with starting" << std::endl;
121  util::Timer timer(classname(), "dot_product_with");
122  double zz = gvals_->dot_product_with(*other.gvals_);
123  Log::trace() << "GeoVaLs<OBS>::dot_product_with done" << std::endl;
124  return zz;
125 }
126 
127 // -----------------------------------------------------------------------------
128 
129 template <typename OBS>
131  Log::trace() << "GeoVaLs<OBS>::operator= starting" << std::endl;
132  util::Timer timer(classname(), "operator=");
133  *gvals_ = *rhs.gvals_;
134  Log::trace() << "GeovaLs<OBS>::operator= done" << std::endl;
135  return *this;
136 }
137 
138 // -----------------------------------------------------------------------------
139 
140 template <typename OBS>
142  Log::trace() << "GeoVaLs<OBS>::+=(GeoVaLs, GeoVaLs) starting" << std::endl;
143  util::Timer timer(classname(), "operator+=");
144  *gvals_ += *rhs.gvals_;
145  Log::trace() << "GeoVaLs<OBS>::+= done" << std::endl;
146  return *this;
147 }
148 
149 // -----------------------------------------------------------------------------
150 
151 template <typename OBS>
153  Log::trace() << "GeoVaLs<OBS>::-=(GeoVaLs, GeoVaLs) starting" << std::endl;
154  util::Timer timer(classname(), "operator-=");
155  *gvals_ -= *rhs.gvals_;
156  Log::trace() << "GeoVaLs<OBS>::-= done" << std::endl;
157  return *this;
158 }
159 
160 // -----------------------------------------------------------------------------
161 
162 template <typename OBS>
164  Log::trace() << "GeoVaLs<OBS>::*=(GeoVaLs, GeoVaLs) starting" << std::endl;
165  util::Timer timer(classname(), "operator*=(schur)");
166  *gvals_ *= *rhs.gvals_;
167  Log::trace() << "GeoVaLs<OBS>::*= done" << std::endl;
168  return *this;
169 }
170 
171 // -----------------------------------------------------------------------------
172 
173 template<typename OBS>
175  Log::trace() << "GeoVaLs<OBS>::operator*= starting" << std::endl;
176  util::Timer timer(classname(), "operator*=");
177  *gvals_ *= zz;
178  Log::trace() << "GeoVaLs<OBS>::operator*= done" << std::endl;
179  return *this;
180 }
181 
182 // -----------------------------------------------------------------------------
183 
184 template <typename OBS>
185 double GeoVaLs<OBS>::rms() const {
186  Log::trace() << "GeoVaLs<OBS>::rms starting" << std::endl;
187  util::Timer timer(classname(), "rms");
188  double zz = gvals_->rms();
189  Log::trace() << "GeoVaLs<OBS>::rms done" << std::endl;
190  return zz;
191 }
192 
193 // -----------------------------------------------------------------------------
194 
195 template <typename OBS>
196 double GeoVaLs<OBS>::normalizedrms(const GeoVaLs & rhs) const {
197  Log::trace() << "GeoVaLs<OBS>::normalizedrms starting" << std::endl;
198  util::Timer timer(classname(), "normalizedrms");
199  double zz = gvals_->normalizedrms(*rhs.gvals_);
200  Log::trace() << "GeoVaLs<OBS>::normalizedrms done" << std::endl;
201  return zz;
202 }
203 
204 // -----------------------------------------------------------------------------
205 
206 template <typename OBS>
208  Log::trace() << "GeoVaLs<OBS>::zero starting" << std::endl;
209  util::Timer timer(classname(), "zero");
210  gvals_->zero();
211  Log::trace() << "GeoVaLs<OBS>::zero done" << std::endl;
212 }
213 
214 // -----------------------------------------------------------------------------
215 
216 template <typename OBS>
218  Log::trace() << "GeoVaLs<OBS>::random starting" << std::endl;
219  util::Timer timer(classname(), "random");
220  gvals_->random();
221  Log::trace() << "GeoVaLs<OBS>::random done" << std::endl;
222 }
223 
224 // -----------------------------------------------------------------------------
225 
226 template<typename OBS>
227 void GeoVaLs<OBS>::read(const eckit::Configuration & conf) {
228  Log::trace() << "GeoVaLs<OBS>::read starting" << std::endl;
229  util::Timer timer(classname(), "read");
230  gvals_->read(conf);
231  Log::trace() << "GeoVaLs<OBS>::read done" << std::endl;
232 }
233 
234 // -----------------------------------------------------------------------------
235 
236 template<typename OBS>
237 void GeoVaLs<OBS>::write(const eckit::Configuration & conf) const {
238  Log::trace() << "GeoVaLs<OBS>::write starting" << std::endl;
239  util::Timer timer(classname(), "write");
240  gvals_->write(conf);
241  Log::trace() << "GeoVaLs<OBS>::write done" << std::endl;
242 }
243 
244 // -----------------------------------------------------------------------------
245 
246 template<typename OBS>
247 void GeoVaLs<OBS>::print(std::ostream & os) const {
248  Log::trace() << "GeoVaLs<OBS>::print starting" << std::endl;
249  util::Timer timer(classname(), "print");
250  os << *gvals_;
251  Log::trace() << "GeoVaLs<OBS>::print done" << std::endl;
252 }
253 
254 // -----------------------------------------------------------------------------
255 
256 } // namespace oops
257 
258 #endif // OOPS_INTERFACE_GEOVALS_H_
Locations< OBS > Locations_
double dot_product_with(const GeoVaLs &) const
void print(std::ostream &) const
double normalizedrms(const GeoVaLs &) const
void read(const eckit::Configuration &)
GeoVaLs & operator+=(const GeoVaLs &)
std::unique_ptr< GeoVaLs_ > gvals_
GeoVaLs & operator=(const GeoVaLs &)
void zero()
Linear algebra and utilities, mostly for writing tests.
const GeoVaLs_ & geovals() const
Interfacing.
ObsSpace< OBS > ObsSpace_
void write(const eckit::Configuration &) const
static const std::string classname()
GeoVaLs & operator*=(const double &)
GeoVaLs(const Locations_ &locs, const Variables &, const std::vector< size_t > &sizes)
GeoVaLs & operator-=(const GeoVaLs &)
Locations of observations for observation operator.
const Locations_ & locations() const
Interfacing.
ObsSpace_ & obsspace() const
Interfacing.
The namespace for the main oops code.