OOPS
oops/interface/ObsAuxControl.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_OBSAUXCONTROL_H_
12 #define OOPS_INTERFACE_OBSAUXCONTROL_H_
13 
14 #include <iostream>
15 #include <memory>
16 #include <string>
17 
19 #include "oops/util/Logger.h"
20 #include "oops/util/ObjectCounter.h"
21 #include "oops/util/Printable.h"
22 #include "oops/util/Timer.h"
23 
24 namespace oops {
25  class Variables;
26 
27 // -----------------------------------------------------------------------------
28 /// \brief Auxiliary state related to observations, templated on <OBS>
29 /// \details
30 /// This is currently only used for bias correction coefficients, but can be used for other cases.
31 /// This class calls the <OBS> implementation of ObsAuxControl.
32 // -----------------------------------------------------------------------------
33 
34 template <typename OBS>
35 class ObsAuxControl : public util::Printable,
36  private util::ObjectCounter<ObsAuxControl<OBS> > {
37  typedef typename OBS::ObsAuxControl ObsAuxControl_;
38 
39  public:
40  typedef typename ObsAuxControl_::Parameters_ Parameters_;
41 
42  static const std::string classname() {return "oops::ObsAuxControl";}
43 
44  /// Constructor for specified ObsSpace \p os and \p params
45  ObsAuxControl(const ObsSpace<OBS> & os, const Parameters_ & params);
46  /// Creates ObsAuxControl with the same structure as \p other.
47  /// Copies \p other if \p copy is true, otherwise creates zero ObsAuxControl
48  explicit ObsAuxControl(const ObsAuxControl &, const bool copy = true);
49  /// Destructor (defined explicitly for timing and tracing)
51 
52  /// const Accessor
53  const ObsAuxControl_ & obsauxcontrol() const {return *aux_;}
54  /// Accessor
56 
57  /// Read this ObsAuxControl from file
58  void read(const Parameters_ &);
59  /// Write this ObsAuxControl out to file
60  void write(const Parameters_ &) const;
61  /// Norm (used in tests)
62  double norm() const;
63 
64  /// Return required inputs variables from Model
65  const Variables & requiredVars() const;
66  /// Return required observations diagnostics
67  const Variables & requiredHdiagnostics() const;
68 
69  /// Assign operator from other ObsAuxControl \p rhs
70  ObsAuxControl & operator=(const ObsAuxControl & rhs);
71 
72  private:
73  void print(std::ostream &) const;
74  std::unique_ptr<ObsAuxControl_> aux_;
75 };
76 
77 // =============================================================================
78 
79 template<typename OBS>
81  const Parameters_ & params) : aux_()
82 {
83  Log::trace() << "ObsAuxControl<OBS>::ObsAuxControl starting" << std::endl;
84  util::Timer timer(classname(), "ObsAuxControl");
85  aux_.reset(new ObsAuxControl_(os.obsspace(), params));
86  Log::trace() << "ObsAuxControl<OBS>::ObsAuxControl done" << std::endl;
87 }
88 
89 // -----------------------------------------------------------------------------
90 
91 template<typename OBS>
92 ObsAuxControl<OBS>::ObsAuxControl(const ObsAuxControl & other, const bool copy) : aux_()
93 {
94  Log::trace() << "ObsAuxControl<OBS>::ObsAuxControl copy starting" << std::endl;
95  util::Timer timer(classname(), "ObsAuxControl");
96  aux_.reset(new ObsAuxControl_(*other.aux_, copy));
97  Log::trace() << "ObsAuxControl<OBS>::ObsAuxControl copy done" << std::endl;
98 }
99 
100 // -----------------------------------------------------------------------------
101 
102 template<typename OBS>
104  Log::trace() << "ObsAuxControl<OBS>::~ObsAuxControl starting" << std::endl;
105  util::Timer timer(classname(), "~ObsAuxControl");
106  aux_.reset();
107  Log::trace() << "ObsAuxControl<OBS>::~ObsAuxControl done" << std::endl;
108 }
109 
110 // -----------------------------------------------------------------------------
111 
112 template<typename OBS>
113 void ObsAuxControl<OBS>::read(const Parameters_ & params) {
114  Log::trace() << "ObsAuxControl<OBS>::read starting" << std::endl;
115  util::Timer timer(classname(), "read");
116  aux_->read(params);
117  Log::trace() << "ObsAuxControl<OBS>::read done" << std::endl;
118 }
119 
120 // -----------------------------------------------------------------------------
121 
122 template<typename OBS>
123 void ObsAuxControl<OBS>::write(const Parameters_ & params) const {
124  Log::trace() << "ObsAuxControl<OBS>::write starting" << std::endl;
125  util::Timer timer(classname(), "write");
126  aux_->write(params);
127  Log::trace() << "ObsAuxControl<OBS>::write done" << std::endl;
128 }
129 
130 // -----------------------------------------------------------------------------
131 
132 template<typename OBS>
133 double ObsAuxControl<OBS>::norm() const {
134  Log::trace() << "ObsAuxControl<OBS>::norm starting" << std::endl;
135  util::Timer timer(classname(), "norm");
136  double zz = aux_->norm();
137  Log::trace() << "ObsAuxControl<OBS>::norm done" << std::endl;
138  return zz;
139 }
140 
141 // -----------------------------------------------------------------------------
142 
143 template<typename OBS>
145  Log::trace() << "ObsAuxControl<OBS>::requiredVars starting" << std::endl;
146  util::Timer timer(classname(), "requiredVars");
147  Log::trace() << "ObsAuxControl<OBS>::requiredVars done" << std::endl;
148  return aux_->requiredVars();
149 }
150 
151 // -----------------------------------------------------------------------------
152 
153 template<typename OBS>
155  Log::trace() << "ObsAuxControl<OBS>::requiredHdiagnostics starting" << std::endl;
156  util::Timer timer(classname(), "requiredHdiagnostics");
157  Log::trace() << "ObsAuxControl<OBS>::requiredHdiagnostics done" << std::endl;
158  return aux_->requiredHdiagnostics();
159 }
160 
161 // -----------------------------------------------------------------------------
162 template<typename OBS>
164  Log::trace() << "ObsAuxControl<OBS>::operator= starting" << std::endl;
165  util::Timer timer(classname(), "operator=");
166  *aux_ = *rhs.aux_;
167  Log::trace() << "ObsAuxControl<OBS>::operator= done" << std::endl;
168  return *this;
169 }
170 
171 // -----------------------------------------------------------------------------
172 
173 template<typename OBS>
174 void ObsAuxControl<OBS>::print(std::ostream & os) const {
175  Log::trace() << "ObsAuxControl<OBS>::print starting" << std::endl;
176  util::Timer timer(classname(), "print");
177  os << *aux_;
178  Log::trace() << "ObsAuxControl<OBS>::print done" << std::endl;
179 }
180 
181 // -----------------------------------------------------------------------------
182 
183 } // namespace oops
184 
185 #endif // OOPS_INTERFACE_OBSAUXCONTROL_H_
Auxiliary state related to observations, templated on <OBS>
void read(const Parameters_ &)
Read this ObsAuxControl from file.
void write(const Parameters_ &) const
Write this ObsAuxControl out to file.
const Variables & requiredVars() const
Return required inputs variables from Model.
ObsAuxControl_ & obsauxcontrol()
Accessor.
ObsAuxControl_::Parameters_ Parameters_
~ObsAuxControl()
Destructor (defined explicitly for timing and tracing)
static const std::string classname()
const ObsAuxControl_ & obsauxcontrol() const
const Accessor
std::unique_ptr< ObsAuxControl_ > aux_
ObsAuxControl(const ObsSpace< OBS > &os, const Parameters_ &params)
Constructor for specified ObsSpace os and params.
double norm() const
Norm (used in tests)
void print(std::ostream &) const
const Variables & requiredHdiagnostics() const
Return required observations diagnostics.
ObsAuxControl & operator=(const ObsAuxControl &rhs)
Assign operator from other ObsAuxControl rhs.
ObsSpace_ & obsspace() const
Interfacing.
The namespace for the main oops code.