OOPS
oops::GenericVariableChangeBase< MODEL > Class Template Referenceabstract

#include <VariableChangeBase.h>

Inheritance diagram for oops::GenericVariableChangeBase< MODEL >:
Collaboration diagram for oops::GenericVariableChangeBase< MODEL >:

Public Member Functions

 GenericVariableChangeBase ()=default
 
virtual ~GenericVariableChangeBase ()=default
 
virtual void changeVar (const State_ &xin, State_ &xout) const =0
 change variables from state xin to xout More...
 
virtual void changeVarInverse (const State_ &xout, State_ &xin) const =0
 inverse of changeVar, change variables back from xout to xin More...
 

Private Types

typedef State< MODEL > State_
 

Private Member Functions

virtual void print (std::ostream &) const =0
 Print, used for logging. More...
 

Detailed Description

template<typename MODEL>
class oops::GenericVariableChangeBase< MODEL >

Base class for a variable transforms, defining the interfaces. Use this class as a base class for generic implementations, and VariableChangeBase as a base class for MODEL-specific implementations.

Note: subclasses can opt to extract their settings either from a Configuration object or from a subclass of Parameters.

In the former case, they should provide a constructor with the following signature:

VariableChange(const Geometry_ &, const eckit::Configuration &);

In the latter case, the implementer should first define a subclass of VariableChangeParametersBase holding the settings of the variable change in question. The implementation of the VariableChange interface should then typedef Parameters_ to the name of that subclass and provide a constructor with the following signature:

VariableChange(const Geometry_ &, const Parameters_ &);

Definition at line 55 of file VariableChangeBase.h.

Member Typedef Documentation

◆ State_

template<typename MODEL >
typedef State<MODEL> oops::GenericVariableChangeBase< MODEL >::State_
private

Definition at line 57 of file VariableChangeBase.h.

Constructor & Destructor Documentation

◆ GenericVariableChangeBase()

template<typename MODEL >
oops::GenericVariableChangeBase< MODEL >::GenericVariableChangeBase ( )
default

◆ ~GenericVariableChangeBase()

template<typename MODEL >
virtual oops::GenericVariableChangeBase< MODEL >::~GenericVariableChangeBase ( )
virtualdefault

Member Function Documentation

◆ changeVar()

template<typename MODEL >
virtual void oops::GenericVariableChangeBase< MODEL >::changeVar ( const State_ xin,
State_ xout 
) const
pure virtual

◆ changeVarInverse()

template<typename MODEL >
virtual void oops::GenericVariableChangeBase< MODEL >::changeVarInverse ( const State_ xout,
State_ xin 
) const
pure virtual

inverse of changeVar, change variables back from xout to xin

Implemented in oops::VariableChangeBase< QgTraits >, oops::VariableChangeBase< MODEL >, oops::IdVariableChange< MODEL >, and oops::VariableChangeBase< MODEL >.

◆ print()

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

Print, used for logging.

Implemented in oops::IdVariableChange< MODEL >, and qg::ChangeVarQG.


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