OOPS
l95/src/lorenz95/ObsBias.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 "lorenz95/ObsBias.h"
12 
13 #include <iostream>
14 #include <string>
15 #include <vector>
16 
17 #include "eckit/config/Configuration.h"
19 #include "oops/util/Logger.h"
20 
21 // -----------------------------------------------------------------------------
22 namespace lorenz95 {
23 // -----------------------------------------------------------------------------
24 ObsBias::ObsBias(const ObsTable &, const Parameters_ & params)
25  : bias_(0.0), active_(false), geovars_(std::vector<std::string>{"x"}), hdiags_()
26 {
27  oops::Log::trace() << "ObsBias::ObsBias conf is:" << params << std::endl;
28  if (params.bias.value() != boost::none) {
29  bias_ = *params.bias.value();
30  active_ = true;
31  oops::Log::info() << "ObsBias::ObsBias created, bias = " << bias_ << std::endl;
32  }
33 }
34 // -----------------------------------------------------------------------------
35 ObsBias::ObsBias(const ObsBias & other, const bool copy)
36  : bias_(0.0), active_(other.active_),
37  geovars_(other.geovars_), hdiags_(other.hdiags_) {
38  if (active_ && copy) bias_ = other.bias_;
39 }
40 // -----------------------------------------------------------------------------
42  if (active_) bias_ += dx.value();
43  return *this;
44 }
45 // -----------------------------------------------------------------------------
47  if (active_) bias_ = rhs.bias_;
48  return *this;
49 }
50 // -----------------------------------------------------------------------------
51 void ObsBias::print(std::ostream & os) const {
52  if (active_) {os << "ObsBias = " << bias_;}
53 }
54 // -----------------------------------------------------------------------------
55 } // namespace lorenz95
Class to handle observation bias parameters.
ObsBias & operator+=(const ObsBiasCorrection &)
ObsBias(const ObsTable &, const Parameters_ &)
ObsBias & operator=(const ObsBias &)
void print(std::ostream &) const
A Simple Observation Data Handler.
Definition: ObsTable.h:67
The namespace for the L95 model.