OOPS
l95/src/lorenz95/ObsBias.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 LORENZ95_OBSBIAS_H_
12 #define LORENZ95_OBSBIAS_H_
13 
14 #include <cmath>
15 #include <string>
16 #include <boost/noncopyable.hpp>
17 
19 
20 #include "oops/base/Variables.h"
21 #include "oops/util/ObjectCounter.h"
22 #include "oops/util/Printable.h"
23 
24 namespace lorenz95 {
25  class ObsBiasCorrection;
26  class ObsTable;
27 
28 /// Class to handle observation bias parameters.
29 
30 // -----------------------------------------------------------------------------
31 
32 class ObsBias : public util::Printable,
33  private boost::noncopyable,
34  private util::ObjectCounter<ObsBias> {
35  public:
37 
38  static const std::string classname() {return "lorenz95::ObsBias";}
39 
40  ObsBias(const ObsTable &, const Parameters_ &);
41  ObsBias(const ObsBias &, const bool);
42  ~ObsBias() {}
43 
45  ObsBias & operator=(const ObsBias &);
46 
47  const double & value() const {return bias_;}
48  double & value() {return bias_;}
49 
50 /// I/O and diagnostics
51  void read(const Parameters_ &) {}
52  void write(const Parameters_ &) const {}
53  double norm() const {return std::abs(bias_);}
54 
55 /// Other
56  const oops::Variables & requiredVars() const {return geovars_;}
57  const oops::Variables & requiredHdiagnostics() const {return hdiags_;}
58 
59  private:
60  void print(std::ostream &) const;
61  double bias_;
62  bool active_;
65 };
66 
67 // -----------------------------------------------------------------------------
68 
69 } // namespace lorenz95
70 
71 #endif // LORENZ95_OBSBIAS_H_
Class to handle observation bias parameters.
void write(const Parameters_ &) const
static const std::string classname()
const oops::Variables & requiredVars() const
Other.
const oops::Variables hdiags_
const oops::Variables & requiredHdiagnostics() const
ObsBias & operator+=(const ObsBiasCorrection &)
const oops::Variables geovars_
ObsBiasParameters Parameters_
void read(const Parameters_ &)
I/O and diagnostics.
ObsBias(const ObsTable &, const Parameters_ &)
ObsBias & operator=(const ObsBias &)
void print(std::ostream &) const
const double & value() const
A Simple Observation Data Handler.
Definition: ObsTable.h:67
The namespace for the L95 model.