IODA
Layout_ObsGroup_ODB_Params.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2021 Met Office UK
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /// \file Layout_ObsGroup_ODB_Params.h
9 /// \brief Defines all of the information which should be stored in the YAML mapping file.
10 
11 #include <string>
12 #include <vector>
13 
14 #include "oops/util/parameters/OptionalParameter.h"
15 #include "oops/util/parameters/Parameter.h"
16 #include "oops/util/parameters/Parameters.h"
17 #include "oops/util/parameters/RequiredParameter.h"
18 
19 namespace ioda {
20 namespace detail {
21 
22 class VariableParameters : public oops::Parameters {
23 OOPS_CONCRETE_PARAMETERS(VariableParameters, Parameters)
24  public:
25  /// \p name is what the variable should be referred to as in ioda, including the full group
26  /// hierarchy.
27  oops::RequiredParameter<std::string> name {"name", this};
28  /// \p source is the variable's name in the input file
29  oops::RequiredParameter<std::string> source {"source", this};
30  /// \p unit is the variable's unit type, for conversion to SI units. The data values will be
31  /// changed according to the arithmetic conversion function if function is available.
32  oops::OptionalParameter<std::string> unit {"unit", this};
33 };
34 
35 class ComplementaryVariablesParameters : public oops::Parameters {
36 OOPS_CONCRETE_PARAMETERS(ComplementaryVariablesParameters, Parameters)
37  public:
38  /// \p outputName is the variable's name as it should be found in IODA. The full group
39  /// hierarchy should be included.
40  oops::RequiredParameter<std::string> outputName {"output name", this};
41  /// \p outputVariableDataType is the output variable's data type. Strings are currently
42  /// the only supported type.
43  oops::Parameter<std::string> outputVariableDataType {
44  "output variable data type", "string", this};
45  /// \p inputNames are the variable names as they should be found prior to the merge.
46  oops::RequiredParameter<std::vector<std::string>> inputNames {"input names", this};
47  /// \p mergeMethod is the method which should be used to combine the input variables.
48  oops::Parameter<std::string> mergeMethod {"merge method", "concat", this};
49 };
50 
51 class ODBLayoutParameters : public oops::Parameters {
52 OOPS_CONCRETE_PARAMETERS(ODBLayoutParameters, Parameters)
53 
54  public:
55  oops::OptionalParameter<std::vector<VariableParameters>> variables {"variables", this};
56  oops::OptionalParameter<std::vector<ComplementaryVariablesParameters>>
57  complementaryVariables {"complementary variables", this};
58 };
59 
60 } // namespace detail
61 } // namespace ioda
oops::RequiredParameter< std::vector< std::string > > inputNames
inputNames are the variable names as they should be found prior to the merge.
oops::Parameter< std::string > mergeMethod
mergeMethod is the method which should be used to combine the input variables.
oops::RequiredParameter< std::string > outputName
oops::OptionalParameter< std::vector< VariableParameters > > variables
oops::OptionalParameter< std::vector< ComplementaryVariablesParameters > > complementaryVariables
oops::RequiredParameter< std::string > name
oops::RequiredParameter< std::string > source
source is the variable's name in the input file
oops::OptionalParameter< std::string > unit