IODA
ObsIoParametersBase.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2019 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 #ifndef IO_OBSIOPARAMETERSBASE_H_
9 #define IO_OBSIOPARAMETERSBASE_H_
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 
18 namespace ioda {
19 
20 constexpr int DEFAULT_FRAME_SIZE = 10000;
21 
22 /// \brief Options controlling the manner in which observations are grouped into records.
23 class ObsGroupingParameters : public oops::Parameters {
24  OOPS_CONCRETE_PARAMETERS(ObsGroupingParameters, Parameters)
25 
26  public:
27  /// variable of which to base obs record grouping
28  oops::Parameter<std::vector<std::string>> obsGroupVars{"group variables", {}, this};
29 
30  /// variable of which to base obs record sorting
31  oops::Parameter<std::string> obsSortVar{"sort variable", "", this};
32 
33  /// direction for sort
34  oops::Parameter<std::string> obsSortOrder{"sort order", "ascending", this};
35 };
36 
37 /// \brief Base of classes storing the configuration parameters of ObsIo subclasses.
38 class ObsIoParametersBase : public oops::Parameters {
39  OOPS_ABSTRACT_PARAMETERS(ObsIoParametersBase, Parameters)
40 
41  public:
42  /// \brief Identifies the ObsIo subclass to use.
43  ///
44  /// \note This parameter is marked as optional because it is only required in certain
45  /// circumstances (e.g. when ObsIo parameters are deserialized into an ObsIoParametersWrapper
46  /// and used by ObsIoFactory to instantiate an ObsIo implementation whose type is determined at
47  /// runtime), but not others (e.g. in tests written with a particular ObsIo subclass in mind).
48  /// ObsIoParametersWrapper will throw an exception if this parameter is not provided.
49  oops::OptionalParameter<std::string> type{"type", this};
50 
51  /// options controlling obs record grouping
52  oops::Parameter<ObsGroupingParameters> obsGrouping{"obsgrouping", {}, this};
53 
54  /// maximum frame size
55  oops::Parameter<int> maxFrameSize{"max frame size", DEFAULT_FRAME_SIZE, this};
56 };
57 
58 } // namespace ioda
59 
60 #endif // IO_OBSIOPARAMETERSBASE_H_
Options controlling the manner in which observations are grouped into records.
oops::Parameter< std::vector< std::string > > obsGroupVars
variable of which to base obs record grouping
oops::Parameter< std::string > obsSortVar
variable of which to base obs record sorting
oops::Parameter< std::string > obsSortOrder
direction for sort
Base of classes storing the configuration parameters of ObsIo subclasses.
oops::Parameter< ObsGroupingParameters > obsGrouping
options controlling obs record grouping
oops::Parameter< int > maxFrameSize
maximum frame size
oops::OptionalParameter< std::string > type
Identifies the ObsIo subclass to use.
constexpr int DEFAULT_FRAME_SIZE