OOPS
oops/interface/ObsSpace.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  * (C) Copyright 2017-2019 UCAR.
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  * In applying this licence, ECMWF does not waive the privileges and immunities
8  * granted to it by virtue of its status as an intergovernmental organisation nor
9  * does it submit to any jurisdiction.
10  */
11 
12 #ifndef OOPS_INTERFACE_OBSSPACE_H_
13 #define OOPS_INTERFACE_OBSSPACE_H_
14 
15 #include <memory>
16 #include <ostream>
17 #include <string>
18 
19 #include "eckit/geometry/Point2.h"
20 #include "eckit/system/ResourceUsage.h"
21 
22 #include "oops/base/Variables.h"
24 #include "oops/mpi/mpi.h"
25 #include "oops/util/Logger.h"
26 #include "oops/util/ObjectCounter.h"
27 #include "oops/util/Printable.h"
28 #include "oops/util/Timer.h"
29 
30 namespace eckit {
31  class Configuration;
32 }
33 
34 namespace util {
35  class DateTime;
36 }
37 
38 namespace oops {
39 
40 // -----------------------------------------------------------------------------
41 
42 template <typename OBS>
43 class ObsSpace : public util::Printable,
44  private util::ObjectCounter<ObsSpace<OBS> > {
45  typedef typename OBS::ObsSpace ObsSpace_;
47 
48  public:
49  typedef typename ObsSpace_::Parameters_ Parameters_;
50 
51  static const std::string classname() {return "oops::ObsSpace";}
52 
53  ObsSpace(const Parameters_ &, const eckit::mpi::Comm &,
54  const util::DateTime &, const util::DateTime &,
55  const eckit::mpi::Comm & time = oops::mpi::myself());
56  ~ObsSpace();
57 
58  ObsSpace(const ObsSpace &) = delete;
59 
60 /// Interfacing
61  ObsSpace_ & obsspace() const {return *obsdb_;} // const problem? YT
62 
63 /// Assimilation window
64  const util::DateTime & windowStart() const {return obsdb_->windowStart();}
65  const util::DateTime & windowEnd() const {return obsdb_->windowEnd();}
66 
67  const Variables & obsvariables() const;
68 
69 // Other
70  const std::string & obsname() const {return obsdb_->obsname();}
71 
72  /// Iterator to the first observation
73  ObsIterator_ begin() const;
74  /// Iterator to the past-the-end observation (after last)
75  ObsIterator_ end() const;
76 
77  const eckit::mpi::Comm & timeComm() const {return time_;}
78 
79 // Save to file
80  void save() const;
81 
82  private:
83  void print(std::ostream &) const;
84 
85  std::unique_ptr<ObsSpace_> obsdb_;
86  const eckit::mpi::Comm & time_;
87 };
88 
89 // -----------------------------------------------------------------------------
90 
91 template <typename OBS>
93  const eckit::mpi::Comm & comm,
94  const util::DateTime & bgn,
95  const util::DateTime & end,
96  const eckit::mpi::Comm & time) : obsdb_(), time_(time) {
97  Log::trace() << "ObsSpace<OBS>::ObsSpace starting" << std::endl;
98  util::Timer timer(classname(), "ObsSpace");
99  size_t init = eckit::system::ResourceUsage().maxResidentSetSize();
100  obsdb_.reset(new ObsSpace_(params, comm, bgn, end, time));
101  size_t current = eckit::system::ResourceUsage().maxResidentSetSize();
102  this->setObjectSize(current - init);
103  Log::trace() << "ObsSpace<OBS>::ObsSpace done" << std::endl;
104 }
105 
106 // -----------------------------------------------------------------------------
107 
108 template <typename OBS>
110  Log::trace() << "ObsSpace<OBS>::~ObsSpace starting" << std::endl;
111  util::Timer timer(classname(), "~ObsSpace");
112  obsdb_.reset();
113  Log::trace() << "ObsSpace<OBS>::~ObsSpace done" << std::endl;
114 }
115 
116 // -----------------------------------------------------------------------------
117 
118 template <typename OBS>
119 void ObsSpace<OBS>::save() const {
120  Log::trace() << "ObsSpace<OBS>::save starting" << std::endl;
121  util::Timer timer(classname(), "save");
122  obsdb_->save();
123  Log::trace() << "ObsSpace<OBS>::save done" << std::endl;
124 }
125 
126 // -----------------------------------------------------------------------------
127 
128 template <typename OBS>
129 void ObsSpace<OBS>::print(std::ostream & os) const {
130  Log::trace() << "ObsSpace<OBS>::print starting" << std::endl;
131  util::Timer timer(classname(), "print");
132  os << *obsdb_;
133  Log::trace() << "ObsSpace<OBS>::print done" << std::endl;
134 }
135 
136 // -----------------------------------------------------------------------------
137 
138 template <typename OBS>
140  Log::trace() << "ObsSpace<OBS>::obsvariables starting" << std::endl;
141  util::Timer timer(classname(), "obsvariables");
142  return obsdb_->obsvariables();
143 }
144 
145 // -----------------------------------------------------------------------------
146 
147 template <typename OBS>
149  Log::trace() << "ObsSpace<OBS>::begin starting" << std::endl;
150  util::Timer timer(classname(), "begin");
151  Log::trace() << "ObsSpace<OBS>::begin done" << std::endl;
152  return ObsIterator_(obsdb_->begin());
153 }
154 
155 // -----------------------------------------------------------------------------
156 
157 template <typename OBS>
159  Log::trace() << "ObsSpace<OBS>::end starting" << std::endl;
160  util::Timer timer(classname(), "end");
161  Log::trace() << "ObsSpace<OBS>::end done" << std::endl;
162  return ObsIterator_(obsdb_->end());
163 }
164 
165 // -----------------------------------------------------------------------------
166 
167 } // namespace oops
168 
169 #endif // OOPS_INTERFACE_OBSSPACE_H_
std::unique_ptr< ObsSpace_ > obsdb_
void print(std::ostream &) const
ObsIterator_ end() const
Iterator to the past-the-end observation (after last)
ObsSpace(const ObsSpace &)=delete
ObsSpace_::Parameters_ Parameters_
ObsIterator_ begin() const
Iterator to the first observation.
ObsSpace(const Parameters_ &, const eckit::mpi::Comm &, const util::DateTime &, const util::DateTime &, const eckit::mpi::Comm &time=oops::mpi::myself())
ObsSpace_ & obsspace() const
Interfacing.
static const std::string classname()
const eckit::mpi::Comm & time_
const std::string & obsname() const
const util::DateTime & windowStart() const
Assimilation window.
const eckit::mpi::Comm & timeComm() const
const Variables & obsvariables() const
GeometryIterator< OBS > ObsIterator_
const util::DateTime & windowEnd() const
Definition: FieldL95.h:22
const eckit::mpi::Comm & myself()
Default communicator with each MPI task by itself.
Definition: oops/mpi/mpi.cc:90
The namespace for the main oops code.
Definition: TLML95.h:34