OOPS
InterpolatorBase.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2018 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 
9 
10 #include <string>
11 
12 
13 #include "eckit/config/Configuration.h"
14 
15 #include "oops/util/Logger.h"
16 
17 // -----------------------------------------------------------------------------
18 namespace oops {
19 // -----------------------------------------------------------------------------
20 /// Constructor for Interpolator Factory
21 
22 InterpolatorFactory::InterpolatorFactory(const std::string & name) {
23  if (getMakers().find(name) != getMakers().end()) {
24  //
25  // This was needed to get the bump interpolator to work with the gnu compilers
26  // If the interpolator is already registered, do not abort. Instead, just
27  // write this message and return.
28  //
29  // throw std::runtime_error(name + " already registered in the interpolator factory.");
30  Log::info() << name << " already registered in the interpolator factory." << std::endl;
31  } else {
32  getMakers()[name] = this;
33  }
34 }
35 
36 // -----------------------------------------------------------------------------
37 /// Create method for Interpolator Factory
38 ///
39 /// This is what the user/developer will use to create Interpolator objects.
40 /// The default is to use atlas interpolation.
41 
43  const eckit::Configuration & conf,
44  const atlas::FunctionSpace & fs1,
45  const atlas::FunctionSpace & fs2,
46  const atlas::field::FieldSetImpl * masks)
47 {
48  Log::trace() << "InterpolatorBase::create starting" << std::endl;
49  std::string id = conf.getString("interpolator", "atlas");
50  typename std::map<std::string, InterpolatorFactory*>::iterator
51  jerr = getMakers().find(id);
52  if (jerr == getMakers().end()) {
53  throw std::runtime_error(id + " does not exist in the interpolator factory.");
54  }
55  InterpolatorBase * ptr = jerr->second->make(conf, fs1, fs2, masks);
56  Log::trace() << "InterpolatorBase::create done" << std::endl;
57  return ptr;
58 }
59 
60 // -----------------------------------------------------------------------------
61 
62 } // namespace oops
Base class for Generic interpolation.
static InterpolatorBase * create(const eckit::Configuration &, const atlas::FunctionSpace &, const atlas::FunctionSpace &, const atlas::field::FieldSetImpl *=nullptr)
InterpolatorFactory(const std::string &)
Constructor for Interpolator Factory.
static std::map< std::string, InterpolatorFactory * > & getMakers()
The namespace for the main oops code.