OOPS
ChangeVarQG.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 QG_MODEL_CHANGEVARQG_H_
9 #define QG_MODEL_CHANGEVARQG_H_
10 
11 #include <ostream>
12 #include <string>
13 
15 
16 #include "oops/qg/QgTraits.h"
17 
18 // Forward declarations
19 namespace eckit {
20  class Configuration;
21 }
22 
23 namespace qg {
24  class GeometryQG;
25  class StateQG;
26 
27 // -----------------------------------------------------------------------------
28 /// QG change of variable
29 
30 class ChangeVarQG: public oops::VariableChangeBase<QgTraits> {
31  public:
32  static const std::string classname() {return "qg::ChangeVarQG";}
33 
34  ChangeVarQG(const GeometryQG &, const eckit::Configuration &);
35  ~ChangeVarQG();
36 
37 /// Perform transforms
38  void changeVar(const StateQG &, StateQG &) const override;
39  void changeVarInverse(const StateQG &, StateQG &) const override;
40 
41  private:
42  void print(std::ostream &) const override;
43 };
44 // -----------------------------------------------------------------------------
45 
46 } // namespace qg
47 #endif // QG_MODEL_CHANGEVARQG_H_
Base class for MODEL-specific implementations of VariableChange class. The complete interface that ne...
QG change of variable.
Definition: ChangeVarQG.h:30
void changeVarInverse(const StateQG &, StateQG &) const override
Definition: ChangeVarQG.cc:28
void print(std::ostream &) const override
Print, used for logging.
Definition: ChangeVarQG.cc:32
void changeVar(const StateQG &, StateQG &) const override
Perform transforms.
Definition: ChangeVarQG.cc:24
ChangeVarQG(const GeometryQG &, const eckit::Configuration &)
Definition: ChangeVarQG.cc:20
static const std::string classname()
Definition: ChangeVarQG.h:32
GeometryQG handles geometry for QG model.
Definition: GeometryQG.h:58
QG model state.
Definition: StateQG.h:42
Definition: FieldL95.h:22
The namespace for the qg model.