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"
27 oops::RequiredParameter<std::string>
name {
"name",
this};
29 oops::RequiredParameter<std::string>
source {
"source",
this};
32 oops::OptionalParameter<std::string>
unit {
"unit",
this};
40 oops::RequiredParameter<std::string>
outputName {
"output name",
this};
44 "output variable data type",
"string",
this};
46 oops::RequiredParameter<std::vector<std::string>>
inputNames {
"input names",
this};
48 oops::Parameter<std::string>
mergeMethod {
"merge method",
"concat",
this};
55 oops::OptionalParameter<std::vector<VariableParameters>>
variables {
"variables",
this};
56 oops::OptionalParameter<std::vector<ComplementaryVariablesParameters>>
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::Parameter< std::string > outputVariableDataType
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