OOPS
qg/model/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 QG_MODEL_QCMANAGER_H_
9 #define QG_MODEL_QCMANAGER_H_
10 
11 #include <memory>
12 #include <ostream>
13 
14 #include "eckit/config/LocalConfiguration.h"
15 
16 #include "model/QgTraits.h"
17 
18 #include "oops/base/Variables.h"
20 #include "oops/util/Printable.h"
21 
22 namespace qg {
23  class GomQG;
24  template <typename DATATYPE> class ObsDataQG;
25  class ObsDiagsQG;
26  class ObsSpaceQG;
27  class ObsVecQG;
28 
29 class QCmanager : public oops::interface::ObsFilterBase<QgObsTraits> {
30  public:
31  QCmanager(const ObsSpaceQG &, const eckit::Configuration &,
32  std::shared_ptr<ObsDataQG<int> >, std::shared_ptr<ObsDataQG<float> >): novars_() {}
34 
35  void preProcess() override {}
36  void priorFilter(const GomQG &) override {}
37  void postFilter(const ObsVecQG &, const ObsVecQG &, const ObsDiagsQG &) override {}
38 
39  oops::Variables requiredVars() const override {return novars_;}
40  oops::Variables requiredHdiagnostics() const override {return novars_;}
41 
42  private:
43  void print(std::ostream &) const override {}
45 };
46 
47 } // namespace qg
48 
49 #endif // QG_MODEL_QCMANAGER_H_
Base class for OBS-specific implementations of the ObsFilter interface. interface::ObsFilterBase over...
GomQG class to handle local model values for QG model.
Definition: GomQG.h:35
Data in observation space.
Definition: ObsDataQG.h:32
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
ObsVecQG class to handle vectors in observation space for QG model.
Definition: ObsVecQG.h:32
void priorFilter(const GomQG &) override
oops::Variables requiredHdiagnostics() const override
Return the list of observation diagnostics required by this filter.
QCmanager(const ObsSpaceQG &, const eckit::Configuration &, std::shared_ptr< ObsDataQG< int > >, std::shared_ptr< ObsDataQG< float > >)
void preProcess() override
Perform any observation processing steps that do not require access to GeoVaLs or outputs produced by...
void print(std::ostream &) const override
void postFilter(const ObsVecQG &, const ObsVecQG &, const ObsDiagsQG &) override
oops::Variables requiredVars() const override
Return the list of GeoVaLs required by this filter.
const oops::Variables novars_
The namespace for the qg model.