OOPS
LocalIncrement.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2018-2020 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 OOPS_BASE_LOCALINCREMENT_H_
9 #define OOPS_BASE_LOCALINCREMENT_H_
10 
11 #include <string>
12 #include <vector>
13 
14 #include "oops/base/Variables.h"
15 #include "oops/util/Printable.h"
16 
17 namespace oops {
18 
19 class LocalIncrement: public util::Printable {
20  public:
22  std::vector<double> vals,
23  std::vector<int> varlens)
24  : vars_(vars), vals_(vals), varlens_(varlens) {}
25 
26  const oops::Variables & getVars() const {return vars_;}
27  const std::vector<double> & getVals() const {return vals_;}
28  void setVals(std::vector<double> &);
29 
30  /// Linear algebra operators
31  LocalIncrement & operator*=(const std::vector<double> &);
32 
33  private:
34  void print(std::ostream & os) const {
35  os << "LocalIncrement, size: " << vals_.size() << ", first element: "
36  << vals_[0] << std::endl; }
37  const oops::Variables vars_; // variables in the object
38  std::vector<double> vals_; // data in flat array
39  const std::vector<int> varlens_; // vector containing nlevs for each variable
40 };
41 
42 } // namespace oops
43 
44 #endif // OOPS_BASE_LOCALINCREMENT_H_
const oops::Variables & getVars() const
LocalIncrement & operator*=(const std::vector< double > &)
Linear algebra operators.
const std::vector< int > varlens_
void setVals(std::vector< double > &)
std::vector< double > vals_
const std::vector< double > & getVals() const
const oops::Variables vars_
LocalIncrement(const oops::Variables vars, std::vector< double > vals, std::vector< int > varlens)
void print(std::ostream &os) const
The namespace for the main oops code.