OOPS
qg/model/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 QG_MODEL_OBSBIASPARAMETERS_H_
9 #define QG_MODEL_OBSBIASPARAMETERS_H_
10 
11 #include "oops/util/parameters/OptionalParameter.h"
12 #include "oops/util/parameters/Parameters.h"
13 
14 namespace qg {
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> stream{"stream", this};
25  oops::OptionalParameter<double> uwind{"uwind", this};
26  oops::OptionalParameter<double> vwind{"vwind", this};
27  oops::OptionalParameter<double> wspeed{"wspeed", this};
28 };
29 
30 // -----------------------------------------------------------------------------
31 
32 class ObsBiasParameters : public oops::Parameters {
33  OOPS_CONCRETE_PARAMETERS(ObsBiasParameters, Parameters)
34 
35  public:
36  oops::OptionalParameter<double> stream{"stream", this};
37  oops::OptionalParameter<double> uwind{"uwind", this};
38  oops::OptionalParameter<double> vwind{"vwind", this};
39  oops::OptionalParameter<double> wspeed{"wspeed", this};
40  oops::OptionalParameter<ObsBiasCovarianceParameters> covariance{"covariance", this};
41 };
42 
43 // -----------------------------------------------------------------------------
44 
45 } // namespace qg
46 
47 #endif // QG_MODEL_OBSBIASPARAMETERS_H_
Parameters taken by the ObsBias, ObsBiasCorrection and ObsBiasCovariance classes.
oops::OptionalParameter< double > wspeed
oops::OptionalParameter< double > uwind
oops::OptionalParameter< double > stream
oops::OptionalParameter< double > vwind
oops::OptionalParameter< double > wspeed
oops::OptionalParameter< double > uwind
oops::OptionalParameter< double > stream
oops::OptionalParameter< double > vwind
oops::OptionalParameter< ObsBiasCovarianceParameters > covariance
The namespace for the qg model.