OOPS
ErrorCovarianceQG.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 QG_MODEL_ERRORCOVARIANCEQG_H_
12 #define QG_MODEL_ERRORCOVARIANCEQG_H_
13 
14 #include <ostream>
15 #include <string>
16 #include <boost/noncopyable.hpp>
17 
18 #include "eckit/config/Configuration.h"
19 
20 #include "oops/util/ObjectCounter.h"
21 #include "oops/util/Printable.h"
22 
23 #include "oops/qg/GeometryQG.h"
24 #include "oops/qg/QgFortran.h"
25 
26 // Forward declarations
27 namespace oops {
28  class Variables;
29 }
30 
31 namespace qg {
32  class IncrementQG;
33  class StateQG;
34 
35 // -----------------------------------------------------------------------------
36 /// Background error covariance matrix for QG model.
37 
38 class ErrorCovarianceQG : public util::Printable,
39  private boost::noncopyable,
40  private util::ObjectCounter<ErrorCovarianceQG> {
41  public:
42  static const std::string classname() {return "qg::ErrorCovarianceQG";}
43 
45  const eckit::Configuration &, const StateQG &, const StateQG &);
47 
48  void multiply(const IncrementQG &, IncrementQG &) const;
49  void inverseMultiply(const IncrementQG &, IncrementQG &) const;
50  void randomize(IncrementQG &) const;
51 
52  private:
53  void print(std::ostream &) const;
55 };
56 // -----------------------------------------------------------------------------
57 
58 } // namespace qg
59 #endif // QG_MODEL_ERRORCOVARIANCEQG_H_
Background error covariance matrix for QG model.
void multiply(const IncrementQG &, IncrementQG &) const
static const std::string classname()
void print(std::ostream &) const
void randomize(IncrementQG &) const
ErrorCovarianceQG(const GeometryQG &, const oops::Variables &, const eckit::Configuration &, const StateQG &, const StateQG &)
F90error_covariance keyConfig_
void inverseMultiply(const IncrementQG &, IncrementQG &) const
GeometryQG handles geometry for QG model.
Definition: GeometryQG.h:58
Increment Class: Difference between two states.
Definition: IncrementQG.h:64
QG model state.
Definition: StateQG.h:42
The namespace for the main oops code.
The namespace for the qg model.
int F90error_covariance
Definition: QgFortran.h:51