8 #ifndef OOPS_BASE_GETVALUEPOST_H_
9 #define OOPS_BASE_GETVALUEPOST_H_
23 #include "oops/util/DateTime.h"
24 #include "oops/util/Duration.h"
25 #include "oops/util/Logger.h"
34 template <
typename MODEL,
typename OBS>
45 const util::DateTime &,
const util::DateTime &,
75 template <
typename MODEL,
typename OBS>
77 const util::DateTime & bgn,
const util::DateTime & end,
79 : winbgn_(bgn), winend_(end), hslot_(), locations_(locations), geovars_(vars),
80 getvals_(geom, locations_, conf), geovals_(), sizes_(geom.variableSizes(geovars_)),
83 Log::trace() <<
"GetValuePost::GetValuePost" << std::endl;
88 template <
typename MODEL,
typename OBS>
90 Log::trace() <<
"GetValuePost::doInitialize start" << std::endl;
92 geovals_.reset(
new GeoVaLs_(locations_, geovars_, sizes_));
94 Log::trace() <<
"GetValuePost::doInitialize done" << std::endl;
99 template <
typename MODEL,
typename OBS>
101 Log::trace() <<
"GetValuePost::doProcessing start" << std::endl;
102 ASSERT(initialized_);
103 util::DateTime t1 = std::max(xx.
validTime()-hslot_, winbgn_);
104 util::DateTime t2 = std::min(xx.
validTime()+hslot_, winend_);
107 getvals_.fillGeoVaLs(xx, t1, t2, *geovals_);
108 Log::trace() <<
"GetValuePost::doProcessing done" << std::endl;
113 template <
typename MODEL,
typename OBS>
115 Log::trace() <<
"GetValuePost::releaseGeoVaLs" << std::endl;
116 initialized_ =
false;
118 return std::move(geovals_);
Geometry class used in oops; subclass of interface class interface::Geometry.
Fills GeoVaLs with requested variables at requested locations during model run.
const Locations_ & locations_
Half time slot.
std::unique_ptr< GeoVaLs_ > geovals_
GetValues used to fill in GeoVaLs.
std::vector< size_t > sizes_
GeoVaLs that are filled in.
std::unique_ptr< GeoVaLs_ > releaseGeoVaLs()
Returns geovals filled in during the model run.
GetValuePost(const eckit::Configuration &, const Geometry_ &, const util::DateTime &, const util::DateTime &, const Locations_ &, const Variables &)
Saves Locations and Variables to be processed.
GetValues< MODEL, OBS > GetValues_
void initialize(const util::Duration &)
initialization before model run: sets up GetValues and allocate GeoVaLs
util::Duration hslot_
End of assimilation window.
GetValues_ getvals_
Variables needed from model.
const Variables & requiredVariables() const
Variables that will be required from the State.
Geometry< MODEL > Geometry_
const Variables geovars_
locations of observations
Locations< OBS > Locations_
void process(const State_ &)
called at each model step: fill in GeoVaLs for the current time slot
util::DateTime winend_
Begining of assimilation window.
Gets values from model State to observation locations (fills GeoVaLs)
Locations of observations for observation operator.
State class used in oops; subclass of interface class interface::State.
const util::DateTime validTime() const
Accessor to the time of this State.
The namespace for the main oops code.