OOPS
ObsDataQG.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2019 UCAR
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  */
7 
8 #ifndef QG_MODEL_OBSDATAQG_H_
9 #define QG_MODEL_OBSDATAQG_H_
10 
11 #include <math.h>
12 #include <ostream>
13 #include <string>
14 #include <vector>
15 
16 #include "oops/base/Variables.h"
17 #include "oops/util/Logger.h"
18 #include "oops/util/ObjectCounter.h"
19 #include "oops/util/Printable.h"
20 
21 #include "oops/qg/ObsSpaceQG.h"
22 #include "oops/qg/ObsVecQG.h"
23 #include "oops/qg/QgFortran.h"
24 
25 namespace qg {
26 
27 // -----------------------------------------------------------------------------
28 /// Data in observation space
29 
30 template<typename DATATYPE>
31 class ObsDataQG : public util::Printable,
32  private util::ObjectCounter<ObsDataQG<DATATYPE> > {
33  public:
34  static const std::string classname() {return "qg::ObsDataQG";}
35 
36  ObsDataQG(const ObsSpaceQG &, const oops::Variables &, const std::string &);
37  ObsDataQG(const ObsDataQG &);
38  explicit ObsDataQG(const ObsVecQG &);
40 
41  ObsDataQG & operator= (const ObsDataQG &);
42 
43  /// set all values to zero
44  void zero();
45  /// set all values to one
46  void ones();
47  void mask(const ObsDataQG<int>);
48 
49 // I/O
50  void read(const std::string &);
51  void save(const std::string &) const;
52 
53  const int & toFortran() const {return data_.toFortran();}
54  const ObsVecQG & vect() const {return data_;}
55  private:
56  void print(std::ostream &) const;
57 
59 };
60 //-----------------------------------------------------------------------------
61 
62 template<typename DATATYPE>
64  const std::string & name): data_(os, name) {
65 }
66 // -----------------------------------------------------------------------------
67 template<typename DATATYPE>
68 ObsDataQG<DATATYPE>::ObsDataQG(const ObsDataQG & other): data_(other.data_) {
69 }
70 // -----------------------------------------------------------------------------
71 template<typename DATATYPE>
72 ObsDataQG<DATATYPE>::ObsDataQG(const ObsVecQG & other): data_(other) {
73 }
74 // -----------------------------------------------------------------------------
75 template<typename DATATYPE>
77  data_ = rhs.data_;
78  return *this;
79 }
80 // -----------------------------------------------------------------------------
81 template<typename DATATYPE>
83  data_.zero();
84 }
85 // -----------------------------------------------------------------------------
86 template<typename DATATYPE>
88  data_.ones();
89 }
90 // -----------------------------------------------------------------------------
91 template<typename DATATYPE>
93  qg_obsvec_mask_f90(data_.toFortran(), mask.toFortran());
94 }
95 // -----------------------------------------------------------------------------
96 template<typename DATATYPE>
97 void ObsDataQG<DATATYPE>::read(const std::string & name) {
98  data_.read(name);
99 }
100 // -----------------------------------------------------------------------------
101 template<typename DATATYPE>
102 void ObsDataQG<DATATYPE>::save(const std::string & name) const {
103  data_.save(name);
104 }
105 // -----------------------------------------------------------------------------
106 template<typename DATATYPE>
107 void ObsDataQG<DATATYPE>::print(std::ostream & os) const {
108  os << data_;
109 }
110 // -----------------------------------------------------------------------------
111 } // namespace qg
112 
113 #endif // QG_MODEL_OBSDATAQG_H_
Data in observation space.
Definition: ObsDataQG.h:32
void print(std::ostream &) const
Definition: ObsDataQG.h:107
static const std::string classname()
Definition: ObsDataQG.h:34
const int & toFortran() const
Definition: ObsDataQG.h:53
void ones()
set all values to one
Definition: ObsDataQG.h:87
void mask(const ObsDataQG< int >)
Definition: ObsDataQG.h:92
ObsVecQG data_
Definition: ObsDataQG.h:58
void zero()
set all values to zero
Definition: ObsDataQG.h:82
ObsDataQG(const ObsSpaceQG &, const oops::Variables &, const std::string &)
Definition: ObsDataQG.h:63
ObsDataQG & operator=(const ObsDataQG &)
Definition: ObsDataQG.h:76
void save(const std::string &) const
Definition: ObsDataQG.h:102
const ObsVecQG & vect() const
Definition: ObsDataQG.h:54
void read(const std::string &)
Definition: ObsDataQG.h:97
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
ObsVecQG class to handle vectors in observation space for QG model.
Definition: ObsVecQG.h:32
const int & toFortran() const
Definition: ObsVecQG.h:69
The namespace for the qg model.
void qg_obsvec_mask_f90(const F90ovec &obsvector_key, const F90ovec &mask_key)