OOPS
GomL95.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_GOML95_H_
12 #define LORENZ95_GOML95_H_
13 
14 #include <ostream>
15 #include <string>
16 #include <vector>
17 
18 #include "eckit/config/Configuration.h"
19 #include "oops/util/ObjectCounter.h"
20 #include "oops/util/Printable.h"
21 
22 namespace oops {
23  class Variables;
24 }
25 
26 namespace lorenz95 {
27  class LocsL95;
28  class ObsTable;
29 
30 /// GomL95 class to handle locations for L95 model.
31 
32 class GomL95 : public util::Printable,
33  private util::ObjectCounter<GomL95> {
34  public:
35  static const std::string classname() {return "lorenz95::GomL95";}
36 
37  GomL95(const LocsL95 &, const oops::Variables &, const std::vector<size_t> &);
38  GomL95(const eckit::Configuration &, const ObsTable &,
39  const oops::Variables &);
40 
41  void zero();
42  void random();
43  double rms() const;
44  double normalizedrms(const GomL95 &) const;
45  GomL95 & operator*=(const double &);
46  GomL95 & operator+=(const GomL95 &);
47  GomL95 & operator-=(const GomL95 &);
48  GomL95 & operator*=(const GomL95 &);
49  double dot_product_with(const GomL95 &) const;
50  void read(const eckit::Configuration &);
51  void write(const eckit::Configuration &) const;
52  void print(std::ostream &) const;
53 
54  size_t size() const {return size_;}
55  const double & operator[](const int ii) const {return locval_[ii];}
56  double & operator[](const int ii) {return locval_[ii];}
57 
58  private:
59  size_t size_;
60  std::vector<double> locval_;
61 };
62 
63 } // namespace lorenz95
64 
65 #endif // LORENZ95_GOML95_H_
GomL95 class to handle locations for L95 model.
Definition: GomL95.h:33
void write(const eckit::Configuration &) const
Definition: GomL95.cc:118
size_t size() const
Definition: GomL95.h:54
void print(std::ostream &) const
Definition: GomL95.cc:134
void zero()
Definition: GomL95.cc:71
std::vector< double > locval_
Definition: GomL95.h:60
double & operator[](const int ii)
Definition: GomL95.h:56
double rms() const
Definition: GomL95.cc:75
size_t size_
Definition: GomL95.h:59
GomL95 & operator+=(const GomL95 &)
Definition: GomL95.cc:53
void random()
Definition: GomL95.cc:87
GomL95 & operator*=(const double &)
Definition: GomL95.cc:48
double dot_product_with(const GomL95 &) const
Definition: GomL95.cc:92
static const std::string classname()
Definition: GomL95.h:35
const double & operator[](const int ii) const
Definition: GomL95.h:55
GomL95 & operator-=(const GomL95 &)
Definition: GomL95.cc:59
GomL95(const LocsL95 &, const oops::Variables &, const std::vector< size_t > &)
Definition: GomL95.cc:33
void read(const eckit::Configuration &)
Definition: GomL95.cc:98
double normalizedrms(const GomL95 &) const
Definition: GomL95.cc:81
LocsL95 class to handle locations for L95 model.
Definition: LocsL95.h:32
A Simple Observation Data Handler.
Definition: ObsTable.h:67
The namespace for the L95 model.
The namespace for the main oops code.