OOPS
ObsOperatorQG.cc
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 #include "model/ObsOperatorQG.h"
12 
13 #include "eckit/config/Configuration.h"
14 #include "model/GomQG.h"
15 #include "model/LocationsQG.h"
16 #include "model/ObsBias.h"
17 #include "model/ObsDiagsQG.h"
18 #include "model/ObsOpBaseQG.h"
19 #include "model/ObsSpaceQG.h"
20 #include "model/ObsVecQG.h"
21 #include "oops/base/Variables.h"
22 
23 namespace qg {
24 
25 // -----------------------------------------------------------------------------
26 
28  : oper_(ObsOpFactory::create(os, params.config))
29 {}
30 
31 // -----------------------------------------------------------------------------
32 
34 
35 // -----------------------------------------------------------------------------
36 
37 void ObsOperatorQG::simulateObs(const GomQG & gvals, ObsVecQG & yy, const ObsBias & bias,
38  ObsVecQG &, ObsDiagsQG &) const {
39  oper_->simulateObs(gvals, yy, bias);
40 }
41 
42 // -----------------------------------------------------------------------------
43 
45  return oper_->requiredVars();
46 }
47 
48 // -----------------------------------------------------------------------------
49 
50 std::unique_ptr<LocationsQG> ObsOperatorQG::locations() const {
51  return oper_->locations();
52 }
53 
54 // -----------------------------------------------------------------------------
55 
56 void ObsOperatorQG::print(std::ostream & os) const {
57  os << *oper_;
58 }
59 
60 // -----------------------------------------------------------------------------
61 
62 } // namespace qg
GomQG class to handle local model values for QG model.
Definition: GomQG.h:35
Class to handle observation bias parameters.
Obs Operator Factory.
Definition: ObsOpBaseQG.h:53
std::unique_ptr< ObsOpBaseQG > oper_
Definition: ObsOperatorQG.h:53
ObsOperatorQG(const ObsSpaceQG &, const Parameters_ &)
void simulateObs(const GomQG &, ObsVecQG &, const ObsBias &, ObsVecQG &, ObsDiagsQG &) const
Obs Operator.
void print(std::ostream &) const
const oops::Variables & requiredVars() const
Other.
std::unique_ptr< LocationsQG > locations() const
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
ObsVecQG class to handle vectors in observation space for QG model.
Definition: ObsVecQG.h:32
Parameters controlling the observation operator for the QG model.
The namespace for the qg model.