OOPS
l95/src/lorenz95/ObsIterator.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2021 UCAR
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  */
7 
8 #ifndef LORENZ95_OBSITERATOR_H_
9 #define LORENZ95_OBSITERATOR_H_
10 
11 #include <iterator>
12 #include <string>
13 #include <vector>
14 
15 #include "eckit/geometry/Point2.h"
16 
17 #include "oops/util/ObjectCounter.h"
18 #include "oops/util/Printable.h"
19 
20 namespace lorenz95 {
21 
22 /// Iterator over all observations
23 class ObsIterator: public std::iterator<std::forward_iterator_tag,
24  eckit::geometry::Point2>,
25  public util::Printable,
26  private util::ObjectCounter<ObsIterator> {
27  public:
28  static const std::string classname() {return "lorenz95::ObsIterator";}
29 
30  ObsIterator(const std::vector<double> & locations, int index);
31 
32  bool operator==(const ObsIterator &) const;
33  bool operator!=(const ObsIterator &) const;
34 
35  /// return location of current observation
36  eckit::geometry::Point2 operator*() const;
37 
39 
40  private:
41  void print(std::ostream & os) const override {os << index_;}
42 
43  /// locations (in 1D) of all observations
44  const std::vector<double> locations_;
45  /// index of a current observation
46  int index_;
47 };
48 
49 } // namespace lorenz95
50 
51 #endif // LORENZ95_OBSITERATOR_H_
Iterator over all observations.
eckit::geometry::Point2 operator*() const
return location of current observation
Definition: ObsIterator.cc:30
void print(std::ostream &os) const override
const std::vector< double > locations_
locations (in 1D) of all observations
ObsIterator(const std::vector< double > &locations, int index)
Definition: ObsIterator.cc:15
ObsIterator & operator++()
Definition: ObsIterator.cc:35
bool operator!=(const ObsIterator &) const
Definition: ObsIterator.cc:25
static const std::string classname()
int index_
index of a current observation
bool operator==(const ObsIterator &) const
Definition: ObsIterator.cc:20
The namespace for the L95 model.