OOPS
ObservationL95.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
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  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef LORENZ95_OBSERVATIONL95_H_
12 #define LORENZ95_OBSERVATIONL95_H_
13 
14 #include <memory>
15 #include <ostream>
16 #include <string>
17 
18 #include <boost/noncopyable.hpp>
19 
21 #include "lorenz95/ObsTable.h"
22 
23 #include "oops/base/Variables.h"
24 #include "oops/util/ObjectCounter.h"
25 #include "oops/util/Printable.h"
26 
27 // Forward declarations
28 namespace eckit {
29  class Configuration;
30 }
31 
32 namespace lorenz95 {
33  class GomL95;
34  class LocsL95;
35  class ObsBias;
36  class ObsDiags1D;
37  class ObsVec1D;
38 
39 /// Observation for Lorenz 95 model.
40 /*!
41  * ObservationL95 defines ObsOperator for Lorenz 95 model.
42  */
43 
44 // -----------------------------------------------------------------------------
45 
46 class ObservationL95 : public util::Printable,
47  private boost::noncopyable,
48  private util::ObjectCounter<ObservationL95> {
49  public:
51 
52  static const std::string classname() {return "lorenz95::ObservationL95";}
53 
54  ObservationL95(const ObsTable &, const Parameters_ &);
56 
57 // Obs Operators
58  void simulateObs(const GomL95 &, ObsVec1D &, const ObsBias &, ObsVec1D &, ObsDiags1D &) const;
59 
60 // Other
61  const oops::Variables & requiredVars() const {return inputs_;}
62  std::unique_ptr<LocsL95> locations() const;
63 
64  const ObsTable & table() const {return obsdb_;}
65 
66  private:
67  void print(std::ostream &) const;
68  const ObsTable & obsdb_;
70 };
71 
72 // -----------------------------------------------------------------------------
73 
74 } // namespace lorenz95
75 
76 #endif // LORENZ95_OBSERVATIONL95_H_
GomL95 class to handle locations for L95 model.
Definition: GomL95.h:33
Class to handle observation bias parameters.
A Simple Observation Data Handler.
Definition: ObsTable.h:67
Vector in observation space.
Definition: ObsVec1D.h:33
Observation for Lorenz 95 model.
const oops::Variables & requiredVars() const
const ObsTable & obsdb_
void simulateObs(const GomL95 &, ObsVec1D &, const ObsBias &, ObsVec1D &, ObsDiags1D &) const
static const std::string classname()
ObservationL95(const ObsTable &, const Parameters_ &)
void print(std::ostream &) const
std::unique_ptr< LocsL95 > locations() const
const oops::Variables inputs_
ObservationL95Parameters Parameters_
const ObsTable & table() const
(Empty) parameters controlling the observation operator for the Lorenz 95 model.
Definition: FieldL95.h:22
The namespace for the L95 model.