OOPS
ModelSpaceCovarianceParametersBase.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_MODELSPACECOVARIANCEPARAMETERSBASE_H_
9 #define OOPS_BASE_MODELSPACECOVARIANCEPARAMETERSBASE_H_
10 
11 #include <string>
12 #include <vector>
13 
14 #include "eckit/config/LocalConfiguration.h"
16 #include "oops/util/parameters/OptionalParameter.h"
17 #include "oops/util/parameters/Parameter.h"
18 #include "oops/util/parameters/Parameters.h"
19 
20 namespace oops {
21 
22 /// \brief Base class for classes storing parameters of a particular model-space error covariance
23 /// implementation.
24 template <typename MODEL>
25 class ModelSpaceCovarianceParametersBase : public Parameters {
26  OOPS_ABSTRACT_PARAMETERS(ModelSpaceCovarianceParametersBase, Parameters)
27  public:
28  /// \brief Covariance model name.
29  ///
30  /// \note This parameter is marked as optional because it is only required in certain
31  /// circumstances (e.g. when covariance model parameters are deserialized into a
32  /// ModelSpaceCovarianceParametersWrapper and used by CovarianceFactory to instantiate
33  /// a covariance model whose type is determined at runtime), but not others (e.g. in tests
34  /// written with a particular model in mind). ModelSpaceCovarianceParametersWrapper will throw an
35  /// exception if this parameter is not provided.
36  OptionalParameter<std::string> covarianceModel{"covariance model", this};
37 
38  Parameter<std::vector<LinearVariableChangeParametersWrapper<MODEL>>> variableChanges{
39  "variable changes", {}, this};
40  Parameter<size_t> randomizationSize{"randomization size", 50, this};
41  Parameter<bool> fullInverse{"full inverse", false, this};
42  Parameter<int> fullInverseIterations{"full inverse iterations", 10, this};
43  Parameter<double> fullInverseAccuracy{"full inverse accuracy", 1.0e-3, this};
44 };
45 
46 } // namespace oops
47 
48 #endif // OOPS_BASE_MODELSPACECOVARIANCEPARAMETERSBASE_H_
Base class for classes storing parameters of a particular model-space error covariance implementation...
Parameter< std::vector< LinearVariableChangeParametersWrapper< MODEL > > > variableChanges
OptionalParameter< std::string > covarianceModel
Covariance model name.
The namespace for the main oops code.