OOPS
oops::GetValuesPost< MODEL, OBS > Class Template Reference

Fills GeoVaLs with requested variables at requested locations: More...

#include <GetValuesPost.h>

Inheritance diagram for oops::GetValuesPost< MODEL, OBS >:
Collaboration diagram for oops::GetValuesPost< MODEL, OBS >:

Public Member Functions

 GetValuesPost (const ObsSpaces_ &, const LocationsVec_ &, const std::vector< Variables > &, const std::vector< eckit::LocalConfiguration > &)
 Saves Locations and Variables to be processed. More...
 
const GeoVaLsVec_geovals () const
 Returns geovals filled in during the model run. More...
 
void fill (const State4D_ &)
 fills in GeoVaLs looping through State4D More...
 
- Public Member Functions inherited from oops::PostBase< State< MODEL > >
 PostBase ()
 Constructors and basic operators. More...
 
 PostBase (const eckit::Configuration &conf)
 
 PostBase (const util::DateTime &start, const util::DateTime &finish, const util::Duration &freq=util::Duration(0))
 
virtual ~PostBase ()
 
void initialize (const State< MODEL > &xx, const util::DateTime &end, const util::Duration &tstep)
 Setup. More...
 
void process (const State< MODEL > &xx)
 Process state or increment. More...
 
void finalize (const State< MODEL > &xx)
 Final. More...
 

Private Types

typedef ChangeVariables< MODEL > ChangeVariables_
 
typedef GeoVaLs< OBS > GeoVaLs_
 
typedef Locations< OBS > Locations_
 
typedef ObsSpaces< OBS > ObsSpaces_
 
typedef State< MODEL > State_
 
typedef State4D< MODEL > State4D_
 
typedef GetValues< MODEL, OBS > GetValues_
 
typedef std::vector< std::unique_ptr< GetValues_ > > GetValuesVec_
 
typedef std::vector< std::unique_ptr< GeoVaLs_ > > GeoVaLsVec_
 
typedef std::vector< std::unique_ptr< Locations_ > > LocationsVec_
 

Private Member Functions

void doInitialize (const State_ &, const util::DateTime &, const util::Duration &) override
 initialization before model run: sets up GetValues and allocate GeoVaLs More...
 
void doProcessing (const State_ &) override
 called at each model step: fill in GeoVaLs for the current time slot More...
 

Private Attributes

util::DateTime winbgn_
 
util::DateTime winend_
 Begining of assimilation window. More...
 
util::Duration hslot_
 End of assimilation window. More...
 
const LocationsVec_locations_
 Half time slot. More...
 
const std::vector< Variablesgeovars_
 locations of observations More...
 
GetValuesVec_ getvals_
 Variables needed from model. More...
 
GeoVaLsVec_ geovals_
 GetValues used to fill in GeoVaLs. More...
 
const std::vector< eckit::LocalConfiguration > getvalsconfs_
 GeoVaLs that are filled in. More...
 

Detailed Description

template<typename MODEL, typename OBS>
class oops::GetValuesPost< MODEL, OBS >

Fills GeoVaLs with requested variables at requested locations:

  • as a postprocessor during model run.
  • as a method fill() on State4D

Definition at line 43 of file GetValuesPost.h.

Member Typedef Documentation

◆ ChangeVariables_

template<typename MODEL , typename OBS >
typedef ChangeVariables<MODEL> oops::GetValuesPost< MODEL, OBS >::ChangeVariables_
private

Definition at line 44 of file GetValuesPost.h.

◆ GeoVaLs_

template<typename MODEL , typename OBS >
typedef GeoVaLs<OBS> oops::GetValuesPost< MODEL, OBS >::GeoVaLs_
private

Definition at line 45 of file GetValuesPost.h.

◆ GeoVaLsVec_

template<typename MODEL , typename OBS >
typedef std::vector<std::unique_ptr<GeoVaLs_> > oops::GetValuesPost< MODEL, OBS >::GeoVaLsVec_
private

Definition at line 53 of file GetValuesPost.h.

◆ GetValues_

template<typename MODEL , typename OBS >
typedef GetValues<MODEL, OBS> oops::GetValuesPost< MODEL, OBS >::GetValues_
private

Definition at line 50 of file GetValuesPost.h.

◆ GetValuesVec_

template<typename MODEL , typename OBS >
typedef std::vector<std::unique_ptr<GetValues_> > oops::GetValuesPost< MODEL, OBS >::GetValuesVec_
private

Definition at line 52 of file GetValuesPost.h.

◆ Locations_

template<typename MODEL , typename OBS >
typedef Locations<OBS> oops::GetValuesPost< MODEL, OBS >::Locations_
private

Definition at line 46 of file GetValuesPost.h.

◆ LocationsVec_

template<typename MODEL , typename OBS >
typedef std::vector<std::unique_ptr<Locations_> > oops::GetValuesPost< MODEL, OBS >::LocationsVec_
private

Definition at line 54 of file GetValuesPost.h.

◆ ObsSpaces_

template<typename MODEL , typename OBS >
typedef ObsSpaces<OBS> oops::GetValuesPost< MODEL, OBS >::ObsSpaces_
private

Definition at line 47 of file GetValuesPost.h.

◆ State4D_

template<typename MODEL , typename OBS >
typedef State4D<MODEL> oops::GetValuesPost< MODEL, OBS >::State4D_
private

Definition at line 49 of file GetValuesPost.h.

◆ State_

template<typename MODEL , typename OBS >
typedef State<MODEL> oops::GetValuesPost< MODEL, OBS >::State_
private

Definition at line 48 of file GetValuesPost.h.

Constructor & Destructor Documentation

◆ GetValuesPost()

template<typename MODEL , typename OBS >
oops::GetValuesPost< MODEL, OBS >::GetValuesPost ( const ObsSpaces_ obsdb,
const LocationsVec_ locations,
const std::vector< Variables > &  vars,
const std::vector< eckit::LocalConfiguration > &  confs 
)

Saves Locations and Variables to be processed.

Definition at line 89 of file GetValuesPost.h.

Member Function Documentation

◆ doInitialize()

template<typename MODEL , typename OBS >
void oops::GetValuesPost< MODEL, OBS >::doInitialize ( const State_ xx,
const util::DateTime &  end,
const util::Duration &  tstep 
)
overrideprivatevirtual

initialization before model run: sets up GetValues and allocate GeoVaLs

Reimplemented from oops::PostBase< State< MODEL > >.

Definition at line 125 of file GetValuesPost.h.

Here is the call graph for this function:

◆ doProcessing()

template<typename MODEL , typename OBS >
void oops::GetValuesPost< MODEL, OBS >::doProcessing ( const State_ xx)
overrideprivatevirtual

called at each model step: fill in GeoVaLs for the current time slot

Implements oops::PostBase< State< MODEL > >.

Definition at line 142 of file GetValuesPost.h.

Here is the call graph for this function:

◆ fill()

template<typename MODEL , typename OBS >
void oops::GetValuesPost< MODEL, OBS >::fill ( const State4D_ xx)

fills in GeoVaLs looping through State4D

Definition at line 102 of file GetValuesPost.h.

Here is the call graph for this function:

◆ geovals()

template<typename MODEL , typename OBS >
const GeoVaLsVec_& oops::GetValuesPost< MODEL, OBS >::geovals ( ) const
inline

Returns geovals filled in during the model run.

Definition at line 63 of file GetValuesPost.h.

Member Data Documentation

◆ geovals_

template<typename MODEL , typename OBS >
GeoVaLsVec_ oops::GetValuesPost< MODEL, OBS >::geovals_
private

GetValues used to fill in GeoVaLs.

Definition at line 82 of file GetValuesPost.h.

◆ geovars_

template<typename MODEL , typename OBS >
const std::vector<Variables> oops::GetValuesPost< MODEL, OBS >::geovars_
private

locations of observations

Definition at line 80 of file GetValuesPost.h.

◆ getvals_

template<typename MODEL , typename OBS >
GetValuesVec_ oops::GetValuesPost< MODEL, OBS >::getvals_
private

Variables needed from model.

Definition at line 81 of file GetValuesPost.h.

◆ getvalsconfs_

template<typename MODEL , typename OBS >
const std::vector<eckit::LocalConfiguration> oops::GetValuesPost< MODEL, OBS >::getvalsconfs_
private

GeoVaLs that are filled in.

Definition at line 83 of file GetValuesPost.h.

◆ hslot_

template<typename MODEL , typename OBS >
util::Duration oops::GetValuesPost< MODEL, OBS >::hslot_
private

End of assimilation window.

Definition at line 77 of file GetValuesPost.h.

◆ locations_

template<typename MODEL , typename OBS >
const LocationsVec_& oops::GetValuesPost< MODEL, OBS >::locations_
private

Half time slot.

Definition at line 79 of file GetValuesPost.h.

◆ winbgn_

template<typename MODEL , typename OBS >
util::DateTime oops::GetValuesPost< MODEL, OBS >::winbgn_
private

Definition at line 75 of file GetValuesPost.h.

◆ winend_

template<typename MODEL , typename OBS >
util::DateTime oops::GetValuesPost< MODEL, OBS >::winend_
private

Begining of assimilation window.

Definition at line 76 of file GetValuesPost.h.


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