OOPS
LocsL95.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 LORENZ95_LOCSL95_H_
12 #define LORENZ95_LOCSL95_H_
13 
14 #include <ostream>
15 #include <string>
16 #include <vector>
17 
18 #include "eckit/mpi/Comm.h"
19 
20 #include "oops/util/DateTime.h"
21 #include "oops/util/ObjectCounter.h"
22 #include "oops/util/Printable.h"
23 
24 namespace eckit {
25  class Configuration;
26 }
27 
28 namespace lorenz95 {
29 
30 /// LocsL95 class to handle locations for L95 model.
31 class LocsL95 : public util::Printable,
32  private util::ObjectCounter<LocsL95> {
33  public:
34  static const std::string classname() {return "lorenz95::LocsL95";}
35 
36  LocsL95(const std::vector<double> &,
37  const std::vector<util::DateTime> &);
38  LocsL95(const eckit::Configuration &, const eckit::mpi::Comm &);
39 
40  size_t size() const {return locs_.size();}
41  const double & operator[](const size_t ii) const {return locs_.at(ii);}
42  const std::vector<util::DateTime> & times() const {return times_;}
43  private:
44  void print(std::ostream & os) const;
45  std::vector<double> locs_;
46  std::vector<util::DateTime> times_;
47 };
48 
49 } // namespace lorenz95
50 
51 #endif // LORENZ95_LOCSL95_H_
LocsL95 class to handle locations for L95 model.
Definition: LocsL95.h:32
LocsL95(const std::vector< double > &, const std::vector< util::DateTime > &)
Definition: LocsL95.cc:23
std::vector< double > locs_
Definition: LocsL95.h:45
void print(std::ostream &os) const
Definition: LocsL95.cc:43
std::vector< util::DateTime > times_
Definition: LocsL95.h:46
static const std::string classname()
Definition: LocsL95.h:34
const std::vector< util::DateTime > & times() const
Definition: LocsL95.h:42
size_t size() const
Definition: LocsL95.h:40
const double & operator[](const size_t ii) const
Definition: LocsL95.h:41
Definition: FieldL95.h:22
The namespace for the L95 model.