OOPS
l95/src/lorenz95/ObsBiasCovariance.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_OBSBIASCOVARIANCE_H_
12 #define LORENZ95_OBSBIASCOVARIANCE_H_
13 
14 #include <ostream>
15 #include <string>
16 #include <boost/noncopyable.hpp>
17 
19 #include "oops/util/ObjectCounter.h"
20 #include "oops/util/Printable.h"
21 
22 namespace eckit {
23  class Configuration;
24 }
25 
26 namespace lorenz95 {
27  class ObsBias;
28  class ObsBiasCorrection;
29  class ObsTable;
30 
31 // -----------------------------------------------------------------------------
32 
33 class ObsBiasCovariance : public util::Printable,
34  private boost::noncopyable,
35  private util::ObjectCounter<ObsBiasCovariance> {
36  public:
38 
39  static const std::string classname() {return "lorenz95::ObsBiasCovariance";}
40 
41 /// Constructor, destructor
42  ObsBiasCovariance(const ObsTable &, const Parameters_ &);
44 
45 /// Linear algebra operators
46  void linearize(const ObsBias &, const eckit::Configuration &) {}
47  void multiply(const ObsBiasCorrection &, ObsBiasCorrection &) const;
49  void randomize(ObsBiasCorrection &) const;
50 
51  bool active() const {return active_;}
52 
53  private:
54  void print(std::ostream &) const;
55  double variance_;
56  bool active_;
57 };
58 
59 // -----------------------------------------------------------------------------
60 
61 } // namespace lorenz95
62 
63 #endif // LORENZ95_OBSBIASCOVARIANCE_H_
void multiply(const ObsBiasCorrection &, ObsBiasCorrection &) const
void randomize(ObsBiasCorrection &) const
void inverseMultiply(const ObsBiasCorrection &, ObsBiasCorrection &) const
void linearize(const ObsBias &, const eckit::Configuration &)
Linear algebra operators.
ObsBiasCovariance(const ObsTable &, const Parameters_ &)
Constructor, destructor.
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.