OOPS
ObsBiasCorrection.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_OBSBIASCORRECTION_H_
12 #define LORENZ95_OBSBIASCORRECTION_H_
13 
14 #include <cmath>
15 #include <iostream>
16 #include <vector>
17 
19 
20 #include "oops/util/Printable.h"
21 #include "oops/util/Serializable.h"
22 
23 namespace eckit {
24  class Configuration;
25 }
26 
27 namespace lorenz95 {
28  class ObsBias;
29  class ObsTable;
30 
31 // -----------------------------------------------------------------------------
32 
33 class ObsBiasCorrection : public util::Printable,
34  public util::Serializable {
35  public:
37 
38 /// Constructor, destructor
40  ObsBiasCorrection(const ObsTable &, const Parameters_ &);
41  ObsBiasCorrection(const ObsBiasCorrection &, const bool copy = true);
43 
44 /// Linear algebra operators
45  void diff(const ObsBias &, const ObsBias &);
46  void zero();
50  ObsBiasCorrection & operator*=(const double);
51  void axpy(const double, const ObsBiasCorrection &);
52  double dot_product_with(const ObsBiasCorrection &) const;
53 
54 /// I/O and diagnostics
55  void read(const eckit::Configuration &) {}
56  void write(const eckit::Configuration &) const {}
57  double norm() const {return std::abs(bias_);}
58 
59  double & value() {return bias_;}
60  const double & value() const {return bias_;}
61 
62 /// Serialize and deserialize
63  size_t serialSize() const override;
64  void serialize(std::vector<double> &) const override;
65  void deserialize(const std::vector<double> &, size_t &) override;
66 
67  private:
68  void print(std::ostream &) const override;
69  double bias_;
70  bool active_;
71 };
72 
73 // -----------------------------------------------------------------------------
74 
75 } // namespace lorenz95
76 
77 #endif // LORENZ95_OBSBIASCORRECTION_H_
void axpy(const double, const ObsBiasCorrection &)
void print(std::ostream &) const override
void serialize(std::vector< double > &) const override
ObsBiasCorrection()
Constructor, destructor.
ObsBiasCorrection & operator*=(const double)
void deserialize(const std::vector< double > &, size_t &) override
ObsBiasCorrection & operator=(const ObsBiasCorrection &)
void read(const eckit::Configuration &)
I/O and diagnostics.
void diff(const ObsBias &, const ObsBias &)
Linear algebra operators.
void write(const eckit::Configuration &) const
double dot_product_with(const ObsBiasCorrection &) const
ObsBiasCorrection & operator-=(const ObsBiasCorrection &)
const double & value() const
ObsBiasCorrection & operator+=(const ObsBiasCorrection &)
size_t serialSize() const override
Serialize and deserialize.
Class to handle observation bias parameters.
A Simple Observation Data Handler.
Definition: ObsTable.h:67
Definition: FieldL95.h:22
The namespace for the L95 model.