OOPS
interface/LocalizationBase.h
Go to the documentation of this file.
1 /*
2 * Copyright 2011 ECMWF
3 * Copyright 2020-2021 UCAR
4 *
5 * This software was developed at ECMWF for evaluation
6 * and may be used for academic and research purposes only.
7 * The software is provided as is without any warranty.
8 *
9 * This software can be used, copied and modified but not
10 * redistributed or sold. This notice must be reproduced
11 * on each copy made.
12 */
13 
14 #ifndef OOPS_INTERFACE_LOCALIZATIONBASE_H_
15 #define OOPS_INTERFACE_LOCALIZATIONBASE_H_
16 
17 #include <memory>
18 #include <string>
19 
20 #include "oops/base/Geometry.h"
21 #include "oops/base/Increment.h"
23 
24 namespace eckit {
25  class Configuration;
26 }
27 
28 namespace oops {
29 
30 namespace interface {
31 
32 // -----------------------------------------------------------------------------
33 /// Base class for MODEL-specific implementations of the Loclaization interface.
34 /// interface::LocalizationBase overrides oops::LocalizationBase methods to pass
35 /// MODEL-specific implementation of Increment to the MODEL-specific
36 /// implementation of Localization.
37 ///
38 /// Note: subclasses need to provide a constructor with the following signature:
39 ///
40 /// LocalizationBase(const MODEL::Geometry &, const eckit::Configuration &);
41 ///
42 template<typename MODEL>
44  typedef typename MODEL::Increment Increment_;
45  public:
46  static const std::string classname() {return "oops::Localization";}
47 
48  LocalizationBase() = default;
49  virtual ~LocalizationBase() = default;
50 
51  /// Overrides for oops::LocalizationBase classes, passing MODEL-specific classes to the
52  /// MODEL-specific implementations of Localization
53  void randomize(oops::Increment<MODEL> & dx) const final
54  { this->randomize(dx.increment()); }
55  void multiply(oops::Increment<MODEL> & dx) const final
56  { this->multiply(dx.increment()); }
57 
58  /// Randomize \p dx and apply 3D localization
59  virtual void randomize(Increment_ & dx) const = 0;
60  /// Apply 3D localization to \p dx
61  virtual void multiply(Increment_ & dx) const = 0;
62 };
63 
64 // -----------------------------------------------------------------------------
65 /// \brief A subclass of LocalizationFactory able to create instances of T (a concrete
66 /// subclass of interface::LocalizationBase<MODEL>). Passes MODEL::Geometry to the constructor of T.
67 template<class MODEL, class T>
70  std::unique_ptr<oops::LocalizationBase<MODEL>> make(const Geometry_ & geometry,
71  const eckit::Configuration & conf) override
72  { return std::make_unique<T>(geometry.geometry(), conf); }
73  public:
74  explicit LocalizationMaker(const std::string & name) : oops::LocalizationFactory<MODEL>(name) {}
75 };
76 
77 
78 // -----------------------------------------------------------------------------
79 
80 } // namespace interface
81 
82 } // namespace oops
83 
84 #endif // OOPS_INTERFACE_LOCALIZATIONBASE_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
Increment class used in oops.
Base class for generic implementations of model-space localization. Use this class as a base class fo...
const Geometry_ & geometry() const
void multiply(oops::Increment< MODEL > &dx) const final
Apply 3D localization to dx.
virtual void multiply(Increment_ &dx) const =0
Apply 3D localization to dx.
virtual void randomize(Increment_ &dx) const =0
Randomize dx and apply 3D localization.
virtual ~LocalizationBase()=default
void randomize(oops::Increment< MODEL > &dx) const final
A subclass of LocalizationFactory able to create instances of T (a concrete subclass of interface::Lo...
std::unique_ptr< oops::LocalizationBase< MODEL > > make(const Geometry_ &geometry, const eckit::Configuration &conf) override
Definition: FieldL95.h:22
The namespace for the main oops code.