IODA
ReplicaOfNonoverlappingDistribution.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_REPLICAOFNONOVERLAPPINGDISTRIBUTION_H_
9 #define DISTRIBUTION_REPLICAOFNONOVERLAPPINGDISTRIBUTION_H_
10 
11 #include <memory>
12 
13 #include "ioda/distribution/NonoverlappingDistribution.h"
14 
15 namespace ioda {
16 
17 // ---------------------------------------------------------------------
18 /*!
19  * \brief Distribution assigning each record to a process if and only if a non-overlapping
20  * _master distribution_ has done the same.
21  */
23  public:
24  /// \brief Constructor.
25  ///
26  /// \param comm
27  /// The communicator used by \p master.
28  /// \param master
29  /// Master distribution. The replica will assign each record to a process if and only if
30  /// the master has done the same.
31  explicit ReplicaOfNonoverlappingDistribution(const eckit::mpi::Comm &comm,
32  std::shared_ptr<const Distribution> master);
33 
35 
36  bool isMyRecord(std::size_t RecNum) const override;
37 
38  std::string name() const override { return "ReplicaOfNonoverlappingDistribution"; }
39 
40  private:
41  std::shared_ptr<const Distribution> master_;
42 };
43 
44 } // namespace ioda
45 
46 #endif // DISTRIBUTION_REPLICAOFNONOVERLAPPINGDISTRIBUTION_H_
Implements some methods of Distribution in a manner suitable for distributions storing each observati...
Distribution assigning each record to a process if and only if a non-overlapping master distribution ...
ReplicaOfNonoverlappingDistribution(const eckit::mpi::Comm &comm, std::shared_ptr< const Distribution > master)
Constructor.
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...