OOPS
ObsOperatorTLAD.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_OBSOPERATORTLAD_H_
12 #define QG_MODEL_OBSOPERATORTLAD_H_
13 
14 #include <memory>
15 #include <string>
16 
17 #include <boost/noncopyable.hpp>
18 
20 
21 #include "oops/util/Printable.h"
22 
23 // Forward declarations
24 
25 namespace oops {
26  class Variables;
27 }
28 
29 namespace qg {
30  class GomQG;
31  class ObsBias;
32  class ObsBiasIncrement;
33  class ObsOpBaseTLAD;
34  class ObsSpaceQG;
35  class ObsVecQG;
36 
37 // -----------------------------------------------------------------------------
38 
39 class ObsOperatorTLAD : public util::Printable,
40  private boost::noncopyable {
41  public:
43 
44  ObsOperatorTLAD(const ObsSpaceQG &, const Parameters_ &);
46 
47 /// Obs Operator
48  void setTrajectory(const GomQG &, const ObsBias &);
49  void simulateObsTL(const GomQG &, ObsVecQG &, const ObsBiasIncrement &) const;
50  void simulateObsAD(GomQG &, const ObsVecQG &, ObsBiasIncrement &) const;
51 
52 /// Other
53  const oops::Variables & requiredVars() const; // Required inputs requiredVars from Model
54 
55  private:
56  void print(std::ostream &) const;
57  std::unique_ptr<ObsOpBaseTLAD> oper_;
58 };
59 
60 // -----------------------------------------------------------------------------
61 
62 } // namespace qg
63 
64 #endif // QG_MODEL_OBSOPERATORTLAD_H_
GomQG class to handle local model values for QG model.
Definition: GomQG.h:35
Class to handle observation bias parameters.
std::unique_ptr< ObsOpBaseTLAD > oper_
const oops::Variables & requiredVars() const
Other.
ObsOperatorTLAD(const ObsSpaceQG &, const Parameters_ &)
void simulateObsTL(const GomQG &, ObsVecQG &, const ObsBiasIncrement &) const
void simulateObsAD(GomQG &, const ObsVecQG &, ObsBiasIncrement &) const
ObservationParameters Parameters_
void print(std::ostream &) const
void setTrajectory(const GomQG &, const ObsBias &)
Obs Operator.
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 main oops code.
The namespace for the qg model.