OOPS
LinearVariableChangeParametersBase.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_LINEARVARIABLECHANGEPARAMETERSBASE_H_
9 #define OOPS_BASE_LINEARVARIABLECHANGEPARAMETERSBASE_H_
10 
11 #include <string>
12 
14 #include "oops/base/Variables.h"
15 #include "oops/util/parameters/OptionalParameter.h"
16 #include "oops/util/parameters/Parameters.h"
17 
18 namespace oops {
19 
20 /// \brief Base class of classes storing parameters controlling specific linear variable changes.
21 class LinearVariableChangeParametersBase : public Parameters {
22  OOPS_ABSTRACT_PARAMETERS(LinearVariableChangeParametersBase, Parameters)
23  public:
24  /// \brief Variable change type.
25  ///
26  /// \note This parameter is marked as optional because it is only required in certain
27  /// circumstances (e.g. when variable change parameters are deserialized into a
28  /// LinearVariableChangeParametersWrapper and used by LinearVariableChangeFactory to instantiate
29  /// a tangent linear variable change whose type is determined at runtime), but not others (e.g.
30  /// in tests written with a particular variable change in mind).
31  /// LinearVariableChangeParametersWrapper will throw an exception if this parameter is not
32  /// provided.
33  OptionalParameter<std::string> variableChange{"variable change", this};
34 
35  OptionalParameter<Variables> inputVariables{"input variables", this};
36  OptionalParameter<Variables> outputVariables{"output variables", this};
37 };
38 
39 } // namespace oops
40 
41 #endif // OOPS_BASE_LINEARVARIABLECHANGEPARAMETERSBASE_H_
Base class of classes storing parameters controlling specific linear variable changes.
OptionalParameter< std::string > variableChange
Variable change type.
The namespace for the main oops code.