OOPS
oops/base/Geometry.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  * (C) Copyright 2021- UCAR.
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  * In applying this licence, ECMWF does not waive the privileges and immunities
8  * granted to it by virtue of its status as an intergovernmental organisation nor
9  * does it submit to any jurisdiction.
10  */
11 
12 #ifndef OOPS_BASE_GEOMETRY_H_
13 #define OOPS_BASE_GEOMETRY_H_
14 
15 #include <memory>
16 #include <ostream>
17 #include <string>
18 
20 
21 namespace eckit {
22  class Configuration;
23 }
24 
25 namespace oops {
26 
27 // -----------------------------------------------------------------------------
28 /// \brief Geometry class used in oops; subclass of interface class interface::Geometry.
29 ///
30 /// \details Handles additional MPI communicator parameter in the constructors
31 /// (for MPI distribution in time, used in oops for 4DEnVar and weak-constraint 4DVar).
32 /// Adds extra methods that do not need to be implemented in the implementations:
33 /// - timeComm() (accessor to the MPI communicator in time)
34 template <typename MODEL>
35 class Geometry : public interface::Geometry<MODEL> {
36  typedef typename MODEL::Geometry Geometry_;
37  public:
39 
40  /// Constructor from Parameters and mpi communicators: \p geometry for spatial distribution
41  /// (handled by the implementation) and \p time for distribution in time (handled by oops)
42  Geometry(const Parameters_ &, const eckit::mpi::Comm & geometry,
43  const eckit::mpi::Comm & time);
44  /// Constructor from Configuration and mpi communicators: \p geometry for spatial distribution
45  /// (handled by the implementation) and \p time for distribution in time (handled by oops)
46  Geometry(const eckit::Configuration &, const eckit::mpi::Comm & geometry,
47  const eckit::mpi::Comm & time = oops::mpi::myself());
48  /// Constructor from pointer to the MODEL::Geometry (used in 1DVar filter)
49  explicit Geometry(std::shared_ptr<const Geometry_>);
50 
51  /// Accessor to the MPI communicator for distribution in time
52  const eckit::mpi::Comm & timeComm() const {return *timeComm_;}
53 
54  private:
55  const eckit::mpi::Comm * timeComm_; /// pointer to the MPI communicator in time
56 };
57 
58 // -----------------------------------------------------------------------------
59 
60 template <typename MODEL>
61 Geometry<MODEL>::Geometry(const eckit::Configuration & config,
62  const eckit::mpi::Comm & geometry, const eckit::mpi::Comm & time):
63  interface::Geometry<MODEL>(config, geometry), timeComm_(&time)
64 {}
65 
66 // -----------------------------------------------------------------------------
67 
68 template <typename MODEL>
70  const eckit::mpi::Comm & geometry, const eckit::mpi::Comm & time):
71  interface::Geometry<MODEL>(parameters, geometry), timeComm_(&time)
72 {}
73 
74 // -----------------------------------------------------------------------------
75 
76 template <typename MODEL>
77 Geometry<MODEL>::Geometry(std::shared_ptr<const Geometry_> ptr):
78  interface::Geometry<MODEL>(ptr), timeComm_(&oops::mpi::myself())
79 {}
80 
81 } // namespace oops
82 
83 #endif // OOPS_BASE_GEOMETRY_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
const eckit::mpi::Comm & timeComm() const
Accessor to the MPI communicator for distribution in time.
const eckit::mpi::Comm * timeComm_
interface::Geometry< MODEL >::Parameters_ Parameters_
Geometry(const Parameters_ &, const eckit::mpi::Comm &geometry, const eckit::mpi::Comm &time)
MODEL::Geometry Geometry_
Interface class for the geometry of the model/state space.
TParameters_IfAvailableElseFallbackType_t< Geometry_, GenericParameters > Parameters_
const Geometry_ & geometry() const
Definition: FieldL95.h:22
const eckit::mpi::Comm & myself()
Default communicator with each MPI task by itself.
Definition: oops/mpi/mpi.cc:90
The namespace for the main oops code.