OOPS
ObsSpaces.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef OOPS_BASE_OBSSPACES_H_
12 #define OOPS_BASE_OBSSPACES_H_
13 
14 #include <cstddef>
15 #include <map>
16 #include <memory>
17 #include <ostream>
18 #include <string>
19 #include <utility>
20 #include <vector>
21 
22 #include "eckit/config/LocalConfiguration.h"
23 #include "eckit/exception/Exceptions.h"
24 #include "eckit/geometry/Point2.h"
25 
27 #include "oops/mpi/mpi.h"
28 #include "oops/util/ConfigFunctions.h" // for vectoriseAndFilter
29 #include "oops/util/DateTime.h"
30 #include "oops/util/Logger.h"
31 #include "oops/util/ObjectCounter.h"
32 #include "oops/util/parameters/Parameters.h"
33 #include "oops/util/Printable.h"
34 #include "oops/util/Timer.h"
35 
36 namespace oops {
37 
38 // -----------------------------------------------------------------------------
39 template <typename OBS>
40 class ObsSpaces : public util::Printable,
41  private util::ObjectCounter<ObsSpaces<OBS> > {
43 
44  public:
46 
47  static const std::string classname() {return "oops::ObsSpaces";}
48 
49  ObsSpaces(const std::vector<Parameters_> &, const eckit::mpi::Comm &,
50  const util::DateTime &, const util::DateTime &,
51  const eckit::mpi::Comm & time = oops::mpi::myself());
52  ObsSpaces(const eckit::Configuration &, const eckit::mpi::Comm &,
53  const util::DateTime &, const util::DateTime &,
54  const eckit::mpi::Comm & time = oops::mpi::myself());
55  ~ObsSpaces();
56 
57 /// Save files
58  void save() const;
59 
60 /// Access
61  std::size_t size() const {return spaces_.size();}
62  ObsSpace_ & operator[](const std::size_t ii) {return *spaces_.at(ii);}
63  const ObsSpace_ & operator[](const std::size_t ii) const {return *spaces_.at(ii);}
64 
65 /// Assimilation window
66  const util::DateTime & windowStart() const {return wbgn_;}
67  const util::DateTime & windowEnd() const {return wend_;}
68 
69  private:
70  void print(std::ostream &) const;
71 
72  std::vector<std::shared_ptr<ObsSpace_> > spaces_;
73  const util::DateTime wbgn_;
74  const util::DateTime wend_;
75 };
76 
77 // -----------------------------------------------------------------------------
78 
79 template <typename OBS>
80 ObsSpaces<OBS>::ObsSpaces(const std::vector<Parameters_> & params, const eckit::mpi::Comm & comm,
81  const util::DateTime & bgn, const util::DateTime & end,
82  const eckit::mpi::Comm & time)
83  : spaces_(0), wbgn_(bgn), wend_(end)
84 {
85  spaces_.reserve(params.size());
86  for (const Parameters_ & param : params) {
87  Log::debug() << "ObsSpaces::ObsSpaces : conf " << param << std::endl;
88  auto tmp = std::make_shared<ObsSpace_>(param, comm, bgn, end, time);
89  spaces_.push_back(std::move(tmp));
90  }
91  ASSERT(spaces_.size() >0);
92 }
93 
94 // -----------------------------------------------------------------------------
95 
96 template <typename OBS>
97 ObsSpaces<OBS>::ObsSpaces(const eckit::Configuration & conf, const eckit::mpi::Comm & comm,
98  const util::DateTime & bgn, const util::DateTime & end,
99  const eckit::mpi::Comm & time)
100  : ObsSpaces( // Split conf into subconfigurations, extract the "obs space" section from each
101  // of them, then validate and deserialize that section into a Parameters_ object
102  validateAndDeserialize<Parameters_>(util::vectoriseAndFilter(conf, "obs space")),
103  comm, bgn, end, time)
104 {}
105 
106 // -----------------------------------------------------------------------------
107 
108 template <typename OBS>
110 
111 // -----------------------------------------------------------------------------
112 
113 template <typename OBS>
114 void ObsSpaces<OBS>::save() const {
115  for (std::size_t jj = 0; jj < spaces_.size(); ++jj) {
116  spaces_[jj]->save();
117  }
118 }
119 
120 // -----------------------------------------------------------------------------
121 
122 template <typename OBS>
123 void ObsSpaces<OBS>::print(std::ostream & os) const {
124  for (std::size_t jj = 0; jj < spaces_.size(); ++jj) {
125  os << *spaces_[jj];
126  }
127 }
128 
129 // -----------------------------------------------------------------------------
130 
131 } // namespace oops
132 
133 #endif // OOPS_BASE_OBSSPACES_H_
ObsSpace_::Parameters_ Parameters_
ObsSpace_ & operator[](const std::size_t ii)
Definition: ObsSpaces.h:62
const util::DateTime wend_
Definition: ObsSpaces.h:74
ObsSpace< OBS > ObsSpace_
Definition: ObsSpaces.h:42
const util::DateTime wbgn_
Definition: ObsSpaces.h:73
ObsSpaces(const std::vector< Parameters_ > &, const eckit::mpi::Comm &, const util::DateTime &, const util::DateTime &, const eckit::mpi::Comm &time=oops::mpi::myself())
Definition: ObsSpaces.h:80
ObsSpace_::Parameters_ Parameters_
Definition: ObsSpaces.h:45
static const std::string classname()
Definition: ObsSpaces.h:47
std::vector< std::shared_ptr< ObsSpace_ > > spaces_
Definition: ObsSpaces.h:72
void save() const
Save files.
Definition: ObsSpaces.h:114
const ObsSpace_ & operator[](const std::size_t ii) const
Definition: ObsSpaces.h:63
const util::DateTime & windowStart() const
Assimilation window.
Definition: ObsSpaces.h:66
const util::DateTime & windowEnd() const
Definition: ObsSpaces.h:67
std::size_t size() const
Access.
Definition: ObsSpaces.h:61
void print(std::ostream &) const
Definition: ObsSpaces.h:123
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