OOPS
BackgroundCheck.cc
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 
9 
10 #include <vector>
11 
12 #include "lorenz95/L95Traits.h"
13 
14 // -----------------------------------------------------------------------------
15 namespace lorenz95 {
16 // -----------------------------------------------------------------------------
18  "Background Check");
19 
20 // -----------------------------------------------------------------------------
21 BackgroundCheck::BackgroundCheck(const ObsTable & obsdb, const Parameters_ & parameters,
22  std::shared_ptr<ObsData1D<int> > qcflags, std::shared_ptr<ObsData1D<float> > obserr)
23  : obsdb_(obsdb), options_(parameters), qcflags_(qcflags), obserr_(obserr), novars_()
24 {
25 }
26 
27 // -----------------------------------------------------------------------------
28 void BackgroundCheck::postFilter(const ObsVec1D & hofx, const ObsVec1D &, const ObsDiags1D &) {
29  std::vector<float> yobs;
30  obsdb_.getdb("ObsValue", yobs);
31  size_t inflate = 0;
32  size_t ireject = 0;
33  for (size_t jj = 0; jj < yobs.size(); ++jj) {
34  if (std::abs(yobs[jj] - hofx[jj]) > options_.threshold) {
35  // inflate obs error variance
36  if (options_.inflation.value() != boost::none) {
37  (*obserr_)[jj] *= *options_.inflation.value();
38  ++inflate;
39  // or reject observation
40  } else {
41  (*qcflags_)[jj] = 1;
42  ++ireject;
43  }
44  }
45  }
46  oops::Log::info() << "BackgroundCheck::postFilter rejected = " << ireject
47  << ", inflated = " << inflate << std::endl;
48 }
49 
50 // -----------------------------------------------------------------------------
51 void BackgroundCheck::print(std::ostream & os) const {
52  os << "L95 Background check with absolute threshold " << options_.threshold;
53 }
54 
55 } // namespace lorenz95
56 
void print(std::ostream &os) const override
BackgroundCheck(const ObsTable &, const Parameters_ &, std::shared_ptr< ObsData1D< int > >, std::shared_ptr< ObsData1D< float > >)
void postFilter(const ObsVec1D &, const ObsVec1D &, const ObsDiags1D &) override
oops::RequiredParameter< double > threshold
threshold for background check
oops::OptionalParameter< double > inflation
Data in observation space.
Definition: ObsData1D.h:35
A Simple Observation Data Handler.
Definition: ObsTable.h:67
void getdb(const std::string &, std::vector< int > &) const
Definition: ObsTable.cc:128
Vector in observation space.
Definition: ObsVec1D.h:33
A subclass of FilterFactory able to create instances of T (a concrete subclass of interface::ObsFilte...
The namespace for the L95 model.
static oops::interface::FilterMaker< L95ObsTraits, BackgroundCheck > makerBackgroundCheck_("Background Check")