OOPS
GomQG.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_GOMQG_H_
12 #define QG_MODEL_GOMQG_H_
13 
14 #include <ostream>
15 #include <string>
16 #include <vector>
17 
18 #include "oops/base/Variables.h"
19 
20 #include "oops/util/ObjectCounter.h"
21 #include "oops/util/Printable.h"
22 
23 #include "oops/qg/QgFortran.h"
24 
25 namespace oops {
26  class Variables;
27 }
28 
29 namespace qg {
30  class LocationsQG;
31 
32 /// GomQG class to handle local model values for QG model.
33 
34 class GomQG : public util::Printable,
35  private util::ObjectCounter<GomQG> {
36  public:
37  static const std::string classname() {return "qg::GomQG";}
38 
39  GomQG(const LocationsQG &, const oops::Variables &, const std::vector<size_t> &);
40  GomQG(const eckit::Configuration &, const ObsSpaceQG &,
41  const oops::Variables &);
42  explicit GomQG(const GomQG &);
43 
44  GomQG(): keyGom_(0) {}
45  explicit GomQG(int & fgom): keyGom_(fgom) {}
46 
47  ~GomQG();
48 
49  void zero();
50  void random();
51  double rms() const;
52  double normalizedrms(const GomQG &) const;
53  GomQG & operator=(const GomQG &);
54  GomQG & operator*=(const double &);
55  GomQG & operator+=(const GomQG &);
56  GomQG & operator-=(const GomQG &);
57  GomQG & operator*=(const GomQG &);
58  double dot_product_with(const GomQG &) const;
59  void read(const eckit::Configuration &);
60  void write(const eckit::Configuration &) const;
61 
62  const int & toFortran() const {return keyGom_;}
63 
64  private:
65  void print(std::ostream &) const;
68 };
69 
70 } // namespace qg
71 
72 #endif // QG_MODEL_GOMQG_H_
GomQG class to handle local model values for QG model.
Definition: GomQG.h:35
oops::Variables vars_
Definition: GomQG.h:67
double dot_product_with(const GomQG &) const
Definition: GomQG.cc:102
~GomQG()
Definition: GomQG.cc:52
void zero()
Definition: GomQG.cc:68
double normalizedrms(const GomQG &) const
Definition: GomQG.cc:62
void print(std::ostream &) const
Definition: GomQG.cc:116
void random()
Definition: GomQG.cc:72
static const std::string classname()
Definition: GomQG.h:37
GomQG(int &fgom)
Definition: GomQG.h:45
void write(const eckit::Configuration &) const
Definition: GomQG.cc:112
GomQG & operator*=(const double &)
Definition: GomQG.cc:82
GomQG & operator=(const GomQG &)
Definition: GomQG.cc:76
const int & toFortran() const
Definition: GomQG.h:62
double rms() const
Definition: GomQG.cc:56
GomQG()
Definition: GomQG.h:44
void read(const eckit::Configuration &)
Definition: GomQG.cc:108
F90gom keyGom_
Definition: GomQG.h:66
GomQG & operator-=(const GomQG &)
Definition: GomQG.cc:92
GomQG & operator+=(const GomQG &)
Definition: GomQG.cc:87
LocationsQG class to handle locations for QG model.
Definition: LocationsQG.h:36
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
The namespace for the main oops code.
The namespace for the qg model.
int F90gom
Definition: QgFortran.h:47