8 #ifndef LORENZ95_OBSDATA1D_H_
9 #define LORENZ95_OBSDATA1D_H_
17 #include "eckit/exception/Exceptions.h"
20 #include "oops/util/Logger.h"
21 #include "oops/util/missingValues.h"
22 #include "oops/util/ObjectCounter.h"
23 #include "oops/util/Printable.h"
33 template<
typename DATATYPE>
35 private util::ObjectCounter<ObsData1D<DATATYPE> > {
37 static const std::string
classname() {
return "lorenz95::ObsData1D";}
54 void read(
const std::string &);
55 void save(
const std::string &)
const;
58 void print(std::ostream &)
const;
66 template<
typename DATATYPE>
68 const std::string & name)
69 : obsdb_(ot), data_(ot.nobs())
75 template<
typename DATATYPE>
77 : obsdb_(other.obsdb_), data_(other.data_)
80 template<
typename DATATYPE>
82 : obsdb_(other.obsdb()), data_(other.size()) {
83 const DATATYPE missing = util::missingValue(DATATYPE());
84 const double dmiss = util::missingValue(
double());
85 for (
size_t jj = 0; jj <
data_.size(); ++jj) {
86 if (other[jj] == dmiss) {
87 data_.at(jj) = missing;
89 data_.at(jj) =
static_cast<DATATYPE
>(other[jj]);
94 template<
typename DATATYPE>
96 ASSERT(data_.size() == rhs.
data_.size());
101 template<
typename DATATYPE>
103 for (
size_t jj = 0; jj < data_.size(); ++jj) {
104 data_.at(jj) =
static_cast<DATATYPE
>(0);
108 template<
typename DATATYPE>
110 DATATYPE missing = util::missingValue(DATATYPE());
111 for (
size_t jj = 0; jj < data_.size(); ++jj) {
112 if (mask[jj]) data_.at(jj) = missing;
116 template<
typename DATATYPE>
118 obsdb_.getdb(name, data_);
121 template<
typename DATATYPE>
123 obsdb_.putdb(name, data_);
126 template<
typename DATATYPE>
128 DATATYPE missing = util::missingValue(DATATYPE());
129 DATATYPE zmin = std::numeric_limits<DATATYPE>::max();
130 DATATYPE zmax = std::numeric_limits<DATATYPE>::lowest();
133 for (
const DATATYPE &
val : data_) {
134 if (
val != missing) {
135 if (
val < zmin) zmin =
val;
136 if (
val > zmax) zmax =
val;
142 zavg /=
static_cast<DATATYPE
>(iobs);
143 os <<
"Lorenz 95 nobs= " << iobs <<
" Min=" << zmin <<
", Max=" << zmax
144 <<
", Average=" << zavg;
146 os <<
"Lorenz 95 : No observations";
Data in observation space.
void mask(const ObsData1D< int > &)
DATATYPE & operator[](const size_t ii)
ObsData1D(const ObsTable &, const oops::Variables &, const std::string &)
void read(const std::string &)
ObsData1D & operator=(const ObsData1D &)
static const std::string classname()
std::vector< DATATYPE > data_
void print(std::ostream &) const
void save(const std::string &) const
A Simple Observation Data Handler.
void getdb(const std::string &, std::vector< int > &) const
Vector in observation space.
The namespace for the L95 model.