IODA
ReplicaOfNonoverlappingDistribution.cc
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 #include "ioda/distribution/ReplicaOfNonoverlappingDistribution.h"
9 
10 #include "oops/util/Logger.h"
11 
12 namespace ioda {
13 
14 // -----------------------------------------------------------------------------
15 // Note: we don't declare an instance of DistributionMaker<ReplicaOfNonoverlappingDistribution>,
16 // since this distribution must be created programmatically (not from YAML).
17 
18 // -----------------------------------------------------------------------------
20  const eckit::mpi::Comm &comm,
21  std::shared_ptr<const Distribution> master)
23  master_(std::move(master)) {
24  oops::Log::trace() << "ReplicaOfNonoverlappingDistribution constructed" << std::endl;
25 }
26 
27 // -----------------------------------------------------------------------------
29  oops::Log::trace() << "ReplicaOfNonoverlappingDistribution destructed" << std::endl;
30 }
31 
32 // -----------------------------------------------------------------------------
33 bool ReplicaOfNonoverlappingDistribution::isMyRecord(std::size_t RecNum) const {
34  return master_->isMyRecord(RecNum);
35 }
36 
37 // -----------------------------------------------------------------------------
38 
39 } // namespace ioda
Implements some methods of Distribution in a manner suitable for distributions storing each observati...
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...