UFO
ObsLocSOARParameters.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2021-2021 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 UFO_OBSLOCALIZATION_OBSLOCSOARPARAMETERS_H_
9 #define UFO_OBSLOCALIZATION_OBSLOCSOARPARAMETERS_H_
10 
11 #include "oops/util/parameters/Parameters.h"
12 #include "oops/util/parameters/RequiredParameter.h"
13 
15 
16 namespace ufo {
17 
18 /// \brief Options controlling SOAR obs localization. Inherits
19 /// options from general horizontal obs localization.
21  OOPS_CONCRETE_PARAMETERS(ObsLocSOARParameters, ObsLocParameters)
22 
23  public:
24  /// The SOAR function decay parameter
25  oops::RequiredParameter<double> SOARexpDecayH{"soar horizontal decay", this};
26 };
27 
28 } // namespace ufo
29 
30 #endif // UFO_OBSLOCALIZATION_OBSLOCSOARPARAMETERS_H_
Options controlling local observations subsetting.
Options controlling SOAR obs localization. Inherits options from general horizontal obs localization.
oops::RequiredParameter< double > SOARexpDecayH
The SOAR function decay parameter.
Definition: RunCRTM.h:27