OOPS
VariableChangeParametersBase.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 Met Office UK
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_VARIABLECHANGEPARAMETERSBASE_H_
9 #define OOPS_BASE_VARIABLECHANGEPARAMETERSBASE_H_
10 
11 #include <string>
12 
14 #include "oops/base/Variables.h"
15 #include "oops/util/parameters/OptionalParameter.h"
16 #include "oops/util/parameters/Parameter.h"
17 #include "oops/util/parameters/Parameters.h"
18 
19 namespace oops {
20 
21 /// \brief Base class of classes storing parameters controlling specific variable changes.
22 class VariableChangeParametersBase : public Parameters {
23  OOPS_ABSTRACT_PARAMETERS(VariableChangeParametersBase, Parameters)
24  public:
25  /// \brief Variable change type.
26  Parameter<std::string> variableChange{"variable change", "Identity", this};
27 
28  OptionalParameter<Variables> inputVariables{"input variables", this};
29  OptionalParameter<Variables> outputVariables{"output variables", this};
30 };
31 
32 } // namespace oops
33 
34 #endif // OOPS_BASE_VARIABLECHANGEPARAMETERSBASE_H_
Base class of classes storing parameters controlling specific variable changes.
OptionalParameter< Variables > inputVariables
Parameter< std::string > variableChange
Variable change type.
OptionalParameter< Variables > outputVariables
The namespace for the main oops code.