OOPS
ObsStreamQG.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_OBSSTREAMQG_H_
12 #define QG_MODEL_OBSSTREAMQG_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 ObsBias;
33  class ObsVecQG;
34 
35 // -----------------------------------------------------------------------------
36 /// Streamfunction observation for QG model.
37 
38 class ObsStreamQG : public ObsOpBaseQG,
39  private util::ObjectCounter<ObsStreamQG> {
40  public:
41  static const std::string classname() {return "qg::ObsStreamQG";}
42 
43  ObsStreamQG(const ObsSpaceQG &, const eckit::Configuration &);
44 
45 // Obs Operator
46  void simulateObs(const GomQG &, ObsVecQG &, const ObsBias &) const override;
47 
48 // Other
49  const oops::Variables & requiredVars() const override {return varin_;}
50  std::unique_ptr<LocationsQG> locations() const override;
51 
52  private:
53  void print(std::ostream &) const override;
54  const ObsSpaceQG & obsdb_;
56 };
57 // -----------------------------------------------------------------------------
58 
59 } // namespace qg
60 #endif // QG_MODEL_OBSSTREAMQG_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
Streamfunction observation for QG model.
Definition: ObsStreamQG.h:39
ObsStreamQG(const ObsSpaceQG &, const eckit::Configuration &)
Definition: ObsStreamQG.cc:29
static const std::string classname()
Definition: ObsStreamQG.h:41
void print(std::ostream &) const override
Definition: ObsStreamQG.cc:50
const ObsSpaceQG & obsdb_
Definition: ObsStreamQG.h:54
const oops::Variables & requiredVars() const override
Other.
Definition: ObsStreamQG.h:49
void simulateObs(const GomQG &, ObsVecQG &, const ObsBias &) const override
Obs Operator.
Definition: ObsStreamQG.cc:37
std::unique_ptr< LocationsQG > locations() const override
Definition: ObsStreamQG.cc:44
const oops::Variables varin_
Definition: ObsStreamQG.h:55
ObsVecQG class to handle vectors in observation space for QG model.
Definition: ObsVecQG.h:32
Definition: FieldL95.h:22
The namespace for the qg model.