11 #ifndef OOPS_INTERFACE_MODELAUXCOVARIANCE_H_
12 #define OOPS_INTERFACE_MODELAUXCOVARIANCE_H_
18 #include <boost/noncopyable.hpp>
20 #include "eckit/config/Configuration.h"
24 #include "oops/util/Logger.h"
25 #include "oops/util/ObjectCounter.h"
26 #include "oops/util/Printable.h"
27 #include "oops/util/Timer.h"
37 template <
typename MODEL>
39 private boost::noncopyable,
40 private util::ObjectCounter<ModelAuxCovariance<MODEL> > {
47 static const std::string
classname() {
return "oops::ModelAuxCovariance";}
64 const eckit::Configuration &
config()
const {
return cov_->config();}
67 void print(std::ostream &)
const;
68 std::unique_ptr<ModelAuxCovariance_>
cov_;
73 template<
typename MODEL>
77 Log::trace() <<
"ModelAuxCovariance<MODEL>::ModelAuxCovariance starting" << std::endl;
78 util::Timer timer(
classname(),
"ModelAuxCovariance");
80 Log::trace() <<
"ModelAuxCovariance<MODEL>::ModelAuxCovariance done" << std::endl;
85 template<
typename MODEL>
87 Log::trace() <<
"ModelAuxCovariance<MODEL>::~ModelAuxCovariance starting" << std::endl;
88 util::Timer timer(classname(),
"~ModelAuxCovariance");
90 Log::trace() <<
"ModelAuxCovariance<MODEL>::~ModelAuxCovariance done" << std::endl;
95 template<
typename MODEL>
97 Log::trace() <<
"ModelAuxCovariance<MODEL>::linearize starting" << std::endl;
98 util::Timer timer(classname(),
"linearize");
100 Log::trace() <<
"ModelAuxCovariance<MODEL>::linearize done" << std::endl;
105 template<
typename MODEL>
108 Log::trace() <<
"ModelAuxCovariance<MODEL>::multiply starting" << std::endl;
109 util::Timer timer(classname(),
"multiply");
111 Log::trace() <<
"ModelAuxCovariance<MODEL>::multiply done" << std::endl;
116 template<
typename MODEL>
119 Log::trace() <<
"ModelAuxCovariance<MODEL>::inverseMultiply starting" << std::endl;
120 util::Timer timer(classname(),
"inverseMultiply");
122 Log::trace() <<
"ModelAuxCovariance<MODEL>::inverseMultiply done" << std::endl;
127 template<
typename MODEL>
129 Log::trace() <<
"ModelAuxCovariance<MODEL>::randomize starting" << std::endl;
130 util::Timer timer(classname(),
"randomize");
132 Log::trace() <<
"ModelAuxCovariance<MODEL>::randomize done" << std::endl;
137 template<
typename MODEL>
139 Log::trace() <<
"ModelAuxCovariance<MODEL>::print starting" << std::endl;
140 util::Timer timer(classname(),
"print");
142 Log::trace() <<
"ModelAuxCovariance<MODEL>::print done" << std::endl;
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.
const ModelAuxControl_ & modelauxcontrol() const
const Accessor
Auxiliary Error Covariance related to model, not used at the moment.
ModelAuxCovariance(const eckit::Configuration &conf, const Geometry_ &resol)
Constructor for specified conf and resol.
void print(std::ostream &) const
void multiply(const ModelAuxIncrement_ &, ModelAuxIncrement_ &) const
Sets the second parameter to the first multiplied by the covariance matrix.
std::unique_ptr< ModelAuxCovariance_ > cov_
void linearize(const ModelAuxControl_ &, const Geometry_ &)
linearize operator
ModelAuxIncrement< MODEL > ModelAuxIncrement_
Geometry< MODEL > Geometry_
void randomize(ModelAuxIncrement_ &) const
randomize the values in the ModelAuxIncrement
static const std::string classname()
MODEL::ModelAuxCovariance ModelAuxCovariance_
~ModelAuxCovariance()
Destructor (defined explicitly for timing and tracing)
ModelAuxControl< MODEL > ModelAuxControl_
void inverseMultiply(const ModelAuxIncrement_ &, ModelAuxIncrement_ &) const
Sets the second parameter to the first multiplied by the inverse covariance matrix.
const eckit::Configuration & config() const
Accessor to the configuration associated with the ModelAuxIncrement.
Auxiliary Increment related to model, not used at the moment.
const ModelAuxIncrement_ & modelauxincrement() const
const Accessor
const Geometry_ & geometry() const
The namespace for the main oops code.