11 #ifndef OOPS_ASSIMILATION_RINVHMATRIX_H_
12 #define OOPS_ASSIMILATION_RINVHMATRIX_H_
16 #include <boost/noncopyable.hpp>
17 #include <boost/shared_ptr.hpp>
24 #include "oops/util/formats.h"
25 #include "oops/util/Logger.h"
26 #include "oops/util/PrintAdjTest.h"
38 template<
typename MODEL,
typename OBS>
class RinvHMatrix :
private boost::noncopyable {
54 template<
typename MODEL,
typename OBS>
61 template<
typename MODEL,
typename OBS>
65 for (
unsigned jj = 0; jj < j_.nterms(); ++jj) {
66 j_.jterm(jj).setPostProcTL(dx, costtl);
71 j_.runTLM(mdx, costtl);
74 for (
unsigned jj = 0; jj < j_.nterms(); ++jj) {
75 std::unique_ptr<GeneralizedDepartures> wtmp(j_.jterm(jj).newDualVector());
76 j_.jterm(jj).computeCostTL(dx, *wtmp);
77 zz.
append(j_.jterm(jj).multiplyCoInv(*wtmp));
Container of dual space vectors for all terms of the cost function.
void append(std::unique_ptr< GeneralizedDepartures > &&)
Control model post processing.
RinvHMatrix(const CostFct_ &j)
void multiply(const CtrlInc_ &dx, Dual_ &zz) const
CostFunction< MODEL, OBS > CostFct_
DualVector< MODEL, OBS > Dual_
ControlIncrement< MODEL, OBS > CtrlInc_
The namespace for the main oops code.