OOPS
ObsDiags1D.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 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_OBSDIAGS1D_H_
9 #define LORENZ95_OBSDIAGS1D_H_
10 
11 #include <ostream>
12 #include <string>
13 
14 #include "oops/base/Variables.h"
15 #include "oops/util/Printable.h"
16 
17 #include "lorenz95/ObsTable.h"
18 
19 namespace lorenz95 {
20  class LocsL95;
21 
22 // -----------------------------------------------------------------------------
23 
24 class ObsDiags1D : public util::Printable {
25  public:
26  ObsDiags1D(const ObsTable &, const LocsL95 &, const oops::Variables &) {}
28 
29 // I/O
30  void save(const std::string &) const {}
31 
32  private:
33  void print(std::ostream &) const {}
34 };
35 //// -----------------------------------------------------------------------------
36 
37 } // namespace lorenz95
38 
39 #endif // LORENZ95_OBSDIAGS1D_H_
LocsL95 class to handle locations for L95 model.
Definition: LocsL95.h:32
void save(const std::string &) const
Definition: ObsDiags1D.h:30
void print(std::ostream &) const
Definition: ObsDiags1D.h:33
ObsDiags1D(const ObsTable &, const LocsL95 &, const oops::Variables &)
Definition: ObsDiags1D.h:26
A Simple Observation Data Handler.
Definition: ObsTable.h:67
The namespace for the L95 model.