19 #include "eckit/config/Configuration.h"
22 #include "oops/util/abor1_cpp.h"
23 #include "oops/util/Logger.h"
24 #include "oops/util/Random.h"
34 : size_(locs.size()), locval_(size_)
36 oops::Log::trace() <<
"GomL95::GomL95 starting " << std::endl;
37 for (
size_t jj = 0; jj <
size_; ++jj)
locval_[jj] = locs[jj];
78 return sqrt(xnorm/
static_cast<double>(
size_));
88 util::NormalDistribution<double> x(
size_, 0.0, 1.0, 5);
89 for (
size_t jj = 0; jj <
size_; ++jj)
locval_[jj] = x[jj];
99 const std::string filename(conf.getString(
"filename"));
100 oops::Log::trace() <<
"GomL95::read opening " << filename << std::endl;
101 std::ifstream fin(filename.c_str());
102 if (!fin.is_open()) ABORT(
"GomL95::read: Error opening file: " + filename);
112 for (
size_t jj = 0; jj < size_; ++jj) fin >>
locval_[jj];
115 oops::Log::trace() <<
"GomL95::read: file closed." << std::endl;
119 const std::string filename(conf.getString(
"filename"));
120 oops::Log::trace() <<
"GomL95::write opening " << filename << std::endl;
121 std::ofstream fout(filename.c_str());
122 if (!fout.is_open()) ABORT(
"GomL95::write: Error opening file: " + filename);
124 fout <<
size_ << std::endl;
126 fout.precision(std::numeric_limits<double>::digits10);
127 for (
size_t jj = 0; jj <
size_; ++jj) fout <<
locval_[jj] <<
" ";
131 oops::Log::trace() <<
"GomL95::write file closed." << std::endl;
139 for (
size_t jj = 0; jj <
size_; ++jj) {
145 os <<
size_ <<
"values, Min=" << zmin <<
", Max=" << zmax <<
", Average=" << zavg;
147 os <<
" No observations";
GomL95 class to handle locations for L95 model.
void write(const eckit::Configuration &) const
void print(std::ostream &) const
std::vector< double > locval_
GomL95 & operator+=(const GomL95 &)
GomL95 & operator*=(const double &)
double dot_product_with(const GomL95 &) const
GomL95 & operator-=(const GomL95 &)
GomL95(const LocsL95 &, const oops::Variables &, const std::vector< size_t > &)
void read(const eckit::Configuration &)
double normalizedrms(const GomL95 &) const
LocsL95 class to handle locations for L95 model.
A Simple Observation Data Handler.
The namespace for the L95 model.
The namespace for the main oops code.