11 #ifndef OOPS_INTERFACE_LINEAROBSOPERATOR_H_
12 #define OOPS_INTERFACE_LINEAROBSOPERATOR_H_
17 #include <boost/noncopyable.hpp>
25 #include "oops/util/Logger.h"
26 #include "oops/util/ObjectCounter.h"
27 #include "oops/util/Printable.h"
28 #include "oops/util/Timer.h"
41 template <
typename OBS>
43 private boost::noncopyable,
44 private util::ObjectCounter<LinearObsOperator<OBS> > {
56 static const std::string
classname() {
return "oops::LinearObsOperator";}
99 void print(std::ostream &)
const;
102 std::unique_ptr<LinearObsOper_>
oper_;
107 template <
typename OBS>
110 Log::trace() <<
"LinearObsOperator<OBS>::LinearObsOperator starting" << std::endl;
111 util::Timer timer(
classname(),
"LinearObsOperator");
113 Log::trace() <<
"LinearObsOperator<OBS>::LinearObsOperator done" << std::endl;
118 template <
typename OBS>
120 Log::trace() <<
"LinearObsOperator<OBS>::~LinearObsOperator starting" << std::endl;
121 util::Timer timer(classname(),
"~LinearObsOperator");
123 Log::trace() <<
"LinearObsOperator<OBS>::~LinearObsOperator done" << std::endl;
128 template <
typename OBS>
130 Log::trace() <<
"LinearObsOperator<OBS>::setTrajectory starting" << std::endl;
131 util::Timer timer(classname(),
"setTrajectory");
133 Log::trace() <<
"LinearObsOperator<OBS>::setTrajectory done" << std::endl;
138 template <
typename OBS>
141 Log::trace() <<
"LinearObsOperator<OBS>::simulateObsTL starting" << std::endl;
142 util::Timer timer(classname(),
"simulateObsTL");
144 Log::trace() <<
"LinearObsOperator<OBS>::simulateObsTL done" << std::endl;
149 template <
typename OBS>
152 Log::trace() <<
"LinearObsOperator<OBS>::simulateObsAD starting" << std::endl;
153 util::Timer timer(classname(),
"simulateObsAD");
155 Log::trace() <<
"LinearObsOperator<OBS>::simulateObsAD done" << std::endl;
160 template <
typename OBS>
162 Log::trace() <<
"LinearObsOperator<OBS>::requiredVars starting" << std::endl;
163 util::Timer timer(classname(),
"requiredVars");
164 return oper_->requiredVars();
169 template<
typename OBS>
171 Log::trace() <<
"LinearObsOperator<OBS>::print starting" << std::endl;
172 util::Timer timer(classname(),
"print");
174 Log::trace() <<
"LinearObsOperator<OBS>::print done" << std::endl;
const GeoVaLs_ & geovals() const
Interfacing.
MODEL-agnostic part of tangent-linear and adjoint of the nonlinear observation (forward) operator Obs...
LinearObsOper_::Parameters_ Parameters_
A subclass of oops::Parameters holding the configuration settings of the operator.
void simulateObsAD(GeoVaLs_ &dx, const ObsVector_ &dy, ObsAuxIncrement_ &dobsaux) const
ObsVector< OBS > ObsVector_
OBS::LinearObsOperator LinearObsOper_
void print(std::ostream &) const
Print, used for logging.
std::unique_ptr< LinearObsOper_ > oper_
Pointer to the implementation of LinearObsOperator.
const Variables & requiredVars() const
ObsAuxIncrement< OBS > ObsAuxIncrement_
ObsAuxControl< OBS > ObsAuxControl_
void setTrajectory(const GeoVaLs_ &x0, const ObsAuxControl_ &obsaux)
static const std::string classname()
ObsSpace< OBS > ObsSpace_
LinearObsOperator(const ObsSpace_ &obsspace, const Parameters_ ¶meters)
void simulateObsTL(const GeoVaLs_ &dx, ObsVector_ &dy, const ObsAuxIncrement_ &dobsaux) const
Auxiliary state related to observations, templated on <OBS>
const ObsAuxControl_ & obsauxcontrol() const
const Accessor
Auxiliary increment related to observations, templated on <OBS>
const ObsAuxIncrement_ & obsauxincrement() const
const Accessor
ObsSpace_ & obsspace() const
Interfacing.
ObsVector class used in oops; subclass of interface class interface::ObsVector.
ObsVector_ & obsvector()
Accessor.
The namespace for the main oops code.