11 #ifndef OOPS_GENERIC_OBSERRORBASE_H_
12 #define OOPS_GENERIC_OBSERRORBASE_H_
19 #include <boost/noncopyable.hpp>
20 #include "eckit/config/Configuration.h"
24 #include "oops/util/AssociativeContainers.h"
25 #include "oops/util/Logger.h"
26 #include "oops/util/parameters/Parameter.h"
27 #include "oops/util/parameters/Parameters.h"
28 #include "oops/util/parameters/PolymorphicParameter.h"
29 #include "oops/util/Printable.h"
44 template<
typename OBS>
46 private boost::noncopyable {
63 virtual void save(
const std::string &name)
const = 0;
79 virtual void print(std::ostream &)
const = 0;
84 template <
typename OBS>
95 Parameter<std::string>
model{
"covariance model",
"diagonal",
this};
102 template <
typename OBS>
110 PolymorphicParameter<ObsErrorParametersBase, ObsErrorFactory<OBS>>
117 template <
typename OBS>
133 static std::unique_ptr<ObsErrorParametersBase>
createParameters(
const std::string &model);
152 static std::map < std::string, ObsErrorFactory<OBS> * > &
getMakers() {
153 static std::map < std::string, ObsErrorFactory<OBS> * > makers_;
162 template<
class OBS,
class T>
170 const auto &stronglyTypedParameters =
dynamic_cast<const Parameters_&
>(parameters);
171 return std::make_unique<T>(stronglyTypedParameters, obs);
175 return std::make_unique<Parameters_>();
184 template <
typename OBS>
186 if (getMakers().find(name) != getMakers().end()) {
187 throw std::runtime_error(name +
" already registered in obs error factory.");
189 getMakers()[name] =
this;
194 template <
typename OBS>
195 std::unique_ptr<ObsErrorBase<OBS>>
197 Log::trace() <<
"ObsErrorFactory<OBS>::create starting" << std::endl;
198 const std::string &
id = params.
model;
199 Log::trace() <<
"ObsError matrix type is: " <<
id << std::endl;
200 typename std::map<std::string, ObsErrorFactory<OBS>*>::iterator
201 jerr = getMakers().find(
id);
202 if (jerr == getMakers().end()) {
203 throw std::runtime_error(
id +
" does not exist in obs error factory.");
205 std::unique_ptr<ObsErrorBase<OBS>> ptr(jerr->second->make(params, obs));
206 Log::trace() <<
"ObsErrorFactory<OBS>::create done" << std::endl;
212 template <
typename OBS>
214 const std::string &name) {
215 Log::trace() <<
"ObsErrorFactory<OBS>::createParameters starting" << std::endl;
216 typename std::map<std::string, ObsErrorFactory<OBS>*>::iterator it = getMakers().find(name);
217 if (it == getMakers().end()) {
218 throw std::runtime_error(name +
" does not exist in obs error factory");
220 return it->second->makeParameters();
Base class for generic implementations of observation error covariance matrices.
virtual void update(const ObsVector_ &stddev)=0
Set the diagonal of the covariance matrix to stddev squared.
virtual void multiply(ObsVector_ &dy) const =0
Multiply a Departure dy by .
ObsVector< OBS > ObsVector_
virtual void print(std::ostream &) const =0
virtual double getRMSE() const =0
Get mean error for Jo table.
ObsSpace< OBS > ObsSpace_
virtual ObsVector_ obserrors() const =0
virtual ~ObsErrorBase()=default
virtual void randomize(ObsVector_ &dy) const =0
Generate random perturbation in dy.
virtual void save(const std::string &name) const =0
Save obs errors to the group name.
virtual void inverseMultiply(ObsVector_ &dy) const =0
Multiply a Departure dy by .
virtual ObsVector_ inverseVariance() const =0
Return the vector of inverse obs error variances.
A factory creating instances of concrete subclasses of ObsErrorBase.
static std::unique_ptr< ObsErrorParametersBase > createParameters(const std::string &model)
Create and return an instance of the subclass of ObsErrorParametersBase storing parameters of covaria...
virtual std::unique_ptr< ObsErrorBase_ > make(const ObsErrorParametersBase &, const ObsSpace_ &)=0
virtual std::unique_ptr< ObsErrorParametersBase > makeParameters() const =0
virtual ~ObsErrorFactory()=default
ObsErrorBase< OBS > ObsErrorBase_
static std::unique_ptr< ObsErrorBase_ > create(const ObsErrorParametersBase ¶ms, const ObsSpace_ &)
Create and return a new observation error covariance matrix model.
ObsSpace< OBS > ObsSpace_
static std::vector< std::string > getMakerNames()
Return the names of all models that can be created by one of the registered makers.
static std::map< std::string, ObsErrorFactory< OBS > * > & getMakers()
ObsErrorFactory(const std::string &model)
Register a maker able to create covariance matrix models of type model.
A subclass of ObsErrorFactory able to create instances of T (a concrete subclass of ObsErrorBase<OBS>...
ObsSpace< OBS > ObsSpace_
ObsErrorBase< OBS > ObsErrorBase_
T::Parameters_ Parameters_
std::unique_ptr< ObsErrorParametersBase > makeParameters() const override
std::unique_ptr< ObsErrorBase_ > make(const ObsErrorParametersBase ¶meters, const ObsSpace_ &obs) override
ObsErrorMaker(const std::string &name)
Configuration parameters of an implementation of an observation error covariance matrix model.
Parameter< std::string > model
Name of the covariance model.
Contains a polymorphic parameter holding an instance of a subclass of ObsErrorParametersBase.
PolymorphicParameter< ObsErrorParametersBase, ObsErrorFactory< OBS > > obsErrorParameters
ObsVector class used in oops; subclass of interface class interface::ObsVector.
The namespace for the main oops code.