OOPS
ObsOpBaseQG.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2018 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_OBSOPBASEQG_H_
9 #define QG_MODEL_OBSOPBASEQG_H_
10 
11 #include <map>
12 #include <memory>
13 #include <string>
14 
15 #include <boost/noncopyable.hpp>
16 
17 #include "eckit/config/Configuration.h"
18 
19 #include "oops/base/Variables.h"
20 #include "oops/util/abor1_cpp.h"
21 #include "oops/util/Printable.h"
22 
23 #include "oops/qg/ObsSpaceQG.h"
24 
25 namespace qg {
26 class GomQG;
27 class LocationsQG;
28 class ObsBias;
29 class ObsVecQG;
30 
31 // -----------------------------------------------------------------------------
32 /// Base class for observation operators
33 
34 class ObsOpBaseQG : public util::Printable,
35  private boost::noncopyable {
36  public:
37  ObsOpBaseQG() = default;
38 
39 /// Obs Operator
40  virtual void simulateObs(const GomQG &, ObsVecQG &, const ObsBias &) const = 0;
41 
42 /// Other
43  virtual const oops::Variables & requiredVars() const = 0; // Required from Model
44  virtual std::unique_ptr<LocationsQG> locations() const = 0;
45 
46  private:
47  virtual void print(std::ostream &) const = 0;
48 };
49 
50 // -----------------------------------------------------------------------------
51 
52 /// Obs Operator Factory
53 class ObsOpFactory {
54  public:
55  static ObsOpBaseQG * create(const ObsSpaceQG &, const eckit::Configuration &);
56  virtual ~ObsOpFactory() = default;
57  protected:
58  explicit ObsOpFactory(const std::string &);
59  private:
60  virtual ObsOpBaseQG * make(const ObsSpaceQG &, const eckit::Configuration &) = 0;
61  static std::map < std::string, ObsOpFactory * > & getMakers() {
62  static std::map < std::string, ObsOpFactory * > makers_;
63  return makers_;
64  }
65 };
66 
67 // -----------------------------------------------------------------------------
68 
69 template<class T>
70 class ObsOpMaker : public ObsOpFactory {
71  virtual ObsOpBaseQG * make(const ObsSpaceQG & odb, const eckit::Configuration & conf)
72  { return new T(odb, conf); }
73  public:
74  explicit ObsOpMaker(const std::string & name) : ObsOpFactory(name) {}
75 };
76 
77 // -----------------------------------------------------------------------------
78 
79 } // namespace qg
80 
81 #endif // QG_MODEL_OBSOPBASEQG_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
virtual void simulateObs(const GomQG &, ObsVecQG &, const ObsBias &) const =0
Obs Operator.
virtual const oops::Variables & requiredVars() const =0
Other.
virtual std::unique_ptr< LocationsQG > locations() const =0
virtual void print(std::ostream &) const =0
ObsOpBaseQG()=default
Obs Operator Factory.
Definition: ObsOpBaseQG.h:53
ObsOpFactory(const std::string &)
Definition: ObsOpBaseQG.cc:18
static ObsOpBaseQG * create(const ObsSpaceQG &, const eckit::Configuration &)
Definition: ObsOpBaseQG.cc:28
static std::map< std::string, ObsOpFactory * > & getMakers()
Definition: ObsOpBaseQG.h:61
virtual ObsOpBaseQG * make(const ObsSpaceQG &, const eckit::Configuration &)=0
virtual ~ObsOpFactory()=default
virtual ObsOpBaseQG * make(const ObsSpaceQG &odb, const eckit::Configuration &conf)
Definition: ObsOpBaseQG.h:71
ObsOpMaker(const std::string &name)
Definition: ObsOpBaseQG.h:74
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
ObsVecQG class to handle vectors in observation space for QG model.
Definition: ObsVecQG.h:32
The namespace for the qg model.