OOPS
oops/interface/ObsLocalization.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2021 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 OOPS_INTERFACE_OBSLOCALIZATION_H_
9 #define OOPS_INTERFACE_OBSLOCALIZATION_H_
10 
11 #include <memory>
12 #include <string>
13 
14 #include "eckit/config/LocalConfiguration.h"
17 #include "oops/base/ObsVector.h"
19 #include "oops/util/Logger.h"
20 
21 namespace oops {
22 
23 // -----------------------------------------------------------------------------
24 /// \brief Encapsulates the observation-space localization
25 /// Note: to see methods that need to be implemented in the ObsLocalization implementation,
26 /// see ObsLocalizationBase class
27 template <typename MODEL, typename OBS>
28 class ObsLocalization : public util::Printable,
29  private boost::noncopyable {
34 
35  public:
36  static const std::string classname() {return "oops::ObsLocalization";}
37 
38  ObsLocalization(const eckit::Configuration &, const ObsSpace_ &);
40 
41  /// compute obs-space localization: fill \p locfactor with observation-space
42  /// localization values between observations and \p point in model-space.
43  /// Set \p locfactor to missing value for observations that are not local.
44  void computeLocalization(const GeometryIterator_ & point,
45  ObsVector_ & locfactor) const override;
46 
47  private:
48  void print(std::ostream &) const override;
49 
50  std::unique_ptr<ObsLocBase_> obsloc_;
51 };
52 
53 // -----------------------------------------------------------------------------
54 
55 template <typename MODEL, typename OBS>
56 ObsLocalization<MODEL, OBS>::ObsLocalization(const eckit::Configuration & conf,
57  const ObsSpace_ & obspace)
58  : obsloc_()
59 {
60  Log::trace() << "ObsLocalization<MODEL, OBS>::ObsLocalization starting" << std::endl;
61  util::Timer timer(classname(), "ObsLocalization");
63  Log::trace() << "ObsLocalization<MODEL, OBS>::ObsLocalization done" << std::endl;
64 }
65 
66 // -----------------------------------------------------------------------------
67 
68 template <typename MODEL, typename OBS>
70  Log::trace() << "ObsLocalization<MODEL, OBS>::~ObsLocalization starting" << std::endl;
71  util::Timer timer(classname(), "~ObsLocalization");
72  obsloc_.reset();
73  Log::trace() << "ObsLocalization<MODEL, OBS>::~ObsLocalization done" << std::endl;
74 }
75 
76 // -----------------------------------------------------------------------------
77 
78 template <typename MODEL, typename OBS>
80  ObsVector_ & locfactor) const {
81  Log::trace() << "ObsLocalization<MODEL, OBS>:: computeLocalization starting" << std::endl;
82  util::Timer timer(classname(), "computeLocalization");
83  obsloc_->computeLocalization(p, locfactor);
84  Log::trace() << "ObsLocalization<MODEL, OBS>:: computeLocalization done" << std::endl;
85 }
86 
87 // -----------------------------------------------------------------------------
88 
89 template <typename MODEL, typename OBS>
90 void ObsLocalization<MODEL, OBS>::print(std::ostream & os) const {
91  os << *obsloc_;
92 }
93 
94 // -----------------------------------------------------------------------------
95 
96 } // namespace oops
97 
98 #endif // OOPS_INTERFACE_OBSLOCALIZATION_H_
ObsLocalization Factory.
Encapsulates the observation-space localization Note: to see methods that need to be implemented in t...
std::unique_ptr< ObsLocBase_ > obsloc_
ObsLocalizationBase< MODEL, OBS > ObsLocBase_
ObsLocalization(const eckit::Configuration &, const ObsSpace_ &)
void print(std::ostream &) const override
static const std::string classname()
GeometryIterator< MODEL > GeometryIterator_
void computeLocalization(const GeometryIterator_ &point, ObsVector_ &locfactor) const override
ObsVector class used in oops; subclass of interface class interface::ObsVector.
The namespace for the main oops code.