12 #ifndef OOPS_INTERFACE_LOCATIONS_H_
13 #define OOPS_INTERFACE_LOCATIONS_H_
19 #include "eckit/mpi/Comm.h"
21 #include "oops/util/Logger.h"
22 #include "oops/util/ObjectCounter.h"
23 #include "oops/util/Printable.h"
24 #include "oops/util/Timer.h"
34 template <
typename OBS>
36 private util::ObjectCounter<Locations<OBS> > {
39 static const std::string
classname() {
return "oops::Locations";}
42 explicit Locations(std::unique_ptr<Locations_>);
44 Locations(
const eckit::Configuration &,
const eckit::mpi::Comm &);
57 void print(std::ostream &)
const;
58 std::unique_ptr<const Locations_>
locs_;
63 template <
typename OBS>
65 Log::trace() <<
"Locations<OBS>::Locations constructed" << std::endl;
70 template <
typename OBS>
72 Log::trace() <<
"Locations<OBS>::Locations starting" << std::endl;
73 util::Timer timer(classname(),
"Locations");
75 Log::trace() <<
"Locations<OBS>::Locations done" << std::endl;
80 template <
typename OBS>
82 Log::trace() <<
"Locations<OBS>::~Locations starting" << std::endl;
83 util::Timer timer(classname(),
"~Locations");
85 Log::trace() <<
"Locations<OBS>::~Locations done" << std::endl;
90 template <
typename OBS>
92 util::Timer timer(
classname(),
"Locations");
93 Log::trace() <<
"Locations<OBS> moved" << std::endl;
98 template <
typename OBS>
100 Log::trace() <<
"Locations<OBS>::operator= starting" << std::endl;
101 util::Timer timer(classname(),
"operator=");
102 locs_ = std::move(other.locs_);
103 Log::trace() <<
"Locations<OBS>::operator= done" << std::endl;
109 template<
typename OBS>
111 Log::trace() <<
"Locations<OBS>::print starting" << std::endl;
112 util::Timer timer(classname(),
"print");
114 Log::trace() <<
"Locations<OBS>::print done" << std::endl;
Locations of observations for observation operator.
const Locations_ & locations() const
Interfacing.
static const std::string classname()
Locations & operator=(const Locations &)=delete
std::unique_ptr< const Locations_ > locs_
~Locations()
Destructor and copy/move constructor and assignments.
void print(std::ostream &) const
Locations(const Locations &)=delete
OBS::Locations Locations_
Locations(std::unique_ptr< Locations_ >)
Constructor from the pointer returned by ObsOperator::locations()
The namespace for the main oops code.