MPAS-JEDI
VarChaModel2GeoVars.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-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 #pragma once
9 
10 #include <memory>
11 #include <ostream>
12 #include <string>
13 
14 #include "eckit/config/Configuration.h"
15 
16 #include "oops/base/VariableChangeBase.h"
17 
18 #include "mpasjedi/MPASTraits.h"
20 
21 namespace mpas {
22  class StateMPAS;
23  class GeometryMPAS;
24 
25 // -------------------------------------------------------------------------------------------------
26 
27 class VarChaModel2GeoVars : public oops::VariableChangeBase<MPASTraits>,
28  private util::ObjectCounter<VarChaModel2GeoVars> {
29  public:
30  static const std::string classname() {return "mpas::VarChaModel2GeoVars";}
31  VarChaModel2GeoVars(const GeometryMPAS &, const eckit::Configuration &);
33  void changeVar(const StateMPAS &, StateMPAS &) const override;
34  void changeVarInverse(const StateMPAS &, StateMPAS &) const override;
35 
36  private:
38  std::shared_ptr<const GeometryMPAS> geom_;
39  void print(std::ostream &) const override;
40 };
41 
42 // -------------------------------------------------------------------------------------------------
43 
44 } // namespace mpas
GeometryMPAS handles geometry for MPAS model.
Definition: GeometryMPAS.h:37
MPAS model state.
Definition: StateMPAS.h:51
VarChaModel2GeoVars(const GeometryMPAS &, const eckit::Configuration &)
void changeVar(const StateMPAS &, StateMPAS &) const override
void changeVarInverse(const StateMPAS &, StateMPAS &) const override
static const std::string classname()
std::shared_ptr< const GeometryMPAS > geom_
void print(std::ostream &) const override