FV3 Bundle
DolphChebyshev.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
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  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef OOPS_BASE_DOLPHCHEBYSHEV_H_
12 #define OOPS_BASE_DOLPHCHEBYSHEV_H_
13 
14 #include <map>
15 
16 #include "oops/base/WeightingFct.h"
17 #include "oops/util/DateTime.h"
18 #include "oops/util/Duration.h"
19 
20 namespace eckit {
21  class Configuration;
22 }
23 
24 namespace oops {
25 
26 // -----------------------------------------------------------------------------
27 
28 class DolphChebyshev : public WeightingFct {
29  public:
30  explicit DolphChebyshev(const eckit::Configuration &);
32 
33  std::map< util::DateTime, double > setWeights(const util::DateTime &,
34  const util::DateTime &,
35  const util::Duration &);
36 
37  private:
38  util::Duration tau_;
39 };
40 
41 // -----------------------------------------------------------------------------
42 
43 } // namespace oops
44 
45 #endif // OOPS_BASE_DOLPHCHEBYSHEV_H_
util::Duration tau_
The namespace for the main oops code.
std::map< util::DateTime, double > setWeights(const util::DateTime &, const util::DateTime &, const util::Duration &)
Weighting Function.
Definition: WeightingFct.h:36
DolphChebyshev(const eckit::Configuration &)