OOPS
LocsL95.cc
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 #include "lorenz95/LocsL95.h"
12 
13 #include "eckit/config/Configuration.h"
14 #include "eckit/exception/Exceptions.h"
15 
16 #include "lorenz95/ObsTable.h"
17 #include "oops/util/DateTime.h"
18 
19 namespace lorenz95 {
20 
21 // -----------------------------------------------------------------------------
22 
23 LocsL95::LocsL95(const std::vector<double> & locs,
24  const std::vector<util::DateTime> & times)
25  : locs_(locs), times_(times)
26 {
27 }
28 
29 // -----------------------------------------------------------------------------
30 
31 LocsL95::LocsL95(const eckit::Configuration & conf, const eckit::mpi::Comm &)
32  : locs_(), times_() {
33  conf.get("positions", locs_);
34  const util::DateTime time(conf.getString("time"));
35  for (size_t jj = 0; jj < locs_.size(); ++jj) {
36  ASSERT(locs_.at(jj) >= 0.0 && locs_.at(jj) <= 1.0);
37  times_.push_back(time);
38  }
39 }
40 
41 // -----------------------------------------------------------------------------
42 
43 void LocsL95::print(std::ostream & os) const {
44  os << locs_.size();
45  if (locs_.size() > 0) os << " " << locs_.at(0);
46  if (locs_.size() > 1) os << " " << locs_.at(locs_.size() - 1);
47 }
48 
49 // -----------------------------------------------------------------------------
50 
51 } // namespace lorenz95
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
The namespace for the L95 model.