OOPS
oops/interface/ObsAuxIncrement.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_OBSAUXINCREMENT_H_
12 #define OOPS_INTERFACE_OBSAUXINCREMENT_H_
13 
14 #include <iostream>
15 #include <memory>
16 #include <string>
17 #include <vector>
18 
21 #include "oops/util/Logger.h"
22 #include "oops/util/ObjectCounter.h"
23 #include "oops/util/Printable.h"
24 #include "oops/util/Serializable.h"
25 #include "oops/util/Timer.h"
26 
27 namespace eckit {
28  class Configuration;
29 }
30 
31 namespace oops {
32 
33 // -----------------------------------------------------------------------------
34 /// \brief Auxiliary increment related to observations, templated on <OBS>
35 /// \details
36 /// This is currently only used for bias correction coefficient increments.
37 /// This class calls the <OBS> implementation of ObsAuxIncrement.
38 // -----------------------------------------------------------------------------
39 
40 template <typename OBS>
41 class ObsAuxIncrement : public util::Printable,
42  public util::Serializable,
43  private util::ObjectCounter<ObsAuxIncrement<OBS> > {
44  typedef typename OBS::ObsAuxIncrement ObsAuxIncrement_;
46 
47  public:
48  typedef typename ObsAuxIncrement_::Parameters_ Parameters_;
49 
50  static const std::string classname() {return "oops::ObsAuxIncrement";}
51 
52  /// Constructor for specified ObsSpace \p os and \p params
53  ObsAuxIncrement(const ObsSpace<OBS> & os, const Parameters_ & params);
54  /// Copies \p other if \p copy is true, otherwise creates zero ObsAuxIncrement
55  /// of the same size as \p other.
56  ObsAuxIncrement(const ObsAuxIncrement & other, const bool copy = true);
57  /// Destructor (defined explicitly for timing and tracing)
59 
60  /// const Accessor
61  const ObsAuxIncrement_ & obsauxincrement() const {return *aux_;}
62  /// Accessor
64 
65  /// Sets this ObsAuxIncrement to the difference between two ObsAuxControl objects
66  void diff(const ObsAuxControl_ &, const ObsAuxControl_ &);
67  /// Zero out this ObsAuxIncrement
68  void zero();
69  /// Linear algebra operators
73  ObsAuxIncrement & operator*=(const double &);
74  void axpy(const double &, const ObsAuxIncrement &);
75  /// dot product with \p dx ObsAuxIncrement
76  double dot_product_with(const ObsAuxIncrement & dx) const;
77 
78  /// Read this ObsAuxIncrement from file
79  void read(const eckit::Configuration &);
80  /// Write this ObsAuxIncrement out to file
81  void write(const eckit::Configuration &) const;
82  /// Norm (used in tests)
83  double norm() const;
84 
85  /// Serialize and deserialize (used in 4DEnVar, weak-constraint 4DVar and Block-Lanczos minimizer)
86  size_t serialSize() const override;
87  void serialize(std::vector<double> &) const override;
88  void deserialize(const std::vector<double> &, size_t &) override;
89 
90  private:
91  void print(std::ostream &) const override;
92  std::unique_ptr<ObsAuxIncrement_> aux_;
93 };
94 
95 // -----------------------------------------------------------------------------
96 
97 template <typename OBS>
99  Log::trace() << "operator+=(ObsAuxControl, ObsAuxIncrement) starting" << std::endl;
100  util::Timer timer("oops::ObsAuxIncrement", "operator+=ObsAuxControl");
101  xx.obsauxcontrol() += dx.obsauxincrement();
102  Log::trace() << "operator+=(ObsAuxControl, ObsAuxIncrement) done" << std::endl;
103  return xx;
104 }
105 
106 // =============================================================================
107 
108 template<typename OBS>
110  const Parameters_ & params) : aux_()
111 {
112  Log::trace() << "ObsAuxIncrement<OBS>::ObsAuxIncrement starting" << std::endl;
113  util::Timer timer(classname(), "ObsAuxIncrement");
114  aux_.reset(new ObsAuxIncrement_(os.obsspace(), params));
115  this->setObjectSize(aux_->serialSize()*sizeof(double));
116  Log::trace() << "ObsAuxIncrement<OBS>::ObsAuxIncrement done" << std::endl;
117 }
118 // -----------------------------------------------------------------------------
119 template<typename OBS>
121  const bool copy) : aux_()
122 {
123  Log::trace() << "ObsAuxIncrement<OBS>::ObsAuxIncrement copy starting" << std::endl;
124  util::Timer timer(classname(), "ObsAuxIncrement");
125  aux_.reset(new ObsAuxIncrement_(*other.aux_, copy));
126  this->setObjectSize(aux_->serialSize()*sizeof(double));
127  Log::trace() << "ObsAuxIncrement<OBS>::ObsAuxIncrement copy done" << std::endl;
128 }
129 // -----------------------------------------------------------------------------
130 template<typename OBS>
132  Log::trace() << "ObsAuxIncrement<OBS>::~ObsAuxIncrement starting" << std::endl;
133  util::Timer timer(classname(), "~ObsAuxIncrement");
134  aux_.reset();
135  Log::trace() << "ObsAuxIncrement<OBS>::~ObsAuxIncrement done" << std::endl;
136 }
137 // -----------------------------------------------------------------------------
138 template<typename OBS>
140  Log::trace() << "ObsAuxIncrement<OBS>::diff starting" << std::endl;
141  util::Timer timer(classname(), "diff");
142  aux_->diff(x1.obsauxcontrol(), x2.obsauxcontrol());
143  Log::trace() << "ObsAuxIncrement<OBS>::diff done" << std::endl;
144 }
145 // -----------------------------------------------------------------------------
146 template<typename OBS>
148  Log::trace() << "ObsAuxIncrement<OBS>::zero starting" << std::endl;
149  util::Timer timer(classname(), "zero");
150  aux_->zero();
151  Log::trace() << "ObsAuxIncrement<OBS>::zero done" << std::endl;
152 }
153 // -----------------------------------------------------------------------------
154 template<typename OBS>
156  Log::trace() << "ObsAuxIncrement<OBS>::operator= starting" << std::endl;
157  util::Timer timer(classname(), "operator=");
158  *aux_ = *rhs.aux_;
159  Log::trace() << "ObsAuxIncrement<OBS>::operator= done" << std::endl;
160  return *this;
161 }
162 // -----------------------------------------------------------------------------
163 template<typename OBS>
165  Log::trace() << "ObsAuxIncrement<OBS>::operator+= starting" << std::endl;
166  util::Timer timer(classname(), "operator+=");
167  *aux_ += *rhs.aux_;
168  Log::trace() << "ObsAuxIncrement<OBS>::operator+= done" << std::endl;
169  return *this;
170 }
171 // -----------------------------------------------------------------------------
172 template<typename OBS>
174  Log::trace() << "ObsAuxIncrement<OBS>::operator-= starting" << std::endl;
175  util::Timer timer(classname(), "operator-=");
176  *aux_ -= *rhs.aux_;
177  Log::trace() << "ObsAuxIncrement<OBS>::operator-= done" << std::endl;
178  return *this;
179 }
180 // -----------------------------------------------------------------------------
181 template<typename OBS>
183  Log::trace() << "ObsAuxIncrement<OBS>::operator*= starting" << std::endl;
184  util::Timer timer(classname(), "operator*=");
185  *aux_ *= zz;
186  Log::trace() << "ObsAuxIncrement<OBS>::operator*= done" << std::endl;
187  return *this;
188 }
189 // -----------------------------------------------------------------------------
190 template<typename OBS>
191 void ObsAuxIncrement<OBS>::axpy(const double & zz, const ObsAuxIncrement & dx) {
192  Log::trace() << "ObsAuxIncrement<OBS>::axpy starting" << std::endl;
193  util::Timer timer(classname(), "axpy");
194  aux_->axpy(zz, *dx.aux_);
195  Log::trace() << "ObsAuxIncrement<OBS>::axpy done" << std::endl;
196 }
197 // -----------------------------------------------------------------------------
198 template<typename OBS>
200  Log::trace() << "ObsAuxIncrement<OBS>::dot_product_with starting" << std::endl;
201  util::Timer timer(classname(), "dot_product_with");
202  double zz = aux_->dot_product_with(*dx.aux_);
203  Log::trace() << "ObsAuxIncrement<OBS>::dot_product_with done" << std::endl;
204  return zz;
205 }
206 // -----------------------------------------------------------------------------
207 template<typename OBS>
208 void ObsAuxIncrement<OBS>::read(const eckit::Configuration & conf) {
209  Log::trace() << "ObsAuxIncrement<OBS>::read starting" << std::endl;
210  util::Timer timer(classname(), "read");
211  aux_->read(conf);
212  Log::trace() << "ObsAuxIncrement<OBS>::read done" << std::endl;
213 }
214 // -----------------------------------------------------------------------------
215 template<typename OBS>
216 void ObsAuxIncrement<OBS>::write(const eckit::Configuration & conf) const {
217  Log::trace() << "ObsAuxIncrement<OBS>::write starting" << std::endl;
218  util::Timer timer(classname(), "write");
219  aux_->write(conf);
220  Log::trace() << "ObsAuxIncrement<OBS>::write done" << std::endl;
221 }
222 // -----------------------------------------------------------------------------
223 template<typename OBS>
225  Log::trace() << "ObsAuxIncrement<OBS>::norm starting" << std::endl;
226  util::Timer timer(classname(), "norm");
227  double zz = aux_->norm();
228  Log::trace() << "ObsAuxIncrement<OBS>::norm done" << std::endl;
229  return zz;
230 }
231 // -----------------------------------------------------------------------------
232 template<typename OBS>
234  Log::trace() << "ObsAuxIncrement<OBS>::serialSize" << std::endl;
235  util::Timer timer(classname(), "serialSize");
236  return aux_->serialSize();
237 }
238 // -----------------------------------------------------------------------------
239 template<typename OBS>
240 void ObsAuxIncrement<OBS>::serialize(std::vector<double> & vect) const {
241  Log::trace() << "ObsAuxIncrement<OBS>::serialize starting" << std::endl;
242  util::Timer timer(classname(), "serialize");
243  aux_->serialize(vect);
244  Log::trace() << "ObsAuxIncrement<OBS>::serialize done" << std::endl;
245 }
246 // -----------------------------------------------------------------------------
247 template<typename OBS>
248 void ObsAuxIncrement<OBS>::deserialize(const std::vector<double> & vect, size_t & current) {
249  Log::trace() << "ObsAuxIncrement<OBS>::deserialize starting" << std::endl;
250  util::Timer timer(classname(), "deserialize");
251  aux_->deserialize(vect, current);
252  Log::trace() << "ObsAuxIncrement<OBS>::deserialize done" << std::endl;
253 }
254 // -----------------------------------------------------------------------------
255 template<typename OBS>
256 void ObsAuxIncrement<OBS>::print(std::ostream & os) const {
257  Log::trace() << "ObsAuxIncrement<OBS>::print starting" << std::endl;
258  util::Timer timer(classname(), "print");
259  os << *aux_;
260  Log::trace() << "ObsAuxIncrement<OBS>::print done" << std::endl;
261 }
262 // -----------------------------------------------------------------------------
263 
264 } // namespace oops
265 
266 #endif // OOPS_INTERFACE_OBSAUXINCREMENT_H_
Auxiliary state related to observations, templated on <OBS>
const ObsAuxControl_ & obsauxcontrol() const
const Accessor
Auxiliary increment related to observations, templated on <OBS>
double norm() const
Norm (used in tests)
std::unique_ptr< ObsAuxIncrement_ > aux_
double dot_product_with(const ObsAuxIncrement &dx) const
dot product with dx ObsAuxIncrement
ObsAuxIncrement_::Parameters_ Parameters_
void zero()
Zero out this ObsAuxIncrement.
void axpy(const double &, const ObsAuxIncrement &)
ObsAuxIncrement & operator*=(const double &)
void serialize(std::vector< double > &) const override
void deserialize(const std::vector< double > &, size_t &) override
ObsAuxIncrement(const ObsSpace< OBS > &os, const Parameters_ &params)
Constructor for specified ObsSpace os and params.
void read(const eckit::Configuration &)
Read this ObsAuxIncrement from file.
ObsAuxIncrement_ & obsauxincrement()
Accessor.
size_t serialSize() const override
Serialize and deserialize (used in 4DEnVar, weak-constraint 4DVar and Block-Lanczos minimizer)
void write(const eckit::Configuration &) const
Write this ObsAuxIncrement out to file.
ObsAuxIncrement & operator-=(const ObsAuxIncrement &)
ObsAuxIncrement & operator=(const ObsAuxIncrement &)
Linear algebra operators.
void print(std::ostream &) const override
const ObsAuxIncrement_ & obsauxincrement() const
const Accessor
~ObsAuxIncrement()
Destructor (defined explicitly for timing and tracing)
static const std::string classname()
void diff(const ObsAuxControl_ &, const ObsAuxControl_ &)
Sets this ObsAuxIncrement to the difference between two ObsAuxControl objects.
ObsAuxIncrement & operator+=(const ObsAuxIncrement &)
ObsSpace_ & obsspace() const
Interfacing.
Definition: FieldL95.h:22
The namespace for the main oops code.
State< MODEL > & operator+=(State< MODEL > &xx, const Increment< MODEL > &dx)
Add on dx incrment to model state xx.