8 #ifndef OOPS_INTERFACE_OBSERRORBASE_H_
9 #define OOPS_INTERFACE_OBSERRORBASE_H_
14 #include "eckit/system/ResourceUsage.h"
19 #include "oops/util/ObjectCounter.h"
20 #include "oops/util/Printable.h"
44 template <
typename OBS>
73 this->
update(dy.obsvector());
85 virtual void multiply(ObsVector_ &dy)
const = 0;
111 template <
class OBS,
class T>
124 const auto &stronglyTypedParameters =
dynamic_cast<const Parameters_&
>(parameters);
125 return std::make_unique<T>(stronglyTypedParameters, obsspace.
obsspace(), obsspace.
timeComm());
129 return std::make_unique<Parameters_>();
Base class for generic implementations of observation error covariance matrices.
A factory creating instances of concrete subclasses of ObsErrorBase.
Configuration parameters of an implementation of an observation error covariance matrix model.
ObsSpace_ & obsspace() const
Interfacing.
const eckit::mpi::Comm & timeComm() const
ObsVector class used in oops; subclass of interface class interface::ObsVector.
Base class for OBS-specific implementations of the ObsError interface.
void randomize(oops::ObsVector< OBS > &dy) const final
Generate random perturbation in dy.
virtual void multiply(ObsVector_ &dy) const =0
Multiply a Departure dy by .
virtual std::unique_ptr< ObsVector_ > getObsErrors() const =0
virtual void inverseMultiply(ObsVector_ &dy) const =0
Multiply a Departure dy by .
const eckit::mpi::Comm & timeComm_
void update(const oops::ObsVector< OBS > &dy) final
Set the diagonal of the covariance matrix to stddev squared.
ObsErrorBase(const eckit::mpi::Comm &timeComm)
void inverseMultiply(oops::ObsVector< OBS > &dy) const final
Multiply a Departure dy by .
virtual std::unique_ptr< ObsVector_ > getInverseVariance() const =0
Return the vector of inverse obs error variances.
virtual void randomize(ObsVector_ &dy) const =0
Generate a random perturbation in dy.
oops::ObsVector< OBS > inverseVariance() const final
Return the vector of inverse obs error variances.
virtual void update(const ObsVector_ &stddev)=0
Set the diagonal of the covariance matrix to stddev squared.
void multiply(oops::ObsVector< OBS > &dy) const final
Multiply a Departure dy by .
oops::ObsVector< OBS > obserrors() const final
OBS::ObsVector ObsVector_
A subclass of ObsErrorFactory able to create instances of T (a concrete subclass of interface::ObsErr...
ObsErrorMaker(const std::string &name)
oops::ObsErrorBase< OBS > ObsErrorBase_
std::unique_ptr< ObsErrorBase_ > make(const ObsErrorParametersBase ¶meters, const ObsSpace_ &obsspace) override
std::unique_ptr< ObsErrorParametersBase > makeParameters() const override
T::Parameters_ Parameters_
oops::ObsErrorFactory< OBS > ObsErrorFactory_
oops::ObsSpace< OBS > ObsSpace_
The namespace for the main oops code.