OOPS
ObsWindQG.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_OBSWINDQG_H_
12 #define QG_MODEL_OBSWINDQG_H_
13 
14 #include <memory>
15 #include <ostream>
16 #include <string>
17 
18 #include "oops/base/Variables.h"
19 #include "oops/util/ObjectCounter.h"
20 
21 #include "oops/qg/ObsOpBaseQG.h"
22 #include "oops/qg/ObsSpaceQG.h"
23 #include "oops/qg/QgTraits.h"
24 
25 // Forward declarations
26 namespace eckit {
27  class Configuration;
28 }
29 
30 namespace qg {
31  class GomQG;
32  class LocationsQG;
33  class ObsBias;
34  class ObsVecQG;
35 
36 // -----------------------------------------------------------------------------
37 /// Wind observation for QG model.
38 
39 class ObsWindQG : public ObsOpBaseQG,
40  private util::ObjectCounter<ObsWindQG> {
41  public:
42  static const std::string classname() {return "qg::ObsWindQG";}
43 
44  ObsWindQG(const ObsSpaceQG &, const eckit::Configuration &);
45 
46 // Obs Operators
47  void simulateObs(const GomQG &, ObsVecQG &, const ObsBias &) const override;
48 
49 // Other
50  const oops::Variables & requiredVars() const override {return varin_;}
51  std::unique_ptr<LocationsQG> locations() const override;
52 
53  private:
54  void print(std::ostream &) const override;
55  const ObsSpaceQG & obsdb_;
57 };
58 // -----------------------------------------------------------------------------
59 
60 } // namespace qg
61 #endif // QG_MODEL_OBSWINDQG_H_
GomQG class to handle local model values for QG model.
Definition: GomQG.h:35
Class to handle observation bias parameters.
Base class for observation operators.
Definition: ObsOpBaseQG.h:35
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
ObsVecQG class to handle vectors in observation space for QG model.
Definition: ObsVecQG.h:32
Wind observation for QG model.
Definition: ObsWindQG.h:40
ObsWindQG(const ObsSpaceQG &, const eckit::Configuration &)
Definition: ObsWindQG.cc:30
static const std::string classname()
Definition: ObsWindQG.h:42
std::unique_ptr< LocationsQG > locations() const override
Definition: ObsWindQG.cc:45
void simulateObs(const GomQG &, ObsVecQG &, const ObsBias &) const override
Obs Operator.
Definition: ObsWindQG.cc:38
const oops::Variables varin_
Definition: ObsWindQG.h:56
void print(std::ostream &) const override
Definition: ObsWindQG.cc:51
const oops::Variables & requiredVars() const override
Other.
Definition: ObsWindQG.h:50
const ObsSpaceQG & obsdb_
Definition: ObsWindQG.h:55
Definition: FieldL95.h:22
The namespace for the qg model.