OOPS
l95/src/lorenz95/FinalCheck.h
Go to the documentation of this file.
1 /*
2  * (C) Crown Copyright 2021, Met Office
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_FINALCHECK_H_
9 #define LORENZ95_FINALCHECK_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"
20 
21 namespace lorenz95 {
22  class GomL95;
23  template <typename DATATYPE> class ObsData1D;
24  class ObsTable;
25  class ObsDiags1D;
26  class ObsVec1D;
27 
28 // Nothing to do here for the Lorenz model
29 
30 class FinalCheck : public oops::interface::ObsFilterBase<L95ObsTraits> {
31  public:
32  FinalCheck(const ObsTable &, const eckit::Configuration &,
33  std::shared_ptr<ObsData1D<int> >, std::shared_ptr<ObsData1D<float> >): novars_() {}
34 
35  void preProcess() override {}
36  void priorFilter(const GomL95 &) override {}
37  void postFilter(const ObsVec1D &, const ObsVec1D &, const ObsDiags1D &) 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 lorenz95
48 
49 #endif // LORENZ95_FINALCHECK_H_
void priorFilter(const GomL95 &) override
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
oops::Variables requiredHdiagnostics() const override
Return the list of observation diagnostics required by this filter.
FinalCheck(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.
const oops::Variables novars_
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 for OBS-specific implementations of the ObsFilter interface. interface::ObsFilterBase over...
The namespace for the L95 model.