IODA
Distribution.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017 UCAR
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 <algorithm>
9 
10 #include "eckit/config/Configuration.h"
11 
12 #include "ioda/distribution/Distribution.h"
13 
14 #include "oops/util/Logger.h"
15 
16 namespace ioda {
17 // -----------------------------------------------------------------------------
18 
19 Distribution::Distribution(const eckit::mpi::Comm & Comm) : comm_(Comm) {
20  oops::Log::trace() << "Distribution constructed" << std::endl;
21 }
22 
23 // -----------------------------------------------------------------------------
24 
26  oops::Log::trace() << "Distribtion destructed" << std::endl;
27 }
28 
29 } // namespace ioda
Distribution(const eckit::mpi::Comm &Comm)
Definition: Distribution.cc:19
virtual ~Distribution()
Definition: Distribution.cc:25