OOPS
GetValuesL95.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2019-2020 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 #ifndef LORENZ95_GETVALUESL95_H_
9 #define LORENZ95_GETVALUESL95_H_
10 
11 #include <ostream>
12 #include <string>
13 #include <vector>
14 
15 #include "oops/util/DateTime.h"
16 #include "oops/util/ObjectCounter.h"
17 #include "oops/util/Printable.h"
18 
19 namespace eckit {
20  class Configuration;
21 }
22 
23 namespace lorenz95 {
24  class GomL95;
25  class LocsL95;
26  class StateL95;
27  class Resolution;
28 
29 /// \brief used for getting state values at observation locations
30 /// (state at nearest gridpoint is used)
31 class GetValuesL95 : public util::Printable,
32  private util::ObjectCounter<GetValuesL95> {
33  public:
34  static const std::string classname() {return "lorenz95::GetValuesL95";}
35 
36  /// \brief computes indices resolidx_ of nearest gridpoints for all locations \p locs
37  GetValuesL95(const Resolution &, const LocsL95 & locs, const eckit::Configuration &);
38 
39  /// \brief fills in \p geovals for all observations in the timeframe (\p t1, \p t2],
40  /// \p geovals are equal to the value of \p state at the nearest gridpoint
41  void fillGeoVaLs(const StateL95 & state, const util::DateTime & t1,
42  const util::DateTime & t2, GomL95 & geovals) const;
43 
44  private:
45  void print(std::ostream &) const;
46  std::vector<int> resolidx_; // indices in geometry for each of the locations
47  std::vector<util::DateTime> times_; // times of all the observations
48 };
49 // -----------------------------------------------------------------------------
50 
51 } // namespace lorenz95
52 
53 #endif // LORENZ95_GETVALUESL95_H_
used for getting state values at observation locations (state at nearest gridpoint is used)
Definition: GetValuesL95.h:32
GetValuesL95(const Resolution &, const LocsL95 &locs, const eckit::Configuration &)
computes indices resolidx_ of nearest gridpoints for all locations locs
Definition: GetValuesL95.cc:25
std::vector< int > resolidx_
Definition: GetValuesL95.h:46
void fillGeoVaLs(const StateL95 &state, const util::DateTime &t1, const util::DateTime &t2, GomL95 &geovals) const
fills in geovals for all observations in the timeframe (t1, t2], geovals are equal to the value of st...
Definition: GetValuesL95.cc:42
static const std::string classname()
Definition: GetValuesL95.h:34
std::vector< util::DateTime > times_
Definition: GetValuesL95.h:47
void print(std::ostream &) const
Definition: GetValuesL95.cc:53
GomL95 class to handle locations for L95 model.
Definition: GomL95.h:33
LocsL95 class to handle locations for L95 model.
Definition: LocsL95.h:32
Handles resolution.
Definition: Resolution.h:43
L95 model state.
Definition: StateL95.h:53
Definition: FieldL95.h:22
The namespace for the L95 model.