OOPS
l95/src/lorenz95/QCmanager.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2018 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_QCMANAGER_H_
9 #define LORENZ95_QCMANAGER_H_
10 
11 #include <memory>
12 #include <ostream>
13 
14 #include "eckit/config/LocalConfiguration.h"
15 
16 #include "lorenz95/L95Traits.h"
17 
18 #include "oops/base/Variables.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 // Nothing to do here for the Lorenz model
30 
31 class QCmanager : public oops::interface::ObsFilterBase<L95ObsTraits> {
32  public:
33  QCmanager(const ObsTable &, const eckit::Configuration &,
34  std::shared_ptr<ObsData1D<int> >, std::shared_ptr<ObsData1D<float> >): novars_() {}
36 
37  void preProcess() override {}
38  void priorFilter(const GomL95 &) override {}
39  void postFilter(const ObsVec1D &, const ObsVec1D &, const ObsDiags1D &) override {}
40 
41  oops::Variables requiredVars() const override {return novars_;}
42  oops::Variables requiredHdiagnostics() const override {return novars_;}
43 
44  private:
45  void print(std::ostream &) const override {}
47 };
48 
49 } // namespace lorenz95
50 
51 #endif // LORENZ95_QCMANAGER_H_
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
void preProcess() override
Perform any observation processing steps that do not require access to GeoVaLs or outputs produced by...
const oops::Variables novars_
void print(std::ostream &) const override
void priorFilter(const GomL95 &) override
oops::Variables requiredHdiagnostics() const override
Return the list of observation diagnostics required by this filter.
QCmanager(const ObsTable &, const eckit::Configuration &, std::shared_ptr< ObsData1D< int > >, std::shared_ptr< ObsData1D< float > >)
void postFilter(const ObsVec1D &, const ObsVec1D &, const ObsDiags1D &) override
oops::Variables requiredVars() const override
Return the list of GeoVaLs required by this filter.
Base class for OBS-specific implementations of the ObsFilter interface. interface::ObsFilterBase over...
The namespace for the L95 model.