8 #ifndef OOPS_BASE_OBSERROR_H_
9 #define OOPS_BASE_OBSERROR_H_
14 #include <boost/noncopyable.hpp>
15 #include "eckit/config/Configuration.h"
20 #include "oops/util/Logger.h"
21 #include "oops/util/Printable.h"
27 template<
typename OBS>
29 private util::ObjectCounter<ObsError<OBS> > {
35 static const std::string
classname() {
return "oops::ObsError";}
53 void save(
const std::string &)
const;
69 void print(std::ostream &)
const override;
72 std::unique_ptr<ObsErrorBase_>
err_;
77 template <
typename OBS>
79 Log::trace() <<
"ObsError<OBS>::ObsError starting" << std::endl;
81 util::Timer timer(classname(),
"ObsErrors");
82 size_t init = eckit::system::ResourceUsage().maxResidentSetSize();
86 size_t current = eckit::system::ResourceUsage().maxResidentSetSize();
87 this->setObjectSize(current - init);
88 Log::trace() <<
"ObsError<OBS>::ObsError done" << std::endl;
93 template <
typename OBS>
95 Log::trace() <<
"ObsError<OBS>::~ObsError starting" << std::endl;
96 util::Timer timer(classname(),
"~ObsError");
98 Log::trace() <<
"ObsError<OBS>::~ObsError done" << std::endl;
103 template <
typename OBS>
105 Log::trace() <<
"ObsError<OBS>::multiply starting" << std::endl;
106 util::Timer timer(classname(),
"multiply");
108 Log::trace() <<
"ObsError<OBS>::multiply done" << std::endl;
113 template <
typename OBS>
115 Log::trace() <<
"ObsError<OBS>::inverseMultiply starting" << std::endl;
116 util::Timer timer(classname(),
"inverseMultiply");
117 err_->inverseMultiply(dy);
118 Log::trace() <<
"ObsError<OBS>::inverseMultiply done" << std::endl;
123 template <
typename OBS>
125 Log::trace() <<
"ObsError<OBS>::randomize starting" << std::endl;
126 util::Timer timer(classname(),
"randomize");
128 Log::trace() <<
"ObsError<OBS>::randomize done" << std::endl;
132 template <
typename OBS>
134 Log::trace() <<
"ObsError<OBS>::save starting" << std::endl;
135 util::Timer timer(classname(),
"save");
137 Log::trace() <<
"ObsError<OBS>::save done" << std::endl;
142 template <
typename OBS>
144 Log::trace() <<
"ObsError<OBS>::obserrors starting" << std::endl;
145 util::Timer timer(classname(),
"obserrors");
147 Log::trace() <<
"ObsError<OBS>::obserrors done" << std::endl;
153 template <
typename OBS>
155 Log::trace() <<
"ObsError<OBS>::update starting" << std::endl;
156 util::Timer timer(classname(),
"update");
157 err_->update(obserr);
158 Log::trace() <<
"ObsError<OBS>::update done" << std::endl;
163 template <
typename OBS>
165 Log::trace() <<
"ObsError<OBS>::inverseVariance starting" << std::endl;
166 util::Timer timer(classname(),
"inverseVariance");
168 Log::trace() <<
"ObsError<OBS>::inverseVariance done" << std::endl;
174 template <
typename OBS>
176 Log::trace() <<
"ObsError<OBS>::getRMSE starting" << std::endl;
177 util::Timer timer(classname(),
"getRMSE");
178 double zz = err_->getRMSE();
179 Log::trace() <<
"ObsError<OBS>::getRMSE done" << std::endl;
185 template<
typename OBS>
187 Log::trace() <<
"ObsError<OBS>::print starting" << std::endl;
188 util::Timer timer(classname(),
"print");
190 Log::trace() <<
"ObsError<OBS>::print done" << std::endl;
Base class for generic implementations of observation error covariance matrices.
static std::unique_ptr< ObsErrorBase_ > create(const ObsErrorParametersBase ¶ms, const ObsSpace_ &)
Create and return a new observation error covariance matrix model.
Observation error covariance matrix of observations from a single ObsSpace.
ObsError(const ObsErrorParametersBase ¶ms, const ObsSpace_ &os)
ObsErrorBase< OBS > ObsErrorBase_
double getRMSE() const
Get mean error for Jo table.
ObsVector_ obserrors() const
void multiply(ObsVector_ &dy) const
Multiply a Departure dy by .
ObsVector_ inverseVariance() const
Return the vector of inverse obs error variances.
void update(const ObsVector_ &stddev)
Set the diagonal of the covariance matrix to stddev squared.
void save(const std::string &) const
Save obs errors.
std::unique_ptr< ObsErrorBase_ > err_
ObsError(const ObsError &)=delete
static const std::string classname()
void inverseMultiply(ObsVector_ &dy) const
Multiply a Departure dy by .
ObsError & operator=(const ObsError &)=delete
ObsVector< OBS > ObsVector_
void randomize(ObsVector_ &dy) const
Generate a random perturbation in dy.
void print(std::ostream &) const override
ObsError & operator=(ObsError &&)=default
ObsError(ObsError &&)=default
ObsSpace< OBS > ObsSpace_
Configuration parameters of an implementation of an observation error covariance matrix model.
ObsVector class used in oops; subclass of interface class interface::ObsVector.
The namespace for the main oops code.