IODA
AtlasDistribution.h
Go to the documentation of this file.
1 /*
2  * (C) Crown copyright 2021 Met Office
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #ifndef DISTRIBUTION_ATLASDISTRIBUTION_H_
9 #define DISTRIBUTION_ATLASDISTRIBUTION_H_
10 
11 #include <memory>
12 
13 #include "ioda/distribution/NonoverlappingDistribution.h"
14 
15 namespace ioda {
16 
17 /// \brief Distribution assigning each record to the process owning the Atlas mesh partition
18 /// containing the location of the first observation in that record.
19 ///
20 /// The Atlas grid and mesh is created and partitioned using settings taken from the `grid` section
21 /// of the Configuration passed to the constructor.
23  public:
24  explicit AtlasDistribution(const eckit::mpi::Comm & comm,
25  const eckit::Configuration & config);
26  ~AtlasDistribution() override;
27 
28  void assignRecord(const std::size_t recNum, const std::size_t locNum,
29  const eckit::geometry::Point2 & point) override;
30 
31  bool isMyRecord(std::size_t recNum) const override;
32 
33  std::string name() const override;
34 
35  private:
36  class RecordAssigner;
37  // Perhaps at some point ioda will tell us when record assignment is complete
38  // and we'll be able to deallocate this object.
39  std::unique_ptr<RecordAssigner> recordAssigner_;
40 };
41 
42 } // namespace ioda
43 
44 #endif // DISTRIBUTION_ATLASDISTRIBUTION_H_
Assigns records to MPI ranks for the AtlasDistribution.
Distribution assigning each record to the process owning the Atlas mesh partition containing the loca...
AtlasDistribution(const eckit::mpi::Comm &comm, const eckit::Configuration &config)
bool isMyRecord(std::size_t recNum) const override
Returns true if record RecNum has been assigned to the calling PE during a previous call to assignRec...
std::string name() const override
void assignRecord(const std::size_t recNum, const std::size_t locNum, const eckit::geometry::Point2 &point) override
If the record RecNum has not yet been assigned to a PE, assigns it to the appropriate PE.
std::unique_ptr< RecordAssigner > recordAssigner_
Implements some methods of Distribution in a manner suitable for distributions storing each observati...