11 #ifndef OOPS_BASE_OBSERVATIONS_H_
12 #define OOPS_BASE_OBSERVATIONS_H_
24 #include "oops/util/Logger.h"
25 #include "oops/util/Printable.h"
35 template <
typename OBS>
class Observations :
public util::Printable {
62 void save(
const std::string &)
const;
63 void read(
const std::string &);
74 void print(std::ostream &)
const;
79 std::vector<ObsVector_>
obs_;
84 template <
typename OBS>
86 const std::string & name): obsdb_(obsdb), obs_()
89 for (std::size_t jj = 0; jj < obsdb.
size(); ++jj) {
90 obs_.emplace_back(obsdb[jj], name);
92 Log::trace() <<
"Observations created" << std::endl;
95 template <
typename OBS>
97 : obsdb_(other.obsdb_), obs_(other.obs_) {
101 template <
typename OBS>
103 : obsdb_(other.obsdb_), obs_(std::move(other.obs_)) {
106 template <
typename OBS>
109 ASSERT(&obsdb_ == &other.
obsdb_);
114 template <
typename OBS>
117 ASSERT(&obsdb_ == &other.obsdb_);
118 obs_ = std::move(other.obs_);
122 template <
typename OBS>
125 for (std::size_t jj = 0; jj < obs_.size(); ++jj) {
127 diff[jj] -= other[jj];
132 template <
typename OBS>
134 for (std::size_t jj = 0; jj < obs_.size(); ++jj) {
140 template <
typename OBS>
142 for (std::size_t jj = 0; jj < obs_.size(); ++jj) {
147 template <
typename OBS>
149 for (std::size_t jj = 0; jj < obs_.size(); ++jj) {
154 template <
typename OBS>
156 for (std::size_t jj = 0; jj < obs_.size(); ++jj) {
161 template <
typename OBS>
163 for (std::size_t jj = 0; jj < obs_.size(); ++jj) {
168 template <
typename OBS>
170 for (std::size_t jj = 0; jj < obs_.size(); ++jj) {
176 template<
typename OBS>
179 for (
size_t jj = 0; jj < obs_.size(); ++jj) {
180 nobs += obs_[jj].nobs();
185 template <
typename OBS>
190 Log::trace() <<
"Observations perturbed" << std::endl;
193 template <
typename OBS>
195 for (std::size_t jj = 0; jj < obs_.size(); ++jj) os << obs_[jj] << std::endl;
Difference between two observation vectors.
Container for ObsErrors for all observation types that are used in DA.
void randomize(Departures_ &) const
Generate random perturbation.
std::size_t size() const
Access.
ObsVector class used in oops; subclass of interface class interface::ObsVector.
ObsErrors< OBS > ObsErrors_
Observations & operator=(const Observations &)
ObsVector_ & operator[](const std::size_t ii)
std::vector< ObsVector_ > obs_
ObsSpaces< OBS > ObsSpaces_
std::size_t size() const
Access.
~Observations()=default
destructor and copy/move constructor/assignments
const ObsVector_ & operator[](const std::size_t ii) const
Observations(const ObsSpaces_ &, const std::string &name="")
create Observations for all obs (read from ObsSpace if name is specified)
ObsVector< OBS > ObsVector_
void save(const std::string &) const
Save/read observations values.
Departures< OBS > Departures_
Observations & operator*=(const double)
void print(std::ostream &) const
void perturb(const ObsErrors_ &)
Perturbations.
const ObsSpaces_ & obsdb_
Data.
Departures_ operator-(const Observations &other) const
Interactions with Departures.
Observations & operator+=(const Departures_ &)
void accumul(const Observations &)
void read(const std::string &)
The namespace for the main oops code.