OOPS
ObsOperatorQG.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_OBSOPERATORQG_H_
12 #define QG_MODEL_OBSOPERATORQG_H_
13 
14 #include <memory>
15 #include <string>
16 
17 #include <boost/noncopyable.hpp>
18 
20 
21 #include "oops/base/Variables.h"
22 #include "oops/util/Printable.h"
23 
24 // Forward declarations
25 namespace qg {
26  class GomQG;
27  class LocationsQG;
28  class ObsBias;
29  class ObsDiagsQG;
30  class ObsOpBaseQG;
31  class ObsSpaceQG;
32  class ObsVecQG;
33 
34 // -----------------------------------------------------------------------------
35 
36 class ObsOperatorQG : public util::Printable,
37  private boost::noncopyable {
38  public:
40 
41  ObsOperatorQG(const ObsSpaceQG &, const Parameters_ &);
43 
44 /// Obs Operator
45  void simulateObs(const GomQG &, ObsVecQG &, const ObsBias &, ObsVecQG &, ObsDiagsQG &) const;
46 
47 /// Other
48  const oops::Variables & requiredVars() const; // Required input requiredVars from Model
49  std::unique_ptr<LocationsQG> locations() const;
50 
51  private:
52  void print(std::ostream &) const;
53  std::unique_ptr<ObsOpBaseQG> oper_;
54 };
55 
56 // -----------------------------------------------------------------------------
57 
58 } // namespace qg
59 
60 #endif // QG_MODEL_OBSOPERATORQG_H_
GomQG class to handle local model values for QG model.
Definition: GomQG.h:35
Class to handle observation bias parameters.
std::unique_ptr< ObsOpBaseQG > oper_
Definition: ObsOperatorQG.h:53
ObsOperatorQG(const ObsSpaceQG &, const Parameters_ &)
void simulateObs(const GomQG &, ObsVecQG &, const ObsBias &, ObsVecQG &, ObsDiagsQG &) const
Obs Operator.
void print(std::ostream &) const
const oops::Variables & requiredVars() const
Other.
ObservationParameters Parameters_
Definition: ObsOperatorQG.h:39
std::unique_ptr< LocationsQG > locations() const
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
ObsVecQG class to handle vectors in observation space for QG model.
Definition: ObsVecQG.h:32
Parameters controlling the observation operator for the QG model.
The namespace for the qg model.