11 #ifndef OOPS_ASSIMILATION_CONTROLVARIABLE_H_
12 #define OOPS_ASSIMILATION_CONTROLVARIABLE_H_
18 #include "eckit/config/Configuration.h"
25 #include "oops/util/ObjectCounter.h"
26 #include "oops/util/Printable.h"
41 template<
typename MODEL,
typename OBS>
class ControlVariable;
44 template<
typename MODEL,
typename OBS>
46 private util::ObjectCounter<ControlVariable<MODEL, OBS> > {
54 static const std::string
classname() {
return "oops::ControlVariable";}
62 void read(
const eckit::Configuration &);
63 void write(
const eckit::Configuration &)
const;
80 void print(std::ostream &)
const;
89 template<
typename MODEL,
typename OBS>
92 : state_(resol,
eckit::LocalConfiguration(conf,
"background")),
93 modbias_(resol, conf.getSubConfiguration(
"model aux control")),
94 obsbias_(odb, conf.getSubConfiguration(
"observations"))
96 Log::trace() <<
"ControlVariable contructed" << std::endl;
101 template<
typename MODEL,
typename OBS>
103 : state_(other.state_), modbias_(other.modbias_), obsbias_(other.obsbias_)
105 Log::trace() <<
"ControlVariable copied" << std::endl;
110 template<
typename MODEL,
typename OBS>
112 Log::trace() <<
"ControlVariable destructed" << std::endl;
117 template<
typename MODEL,
typename OBS>
120 modbias_.read(config);
121 obsbias_.read(config);
126 template<
typename MODEL,
typename OBS>
128 state_.write(config);
129 modbias_.write(config);
130 obsbias_.write(config);
135 template <
typename MODEL,
typename OBS>
137 outs << state_ << std::endl;
138 outs << modbias_ << std::endl;
144 template<
typename MODEL,
typename OBS>
146 double zz = state_.norm();
148 zz = modbias_.norm();
150 zz = obsbias_.norm();
Geometry< MODEL > Geometry_
ObsSpaces< OBS > ObsSpaces_
ObsAuxControls< OBS > ObsAuxCtrls_
void print(std::ostream &) const
const ObsAuxCtrls_ & obsVar() const
ControlVariable(const eckit::Configuration &, const Geometry_ &, const ObsSpaces_ &)
The arguments define the number of sub-windows and the resolution.
ObsAuxCtrls_ & obsVar()
Get augmented observation control variable.
static const std::string classname()
void write(const eckit::Configuration &) const
ModelAuxControl< MODEL > ModelAux_
const ModelAux_ & modVar() const
const State_ & state() const
ModelAux_ & modVar()
Get augmented model control variable.
void read(const eckit::Configuration &)
I/O and diagnostics.
ControlVariable & operator=(const ControlVariable &)
State_ & state()
Get state control variable.
Geometry class used in oops; subclass of interface class interface::Geometry.
Auxiliary state related to model (could be e.g. model bias), not used at the moment.
Holds a vector of ObsAuxControl.
State class used in oops; subclass of interface class interface::State.
The namespace for the main oops code.