OOPS
oops::ObsErrorBase< OBS > Class Template Referenceabstract

Base class for generic implementations of observation error covariance matrices. More...

#include <ObsErrorBase.h>

Inheritance diagram for oops::ObsErrorBase< OBS >:
Collaboration diagram for oops::ObsErrorBase< OBS >:

Public Member Functions

 ObsErrorBase ()=default
 
virtual ~ObsErrorBase ()=default
 
virtual void multiply (ObsVector_ &dy) const =0
 Multiply a Departure dy by \(R\). More...
 
virtual void inverseMultiply (ObsVector_ &dy) const =0
 Multiply a Departure dy by \(R^{-1}\). More...
 
virtual void randomize (ObsVector_ &dy) const =0
 Generate random perturbation in dy. More...
 
virtual void save (const std::string &name) const =0
 Save obs errors to the group name. More...
 
virtual ObsVector_ obserrors () const =0
 
virtual void update (const ObsVector_ &stddev)=0
 Set the diagonal of the covariance matrix to stddev squared. More...
 
virtual ObsVector_ inverseVariance () const =0
 Return the vector of inverse obs error variances. More...
 
virtual double getRMSE () const =0
 Get mean error for Jo table. More...
 

Private Types

typedef ObsVector< OBS > ObsVector_
 
typedef ObsSpace< OBS > ObsSpace_
 

Private Member Functions

virtual void print (std::ostream &) const =0
 

Detailed Description

template<typename OBS>
class oops::ObsErrorBase< OBS >

Base class for generic implementations of observation error covariance matrices.

Use this class as a base class for generic implementations, and interface::ObsErrorBase as a base class for OBS-specific implementations.

Note: each generic implementation should typedef Parameters_ to the name of a subclass of ObsErrorParametersBase holding its configuration settings and provide a constructor with the following signature:

ObsErrorBase(const Parameters_ &, ObsSpace<OBS> &); 

Definition at line 45 of file generic/ObsErrorBase.h.

Member Typedef Documentation

◆ ObsSpace_

template<typename OBS >
typedef ObsSpace<OBS> oops::ObsErrorBase< OBS >::ObsSpace_
private

Definition at line 48 of file generic/ObsErrorBase.h.

◆ ObsVector_

template<typename OBS >
typedef ObsVector<OBS> oops::ObsErrorBase< OBS >::ObsVector_
private

Definition at line 47 of file generic/ObsErrorBase.h.

Constructor & Destructor Documentation

◆ ObsErrorBase()

template<typename OBS >
oops::ObsErrorBase< OBS >::ObsErrorBase ( )
default

◆ ~ObsErrorBase()

template<typename OBS >
virtual oops::ObsErrorBase< OBS >::~ObsErrorBase ( )
virtualdefault

Member Function Documentation

◆ getRMSE()

template<typename OBS >
virtual double oops::ObsErrorBase< OBS >::getRMSE ( ) const
pure virtual

Get mean error for Jo table.

Implemented in oops::ObsErrorDiag< OBS >.

◆ inverseMultiply()

template<typename OBS >
virtual void oops::ObsErrorBase< OBS >::inverseMultiply ( ObsVector_ dy) const
pure virtual

Multiply a Departure dy by \(R^{-1}\).

Implemented in oops::interface::ObsErrorBase< OBS >, oops::interface::ObsErrorBase< OBS >, and oops::ObsErrorDiag< OBS >.

◆ inverseVariance()

template<typename OBS >
virtual ObsVector_ oops::ObsErrorBase< OBS >::inverseVariance ( ) const
pure virtual

Return the vector of inverse obs error variances.

Implemented in oops::ObsErrorDiag< OBS >, and oops::interface::ObsErrorBase< OBS >.

◆ multiply()

template<typename OBS >
virtual void oops::ObsErrorBase< OBS >::multiply ( ObsVector_ dy) const
pure virtual

◆ obserrors()

template<typename OBS >
virtual ObsVector_ oops::ObsErrorBase< OBS >::obserrors ( ) const
pure virtual

Return a copy of obs error std. dev. If this ObsVector_ is modified (e.g. by obs filters), it should be passed back to update() to ensure the covariance matrix stays consistent.

Implemented in oops::ObsErrorDiag< OBS >, and oops::interface::ObsErrorBase< OBS >.

◆ print()

template<typename OBS >
virtual void oops::ObsErrorBase< OBS >::print ( std::ostream &  ) const
privatepure virtual

Implemented in oops::ObsErrorDiag< OBS >.

◆ randomize()

template<typename OBS >
virtual void oops::ObsErrorBase< OBS >::randomize ( ObsVector_ dy) const
pure virtual

◆ save()

template<typename OBS >
virtual void oops::ObsErrorBase< OBS >::save ( const std::string &  name) const
pure virtual

Save obs errors to the group name.

Implemented in oops::ObsErrorDiag< OBS >.

◆ update()

template<typename OBS >
virtual void oops::ObsErrorBase< OBS >::update ( const ObsVector_ stddev)
pure virtual

Set the diagonal of the covariance matrix to stddev squared.

Implemented in oops::interface::ObsErrorBase< OBS >, oops::interface::ObsErrorBase< OBS >, and oops::ObsErrorDiag< OBS >.


The documentation for this class was generated from the following file: