8 #ifndef OOPS_BASE_GETVALUEPOSTS_H_
9 #define OOPS_BASE_GETVALUEPOSTS_H_
21 #include "oops/util/DateTime.h"
22 #include "oops/util/Duration.h"
23 #include "oops/util/Logger.h"
28 template <
typename MODEL,
typename OBS>
42 void doInitialize(
const State_ &,
const util::DateTime &,
const util::Duration &)
override;
53 template <
typename MODEL,
typename OBS>
55 Log::trace() <<
"GetValuePosts::GetValuePosts" << std::endl;
60 template <
typename MODEL,
typename OBS>
62 Log::trace() <<
"GetValuePosts::append start" << std::endl;
63 getvals_.push_back(getval);
64 geovars_ += getval->requiredVariables();
65 Log::trace() <<
"GetValuePosts::append done" << std::endl;
70 template <
typename MODEL,
typename OBS>
72 const util::Duration & tstep) {
73 Log::trace() <<
"GetValuePosts::doInitialize start" << std::endl;
74 for (
GetValuePtr_ getval : getvals_) getval->initialize(tstep);
75 Log::trace() <<
"GetValuePosts::doInitialize done" << std::endl;
80 template <
typename MODEL,
typename OBS>
82 Log::trace() <<
"GetValuePosts::doProcessing start" << std::endl;
84 eckit::LocalConfiguration chvarconf;
89 for (
GetValuePtr_ getval : getvals_) getval->process(zz);
90 Log::trace() <<
"GetValuePosts::doProcessing done" << std::endl;
Encapsulates the nonlinear variable change There should not be a factory for ChangeVariable,...
void changeVar(const State_ &xin, State_ &xout) const
change variable from state xin to xout
Fills GeoVaLs with requested variables at requested locations during model run.
ChangeVariables< MODEL > ChangeVariables_
std::vector< GetValuePtr_ > getvals_
void doInitialize(const State_ &, const util::DateTime &, const util::Duration &) override
initialization before model run: sets up GetValues and allocate GeoVaLs
void append(GetValuePtr_)
std::shared_ptr< GetValuePost< MODEL, OBS > > GetValuePtr_
GetValuePosts()
Saves Locations and Variables to be processed.
void doProcessing(const State_ &) override
called at each model step: fill in GeoVaLs for the current time slot
Handles post-processing of model fields.
State class used in oops; subclass of interface class interface::State.
Geometry_ geometry() const
Accessor to geometry associated with this State.
const util::DateTime validTime() const
Accessor to the time of this State.
const Variables & variables() const
Accessor to variables associated with this State.
The namespace for the main oops code.