8 #ifndef OOPS_BASE_OBSLOCALIZATIONBASE_H_
9 #define OOPS_BASE_OBSLOCALIZATIONBASE_H_
14 #include <boost/noncopyable.hpp>
16 #include "eckit/config/Configuration.h"
20 #include "oops/util/Printable.h"
27 template<
typename MODEL,
typename OBS>
29 private boost::noncopyable {
57 template <
typename MODEL,
typename OBS>
61 static std::unique_ptr<ObsLocalizationBase<MODEL, OBS>>
create(
const eckit::Configuration &,
68 static std::map < std::string, ObsLocalizationFactory<MODEL, OBS> * > &
getMakers() {
69 static std::map < std::string, ObsLocalizationFactory<MODEL, OBS> * > makers_;
76 template<
class MODEL,
class OBS,
class T>
81 {
return new T(conf, obspace.
obsspace()); }
89 template <
typename MODEL,
typename OBS>
91 if (getMakers().find(name) != getMakers().end()) {
92 throw std::runtime_error(name +
" already registered in obs localization factory.");
94 getMakers()[name] =
this;
99 template <
typename MODEL,
typename OBS>
101 const eckit::Configuration & conf,
const ObsSpace_ & obspace) {
102 Log::trace() <<
"ObsLocalizationBase<MODEL, OBS>::create starting" << std::endl;
103 const std::string
id = conf.getString(
"localization method");
104 typename std::map<std::string, ObsLocalizationFactory<MODEL, OBS>*>::iterator
105 jloc = getMakers().find(
id);
106 if (jloc == getMakers().end()) {
107 throw std::runtime_error(
id +
" does not exist in obs localization factory.");
109 std::unique_ptr<ObsLocalizationBase<MODEL, OBS>> ptr(jloc->second->make(conf, obspace));
110 Log::trace() <<
"ObsLocalizationBase<MODEL, OBS>::create done" << std::endl;
const GeometryIterator_ & geometryiter() const
Interfacing.
MODEL::GeometryIterator GeometryIterator_
void computeLocalization(const GeometryIterator< MODEL > &point, ObsVector< OBS > &locfactor) const
virtual ~ObsLocalizationBase()=default
OBS::ObsVector ObsVector_
virtual void computeLocalization(const GeometryIterator_ &point, ObsVector_ &locfactor) const =0
ObsLocalizationBase()=default
virtual ObsLocalizationBase< MODEL, OBS > * make(const eckit::Configuration &, const ObsSpace_ &)=0
ObsSpace< OBS > ObsSpace_
ObsLocalizationFactory(const std::string &)
static std::unique_ptr< ObsLocalizationBase< MODEL, OBS > > create(const eckit::Configuration &, const ObsSpace_ &)
static std::map< std::string, ObsLocalizationFactory< MODEL, OBS > * > & getMakers()
ObsSpace< OBS > ObsSpace_
ObsLocalizationMaker(const std::string &name)
virtual ObsLocalizationBase< MODEL, OBS > * make(const eckit::Configuration &conf, const ObsSpace_ &obspace)
ObsSpace_ & obsspace() const
Interfacing.
ObsVector class used in oops; subclass of interface class interface::ObsVector.
ObsVector_ & obsvector()
Accessor.
The namespace for the main oops code.