OOPS
Resolution.cc
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 #include "lorenz95/Resolution.h"
12 #include <string>
13 #include <vector>
14 
15 // -----------------------------------------------------------------------------
16 namespace lorenz95 {
17 // -----------------------------------------------------------------------------
19  return Iterator(*this, 0);
20 }
21 // -----------------------------------------------------------------------------
23  return Iterator(*this, resol_);
24 }
25 // -------------------------------------------------------------------------------------------------
26 std::vector<double> Resolution::verticalCoord(std::string & vcUnits) const {
27  std::vector<double> vc(1, 1.0);
28  return vc;
29 }
30 // -------------------------------------------------------------------------------------------------
31 std::vector<size_t> Resolution::variableSizes(const oops::Variables & vars) const {
32  std::vector<size_t> sizes(vars.size(), 1);
33  return sizes;
34 }
35 
36 // -----------------------------------------------------------------------------
37 
38 } // namespace lorenz95
std::vector< size_t > variableSizes(const oops::Variables &) const
Definition: Resolution.cc:31
std::vector< double > verticalCoord(std::string &) const
Definition: Resolution.cc:26
Iterator begin() const
Definition: Resolution.cc:18
Iterator end() const
Definition: Resolution.cc:22
size_t size() const
The namespace for the L95 model.