OOPS
oops/interface/ObsAuxCovariance.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_OBSAUXCOVARIANCE_H_
12 #define OOPS_INTERFACE_OBSAUXCOVARIANCE_H_
13 
14 #include <iostream>
15 #include <memory>
16 #include <string>
17 
18 #include <boost/noncopyable.hpp>
19 
20 #include "eckit/config/Configuration.h"
24 #include "oops/util/Logger.h"
25 #include "oops/util/ObjectCounter.h"
26 #include "oops/util/Printable.h"
27 #include "oops/util/Timer.h"
28 
29 namespace oops {
30 
31 // -----------------------------------------------------------------------------
32 /// \brief Auxiliary error covariance related to observations, templated on <OBS>
33 /// \details
34 /// This is currently only used for bias correction coefficient error covariances.
35 /// This class calls the <OBS> implementation of ObsAuxCovariance.
36 // -----------------------------------------------------------------------------
37 
38 template <typename OBS>
39 class ObsAuxCovariance : public util::Printable,
40  private boost::noncopyable,
41  private util::ObjectCounter<ObsAuxCovariance<OBS> > {
42  typedef typename OBS::ObsAuxCovariance ObsAuxCovariance_;
45 
46  public:
47  typedef typename ObsAuxCovariance_::Parameters_ Parameters_;
48 
49  static const std::string classname() {return "oops::ObsAuxCovariance";}
50 
51  /// Constructor for specified ObsSpace \p os and \p params
52  ObsAuxCovariance(const ObsSpace<OBS> & os, const Parameters_ & params);
53  /// Destructor (defined explicitly for timing and tracing)
55 
56  /// linearize operator
57  void linearize(const ObsAuxControl_ &, const eckit::Configuration &);
58  /// Sets the second parameter to the first multiplied by the covariance matrix.
59  void multiply(const ObsAuxIncrement_ &, ObsAuxIncrement_ &) const;
60  /// Sets the second parameter to the first multiplied by the inverse covariance matrix.
61  void inverseMultiply(const ObsAuxIncrement_ &, ObsAuxIncrement_ &) const;
62  /// randomize the values in the ObsAuxIncrement
63  void randomize(ObsAuxIncrement_ &) const;
64 
65  private:
66  void print(std::ostream &) const;
67  std::unique_ptr<ObsAuxCovariance_> cov_;
68 };
69 
70 // =============================================================================
71 
72 template<typename OBS>
74  const Parameters_ & params) : cov_()
75 {
76  Log::trace() << "ObsAuxCovariance<OBS>::ObsAuxCovariance starting" << std::endl;
77  util::Timer timer(classname(), "ObsAuxCovariance");
78  cov_.reset(new ObsAuxCovariance_(os.obsspace(), params));
79  Log::trace() << "ObsAuxCovariance<OBS>::ObsAuxCovariance done" << std::endl;
80 }
81 
82 // -----------------------------------------------------------------------------
83 
84 template<typename OBS>
86  Log::trace() << "ObsAuxCovariance<OBS>::~ObsAuxCovariance starting" << std::endl;
87  util::Timer timer(classname(), "~ObsAuxCovariance");
88  cov_.reset();
89  Log::trace() << "ObsAuxCovariance<OBS>::~ObsAuxCovariance done" << std::endl;
90 }
91 
92 // -----------------------------------------------------------------------------
93 
94 template<typename OBS>
96  const eckit::Configuration & innerConf) {
97  Log::trace() << "ObsAuxCovariance<OBS>::linearize starting" << std::endl;
98  util::Timer timer(classname(), "linearize");
99  cov_->linearize(xx.obsauxcontrol(), innerConf);
100  Log::trace() << "ObsAuxCovariance<OBS>::linearize done" << std::endl;
101 }
102 
103 // -----------------------------------------------------------------------------
104 
105 template<typename OBS>
107  Log::trace() << "ObsAuxCovariance<OBS>::multiply starting" << std::endl;
108  util::Timer timer(classname(), "multiply");
109  cov_->multiply(dx1.obsauxincrement(), dx2.obsauxincrement());
110  Log::trace() << "ObsAuxCovariance<OBS>::multiply done" << std::endl;
111 }
112 
113 // -----------------------------------------------------------------------------
114 
115 template<typename OBS>
117  ObsAuxIncrement_ & dx2) const {
118  Log::trace() << "ObsAuxCovariance<OBS>::inverseMultiply starting" << std::endl;
119  util::Timer timer(classname(), "inverseMultiply");
120  cov_->inverseMultiply(dx1.obsauxincrement(), dx2.obsauxincrement());
121  Log::trace() << "ObsAuxCovariance<OBS>::inverseMultiply done" << std::endl;
122 }
123 
124 // -----------------------------------------------------------------------------
125 
126 template<typename OBS>
128  Log::trace() << "ObsAuxCovariance<OBS>::randomize starting" << std::endl;
129  util::Timer timer(classname(), "randomize");
130  cov_->randomize(dx.obsauxincrement());
131  Log::trace() << "ObsAuxCovariance<OBS>::randomize done" << std::endl;
132 }
133 
134 // -----------------------------------------------------------------------------
135 
136 template<typename OBS>
137 void ObsAuxCovariance<OBS>::print(std::ostream & os) const {
138  Log::trace() << "ObsAuxCovariance<OBS>::print starting" << std::endl;
139  util::Timer timer(classname(), "print");
140  os << *cov_;
141  Log::trace() << "ObsAuxCovariance<OBS>::print done" << std::endl;
142 }
143 
144 // -----------------------------------------------------------------------------
145 
146 } // namespace oops
147 
148 #endif // OOPS_INTERFACE_OBSAUXCOVARIANCE_H_
Auxiliary state related to observations, templated on <OBS>
const ObsAuxControl_ & obsauxcontrol() const
const Accessor
Auxiliary error covariance related to observations, templated on <OBS>
static const std::string classname()
ObsAuxIncrement< OBS > ObsAuxIncrement_
void linearize(const ObsAuxControl_ &, const eckit::Configuration &)
linearize operator
void multiply(const ObsAuxIncrement_ &, ObsAuxIncrement_ &) const
Sets the second parameter to the first multiplied by the covariance matrix.
void print(std::ostream &) const
std::unique_ptr< ObsAuxCovariance_ > cov_
ObsAuxCovariance_::Parameters_ Parameters_
void randomize(ObsAuxIncrement_ &) const
randomize the values in the ObsAuxIncrement
ObsAuxCovariance(const ObsSpace< OBS > &os, const Parameters_ &params)
Constructor for specified ObsSpace os and params.
void inverseMultiply(const ObsAuxIncrement_ &, ObsAuxIncrement_ &) const
Sets the second parameter to the first multiplied by the inverse covariance matrix.
~ObsAuxCovariance()
Destructor (defined explicitly for timing and tracing)
Auxiliary increment related to observations, templated on <OBS>
const ObsAuxIncrement_ & obsauxincrement() const
const Accessor
ObsSpace_ & obsspace() const
Interfacing.
The namespace for the main oops code.