OOPS
Iterator.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2018 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 #include "lorenz95/Iterator.h"
9 #include <vector>
10 
11 // -----------------------------------------------------------------------------
12 namespace lorenz95 {
13 
14 // -----------------------------------------------------------------------------
15 Iterator::Iterator(const Resolution & res, const int & index): res_(res.npoints()), index_(index) {
16 }
17 
18 // -----------------------------------------------------------------------------
19 bool Iterator::operator==(const Iterator & other) const {
20  return ((res_ == other.res_) && (index_ == other.index_));
21 }
22 
23 // -----------------------------------------------------------------------------
24 bool Iterator::operator!=(const Iterator & other) const {
25  return ((res_ != other.res_) || (index_ != other.index_));
26 }
27 
28 // -----------------------------------------------------------------------------
29 eckit::geometry::Point2 Iterator::operator*() const {
30  return eckit::geometry::Point2(index_/static_cast<double>(res_), 0.0);
31 }
32 
33 // -----------------------------------------------------------------------------
35  index_++;
36  return *this;
37 }
38 
39 // -----------------------------------------------------------------------------
40 
41 } // namespace lorenz95
eckit::geometry::Point2 operator*() const
Definition: Iterator.cc:29
const int res_
Definition: Iterator.h:45
Iterator(const Resolution &res, const int &index)
Definition: Iterator.cc:15
bool operator!=(const Iterator &) const
Definition: Iterator.cc:24
bool operator==(const Iterator &) const
Definition: Iterator.cc:19
Iterator & operator++()
Definition: Iterator.cc:34
Handles resolution.
Definition: Resolution.h:43
The namespace for the L95 model.