11 #ifndef OOPS_INTERFACE_GEOVALS_H_
12 #define OOPS_INTERFACE_GEOVALS_H_
18 #include <boost/noncopyable.hpp>
20 #include "eckit/config/Configuration.h"
24 #include "oops/util/ObjectCounter.h"
25 #include "oops/util/Printable.h"
26 #include "oops/util/Timer.h"
31 template <
typename OBS>
33 private util::ObjectCounter<GeoVaLs<OBS> > {
39 static const std::string
classname() {
return "oops::GeoVaLs";}
65 void read(
const eckit::Configuration &);
66 void write(
const eckit::Configuration &)
const;
69 void print(std::ostream &)
const;
75 template <
typename OBS>
77 const std::vector<size_t> & sizes) : gvals_() {
78 Log::trace() <<
"GeoVaLs<OBS>::GeoVaLs starting" << std::endl;
79 util::Timer timer(
classname(),
"GeoVaLs");
81 Log::trace() <<
"GeoVaLs<OBS>::GeoVaLs done" << std::endl;
86 template <
typename OBS>
90 Log::trace() <<
"GeoVaLs<OBS>::GeoVaLs read starting" << std::endl;
91 util::Timer timer(
classname(),
"GeoVaLs");
93 Log::trace() <<
"GeoVaLs<OBS>::GeoVaLs read done" << std::endl;
98 template <
typename OBS>
100 Log::trace() <<
"GeoVaLs<OBS>::GeoVaLs starting" << std::endl;
101 util::Timer timer(
classname(),
"GeoVaLs");
103 Log::trace() <<
"ObsVector<OBS>::GeoVaLs done" << std::endl;
108 template <
typename OBS>
110 Log::trace() <<
"GeoVaLs<OBS>::~GeoVaLs starting" << std::endl;
111 util::Timer timer(classname(),
"~GeoVaLs");
113 Log::trace() <<
"GeoVaLs<OBS>::~GeoVaLs done" << std::endl;
118 template <
typename OBS>
120 Log::trace() <<
"GeoVaLs<OBS>::dot_product_with starting" << std::endl;
121 util::Timer timer(classname(),
"dot_product_with");
122 double zz = gvals_->dot_product_with(*other.
gvals_);
123 Log::trace() <<
"GeoVaLs<OBS>::dot_product_with done" << std::endl;
129 template <
typename OBS>
131 Log::trace() <<
"GeoVaLs<OBS>::operator= starting" << std::endl;
132 util::Timer timer(classname(),
"operator=");
134 Log::trace() <<
"GeovaLs<OBS>::operator= done" << std::endl;
140 template <
typename OBS>
142 Log::trace() <<
"GeoVaLs<OBS>::+=(GeoVaLs, GeoVaLs) starting" << std::endl;
143 util::Timer timer(classname(),
"operator+=");
145 Log::trace() <<
"GeoVaLs<OBS>::+= done" << std::endl;
151 template <
typename OBS>
153 Log::trace() <<
"GeoVaLs<OBS>::-=(GeoVaLs, GeoVaLs) starting" << std::endl;
154 util::Timer timer(classname(),
"operator-=");
156 Log::trace() <<
"GeoVaLs<OBS>::-= done" << std::endl;
162 template <
typename OBS>
164 Log::trace() <<
"GeoVaLs<OBS>::*=(GeoVaLs, GeoVaLs) starting" << std::endl;
165 util::Timer timer(classname(),
"operator*=(schur)");
167 Log::trace() <<
"GeoVaLs<OBS>::*= done" << std::endl;
173 template<
typename OBS>
175 Log::trace() <<
"GeoVaLs<OBS>::operator*= starting" << std::endl;
176 util::Timer timer(classname(),
"operator*=");
178 Log::trace() <<
"GeoVaLs<OBS>::operator*= done" << std::endl;
184 template <
typename OBS>
186 Log::trace() <<
"GeoVaLs<OBS>::rms starting" << std::endl;
187 util::Timer timer(classname(),
"rms");
188 double zz = gvals_->rms();
189 Log::trace() <<
"GeoVaLs<OBS>::rms done" << std::endl;
195 template <
typename OBS>
197 Log::trace() <<
"GeoVaLs<OBS>::normalizedrms starting" << std::endl;
198 util::Timer timer(classname(),
"normalizedrms");
199 double zz = gvals_->normalizedrms(*rhs.
gvals_);
200 Log::trace() <<
"GeoVaLs<OBS>::normalizedrms done" << std::endl;
206 template <
typename OBS>
208 Log::trace() <<
"GeoVaLs<OBS>::zero starting" << std::endl;
209 util::Timer timer(classname(),
"zero");
211 Log::trace() <<
"GeoVaLs<OBS>::zero done" << std::endl;
216 template <
typename OBS>
218 Log::trace() <<
"GeoVaLs<OBS>::random starting" << std::endl;
219 util::Timer timer(classname(),
"random");
221 Log::trace() <<
"GeoVaLs<OBS>::random done" << std::endl;
226 template<
typename OBS>
228 Log::trace() <<
"GeoVaLs<OBS>::read starting" << std::endl;
229 util::Timer timer(classname(),
"read");
231 Log::trace() <<
"GeoVaLs<OBS>::read done" << std::endl;
236 template<
typename OBS>
238 Log::trace() <<
"GeoVaLs<OBS>::write starting" << std::endl;
239 util::Timer timer(classname(),
"write");
241 Log::trace() <<
"GeoVaLs<OBS>::write done" << std::endl;
246 template<
typename OBS>
248 Log::trace() <<
"GeoVaLs<OBS>::print starting" << std::endl;
249 util::Timer timer(classname(),
"print");
251 Log::trace() <<
"GeoVaLs<OBS>::print done" << std::endl;
Locations< OBS > Locations_
double dot_product_with(const GeoVaLs &) const
void print(std::ostream &) const
double normalizedrms(const GeoVaLs &) const
void read(const eckit::Configuration &)
GeoVaLs & operator+=(const GeoVaLs &)
std::unique_ptr< GeoVaLs_ > gvals_
GeoVaLs & operator=(const GeoVaLs &)
void zero()
Linear algebra and utilities, mostly for writing tests.
const GeoVaLs_ & geovals() const
Interfacing.
ObsSpace< OBS > ObsSpace_
void write(const eckit::Configuration &) const
static const std::string classname()
GeoVaLs & operator*=(const double &)
GeoVaLs(const Locations_ &locs, const Variables &, const std::vector< size_t > &sizes)
GeoVaLs & operator-=(const GeoVaLs &)
Locations of observations for observation operator.
const Locations_ & locations() const
Interfacing.
ObsSpace_ & obsspace() const
Interfacing.
The namespace for the main oops code.