OOPS
BackgroundCheck.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020-2020 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 LORENZ95_BACKGROUNDCHECK_H_
9 #define LORENZ95_BACKGROUNDCHECK_H_
10 
11 #include <memory>
12 #include <ostream>
13 
14 #include "lorenz95/L95Traits.h"
15 
16 #include "oops/base/Variables.h"
19 #include "oops/util/parameters/OptionalParameter.h"
20 #include "oops/util/parameters/RequiredParameter.h"
21 
22 namespace lorenz95 {
23  class GomL95;
24  template <typename DATATYPE> class ObsData1D;
25  class ObsTable;
26  class ObsDiags1D;
27  class ObsVec1D;
28 
29 /// Parameters for L95 BackgroundCheck
30 /// background check: all obs for which {|y-H(x)| < threshold} pass QC
32  OOPS_CONCRETE_PARAMETERS(BackgroundCheckParameters, ObsFilterParametersBase)
33 
34  public:
35  /// threshold for background check
36  oops::RequiredParameter<double> threshold{"threshold", this};
37 
38  /// optional inflation factor: if this parameter is present, obs error stddev
39  /// for obs that don't pass the check is multiplied by the specified factor.
40  /// Otherwise, obs that don't pass the check are rejected.
41  oops::OptionalParameter<double> inflation{"inflate obs error", this};
42 };
43 
44 /// Simple background check: all obs for which {|y-H(x)| < threshold} pass QC
45 class BackgroundCheck : public oops::interface::ObsFilterBase<L95ObsTraits> {
46  public:
48 
49  BackgroundCheck(const ObsTable &, const Parameters_ &,
50  std::shared_ptr<ObsData1D<int> >, std::shared_ptr<ObsData1D<float> >);
51 
52  void preProcess() override {}
53  void priorFilter(const GomL95 &) override {}
54  void postFilter(const ObsVec1D &, const ObsVec1D &, const ObsDiags1D &) override;
55 
56  oops::Variables requiredVars() const override {return novars_;}
57  oops::Variables requiredHdiagnostics() const override {return novars_;}
58 
59  private:
60  void print(std::ostream & os) const override;
61 
62  const ObsTable & obsdb_;
64  std::shared_ptr<ObsData1D<int> > qcflags_; // QC flags
65  std::shared_ptr<ObsData1D<float> > obserr_; // obs error stddev
67 };
68 
69 } // namespace lorenz95
70 
71 #endif // LORENZ95_BACKGROUNDCHECK_H_
Simple background check: all obs for which {|y-H(x)| < threshold} pass QC.
const oops::Variables novars_
BackgroundCheckParameters Parameters_
std::shared_ptr< ObsData1D< int > > qcflags_
std::shared_ptr< ObsData1D< float > > obserr_
void priorFilter(const GomL95 &) override
void print(std::ostream &os) const override
void preProcess() override
Perform any observation processing steps that do not require access to GeoVaLs or outputs produced by...
BackgroundCheck(const ObsTable &, const Parameters_ &, std::shared_ptr< ObsData1D< int > >, std::shared_ptr< ObsData1D< float > >)
oops::Variables requiredVars() const override
Return the list of GeoVaLs required by this filter.
oops::Variables requiredHdiagnostics() const override
Return the list of observation diagnostics required by this filter.
void postFilter(const ObsVec1D &, const ObsVec1D &, const ObsDiags1D &) override
oops::RequiredParameter< double > threshold
threshold for background check
oops::OptionalParameter< double > inflation
GomL95 class to handle locations for L95 model.
Definition: GomL95.h:33
Data in observation space.
Definition: ObsData1D.h:35
A Simple Observation Data Handler.
Definition: ObsTable.h:67
Vector in observation space.
Definition: ObsVec1D.h:33
Base class of classes storing parameters controlling specific observation filters.
Base class for OBS-specific implementations of the ObsFilter interface. interface::ObsFilterBase over...
The namespace for the L95 model.