OOPS
IdVariableChange.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-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 OOPS_GENERIC_IDVARIABLECHANGE_H_
9 #define OOPS_GENERIC_IDVARIABLECHANGE_H_
10 
11 #include <ostream>
12 #include <string>
13 
14 #include "oops/base/Geometry.h"
15 #include "oops/base/State.h"
17 #include "oops/util/Printable.h"
18 
19 // Forward declarations
20 namespace eckit {
21  class Configuration;
22 }
23 
24 namespace oops {
25 
26 // -------------------------------------------------------------------------------------------------
27 /// No change of variable
28 
29 template <typename MODEL>
33  public:
34  static const std::string classname() {return "oops::IdVariableChange";}
35 
36  IdVariableChange(const Geometry_ &, const eckit::Configuration &) {}
37 
38 /// Perform identity change of variable
39  void changeVar(const State_ & x1, State_ & x2) const override {x2 = x1;}
40  void changeVarInverse(const State_ & x1, State_ & x2) const override {x2 = x1;}
41 
42  private:
43  void print(std::ostream & os) const override {os << "IdVariableChange";}
44 };
45 
46 // -------------------------------------------------------------------------------------------------
47 
48 } // namespace oops
49 #endif // OOPS_GENERIC_IDVARIABLECHANGE_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
No change of variable.
static const std::string classname()
void changeVarInverse(const State_ &x1, State_ &x2) const override
inverse of changeVar, change variables back from xout to xin
Geometry< MODEL > Geometry_
void print(std::ostream &os) const override
Print, used for logging.
void changeVar(const State_ &x1, State_ &x2) const override
Perform identity change of variable.
IdVariableChange(const Geometry_ &, const eckit::Configuration &)
State class used in oops; subclass of interface class interface::State.
Definition: FieldL95.h:22
The namespace for the main oops code.