11 #ifndef OOPS_BASE_WEIGHTEDDIFF_H_
12 #define OOPS_BASE_WEIGHTEDDIFF_H_
23 #include "oops/util/DateTime.h"
24 #include "oops/util/Duration.h"
25 #include "oops/util/Logger.h"
38 template <
typename MODEL,
typename INCR,
typename FLDS>
50 void doInitialize(
const FLDS &,
const util::DateTime &,
const util::Duration &)
override;
69 template <
typename MODEL,
typename INCR,
typename FLDS>
71 const util::DateTime & vt,
72 const util::Duration & span,
73 const util::Duration & tstep,
76 :
PostBase<FLDS>(vt-span/2, vt+span/2),
77 wfct_(wfct), weights_(), avg_(0), sum_(0.0), linit_(false),
78 vtime_(vt), bgn_(vt-span/2), end_(vt+span/2), tstep_(tstep),
79 bgnleg_(), endleg_(), current_()
86 template <
typename MODEL,
typename INCR,
typename FLDS>
89 ASSERT(std::abs(sum_) < 1.0e-8);
95 template <
typename MODEL,
typename INCR,
typename FLDS>
97 const util::DateTime & end,
98 const util::Duration & tstep) {
99 const util::DateTime bgn(xx.validTime());
100 if (!linit_ && bgn <= end_ && end >= bgn_) {
101 if (tstep_ == util::Duration(0)) tstep_ = tstep;
102 ASSERT(tstep_ > util::Duration(0));
103 weights_ = wfct_.setWeights(bgn_, end_, tstep_);
105 ASSERT(weights_.find(vtime_) != weights_.end());
106 weights_[vtime_] -= 1.0;
110 current_ = bgn-tstep;
115 template <
typename MODEL,
typename INCR,
typename FLDS>
117 const util::DateTime now(xx.validTime());
118 ASSERT(now > current_);
119 if (((bgnleg_ < end_ && endleg_ > bgn_) || bgnleg_ == endleg_) &&
120 (now != endleg_ || now == end_ || now == bgnleg_)) {
121 ASSERT(weights_.find(now) != weights_.end());
122 const double zz = weights_[now];
123 avg_->accumul(zz, xx);
Geometry class used in oops; subclass of interface class interface::Geometry.
Handles post-processing of model fields.
Compute time average of states or increments during model run.
Geometry< MODEL > Geometry_
void doInitialize(const FLDS &, const util::DateTime &, const util::Duration &) override
std::map< util::DateTime, double > weights_
void doProcessing(const FLDS &) override
Actual processing.
const util::DateTime vtime_
const util::DateTime bgn_
WeightedDiff(const Variables &, const util::DateTime &, const util::Duration &, const util::Duration &, const Geometry_ &, WeightingFct &)
Accumulator< MODEL, INCR, FLDS > * avg_
const util::DateTime end_
The namespace for the main oops code.