OOPS
l95/src/lorenz95/ObsBiasParameters.h
Go to the documentation of this file.
1 /*
2  * (C) Crown copyright 2021, Met Office.
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 LORENZ95_OBSBIASPARAMETERS_H_
9 #define LORENZ95_OBSBIASPARAMETERS_H_
10 
11 #include "oops/util/parameters/OptionalParameter.h"
12 #include "oops/util/parameters/Parameters.h"
13 
14 namespace lorenz95 {
15 
16 /// Parameters taken by the ObsBias, ObsBiasCorrection and ObsBiasCovariance classes.
17 
18 // -----------------------------------------------------------------------------
19 
20 class ObsBiasCovarianceParameters : public oops::Parameters {
21  OOPS_CONCRETE_PARAMETERS(ObsBiasCovarianceParameters, Parameters)
22 
23  public:
24  oops::OptionalParameter<double> standardDeviation{"standard_deviation", this};
25 };
26 
27 // -----------------------------------------------------------------------------
28 
29 class ObsBiasParameters : public oops::Parameters {
30  OOPS_CONCRETE_PARAMETERS(ObsBiasParameters, Parameters)
31 
32  public:
33  oops::OptionalParameter<double> bias{"bias", this};
34  oops::OptionalParameter<ObsBiasCovarianceParameters> covariance{"covariance", this};
35 };
36 
37 // -----------------------------------------------------------------------------
38 
39 } // namespace lorenz95
40 
41 #endif // LORENZ95_OBSBIASPARAMETERS_H_
Parameters taken by the ObsBias, ObsBiasCorrection and ObsBiasCovariance classes.
oops::OptionalParameter< double > bias
oops::OptionalParameter< ObsBiasCovarianceParameters > covariance
The namespace for the L95 model.