Loading [MathJax]/extensions/tex2jax.js
OOPS
All Classes Namespaces Files Functions Variables Typedefs Macros Pages
ObsLocalizations.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 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_BASE_OBSLOCALIZATIONS_H_
9 #define OOPS_BASE_OBSLOCALIZATIONS_H_
10 
11 #include <memory>
12 #include <string>
13 #include <vector>
14 
15 #include <boost/noncopyable.hpp>
16 
17 #include "oops/base/Departures.h"
19 #include "oops/base/ObsSpaces.h"
20 #include "oops/util/Logger.h"
21 #include "oops/util/Printable.h"
22 
23 namespace oops {
24 
25 // -----------------------------------------------------------------------------
26 /// \brief Container for ObsLocalizations for all observation types that are used in DA
27 template <typename MODEL, typename OBS>
28 class ObsLocalizations : public util::Printable,
29  private boost::noncopyable {
34 
35  public:
36  static const std::string classname() {return "oops::ObsLocalizations";}
37 
38  ObsLocalizations(const eckit::Configuration &, const ObsSpaces_ &);
39 
40  void computeLocalization(const GeometryIterator_ & point,
41  Observations_ & obsvectors) const;
42 
43  private:
44  void print(std::ostream &) const;
45  std::vector<std::unique_ptr<ObsLocalization_> > local_;
46 };
47 
48 // -----------------------------------------------------------------------------
49 
50 template <typename MODEL, typename OBS>
51 ObsLocalizations<MODEL, OBS>::ObsLocalizations(const eckit::Configuration & config,
52  const ObsSpaces_ & obspaces) {
53  std::vector<eckit::LocalConfiguration> obsconf = config.getSubConfigurations();
54  for (size_t jj = 0; jj < obsconf.size(); ++jj) {
55  eckit::LocalConfiguration conf(obsconf[jj], "obs localization");
56  local_.emplace_back(ObsLocalizationFactory<MODEL, OBS>::create(conf, obspaces[jj]));
57  }
58 }
59 
60 // -----------------------------------------------------------------------------
61 
62 template <typename MODEL, typename OBS>
64  Observations_ & locfactor) const {
65  for (size_t jj = 0; jj < local_.size(); ++jj) {
66  if (local_[jj]) local_[jj]->computeLocalization(point, locfactor[jj]);
67  }
68 }
69 
70 // -----------------------------------------------------------------------------
71 
72 template<typename MODEL, typename OBS>
73 void ObsLocalizations<MODEL, OBS>::print(std::ostream & os) const {
74  for (size_t jj = 0; jj < local_.size(); ++jj) {
75  if (local_[jj]) os << *local_[jj];
76  }
77 }
78 
79 // -----------------------------------------------------------------------------
80 
81 } // namespace oops
82 
83 #endif // OOPS_BASE_OBSLOCALIZATIONS_H_
Difference between two observation vectors.
Definition: Departures.h:44
ObsLocalization Factory.
Container for ObsLocalizations for all observation types that are used in DA.
ObsLocalizationBase< MODEL, OBS > ObsLocalization_
Departures< OBS > Observations_
GeometryIterator< MODEL > GeometryIterator_
void print(std::ostream &) const
ObsLocalizations(const eckit::Configuration &, const ObsSpaces_ &)
std::vector< std::unique_ptr< ObsLocalization_ > > local_
void computeLocalization(const GeometryIterator_ &point, Observations_ &obsvectors) const
ObsSpaces< OBS > ObsSpaces_
static const std::string classname()
The namespace for the main oops code.