11 #ifndef OOPS_INTERFACE_GEOMETRY_H_
12 #define OOPS_INTERFACE_GEOMETRY_H_
19 #include "atlas/field.h"
20 #include "atlas/functionspace.h"
25 #include "oops/util/Logger.h"
26 #include "oops/util/ObjectCounter.h"
27 #include "oops/util/parameters/ConfigurationParameter.h"
28 #include "oops/util/parameters/GenericParameters.h"
29 #include "oops/util/parameters/HasParameters_.h"
30 #include "oops/util/parameters/Parameters.h"
31 #include "oops/util/parameters/ParametersOrConfiguration.h"
32 #include "oops/util/Printable.h"
33 #include "oops/util/Timer.h"
59 template <
typename MODEL>
61 private util::ObjectCounter<Geometry<MODEL> > {
68 typedef TParameters_IfAvailableElseFallbackType_t<Geometry_, GenericParameters>
Parameters_;
70 static const std::string
classname() {
return "oops::Geometry";}
74 Geometry(
const eckit::Configuration &,
const eckit::mpi::Comm &);
76 explicit Geometry(std::shared_ptr<const Geometry_>);
94 const eckit::mpi::Comm &
getComm()
const {
return geom_->getComm();}
103 std::shared_ptr<const Geometry_>
geom_;
106 void print(std::ostream &)
const;
111 template <
typename MODEL>
113 const eckit::mpi::Comm & comm)
119 template <
typename MODEL>
121 const eckit::mpi::Comm & comm): geom_() {
122 Log::trace() <<
"Geometry<MODEL>::Geometry starting" << std::endl;
123 util::Timer timer(
classname(),
"Geometry");
125 parametersOrConfiguration<HasParameters_<Geometry_>::value>(parameters),
127 Log::trace() <<
"Geometry<MODEL>::Geometry done" << std::endl;
132 template <
typename MODEL>
136 Log::trace() <<
"Geometry<MODEL>::Geometry shared_ptr done" << std::endl;
141 template <
typename MODEL>
143 Log::trace() <<
"Geometry<MODEL>::~Geometry starting" << std::endl;
144 util::Timer timer(classname(),
"~Geometry");
146 Log::trace() <<
"Geometry<MODEL>::~Geometry done" << std::endl;
151 template <
typename MODEL>
153 Log::trace() <<
"Geometry<MODEL>::begin starting" << std::endl;
154 util::Timer timer(classname(),
"begin");
155 Log::trace() <<
"Geometry<MODEL>::begin done" << std::endl;
161 template <
typename MODEL>
163 Log::trace() <<
"Geometry<MODEL>::verticalCoord starting" << std::endl;
164 util::Timer timer(classname(),
"verticalCoord");
165 Log::trace() <<
"Geometry<MODEL>::verticalCoord done" << std::endl;
166 return geom_->verticalCoord(str);
171 template <
typename MODEL>
173 Log::trace() <<
"Geometry<MODEL>::variableSizes starting" << std::endl;
174 util::Timer timer(classname(),
"variableSizes");
175 std::vector<size_t> sizes = geom_->variableSizes(vars);
176 Log::trace() <<
"Geometry<MODEL>::variableSizes done" << std::endl;
182 template <
typename MODEL>
184 Log::trace() <<
"Geometry<MODEL>::end starting" << std::endl;
185 util::Timer timer(classname(),
"end");
186 Log::trace() <<
"Geometry<MODEL>::end done" << std::endl;
192 template <
typename MODEL>
194 Log::trace() <<
"Geometry<MODEL>::print starting" << std::endl;
195 util::Timer timer(classname(),
"print");
197 Log::trace() <<
"Geometry<MODEL>::print done" << std::endl;
Interface class for the geometry of the model/state space.
GeometryIterator< MODEL > GeometryIterator_
atlas::FieldSet * atlasFieldSet() const
static const std::string classname()
atlas::FunctionSpace * atlasFunctionSpace() const
const eckit::mpi::Comm & getComm() const
Accessor to the geometry communicator.
GeometryIterator_ end() const
Iterator to the past-the-end gridpoint of Geometry (only used in LocalEnsembleDA)
std::vector< double > verticalCoord(std::string &) const
Values of vertical coordinate in units specified by string (only used in GETKF)
MODEL::Geometry Geometry_
void print(std::ostream &) const
pointer to the Geometry implementation
TParameters_IfAvailableElseFallbackType_t< Geometry_, GenericParameters > Parameters_
const Geometry_ & geometry() const
std::vector< size_t > variableSizes(const Variables &) const
Geometry(const Parameters_ &, const eckit::mpi::Comm &)
Constructors from yaml (and mpi communicator), implement one (using Parameters preferred)
virtual ~Geometry()
Destructor (overridden for timer and log purposes)
GeometryIterator_ begin() const
Iterator to the first gridpoint of Geometry (only used in LocalEnsembleDA)
std::shared_ptr< const Geometry_ > geom_
The namespace for the main oops code.