OOPS
ObsDiagnostics.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 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 
8 #ifndef OOPS_INTERFACE_OBSDIAGNOSTICS_H_
9 #define OOPS_INTERFACE_OBSDIAGNOSTICS_H_
10 
11 #include <memory>
12 #include <ostream>
13 #include <string>
14 #include <vector>
15 
16 #include <boost/noncopyable.hpp>
17 
18 #include "oops/base/Variables.h"
21 #include "oops/util/Logger.h"
22 #include "oops/util/ObjectCounter.h"
23 #include "oops/util/Printable.h"
24 #include "oops/util/Timer.h"
25 
26 namespace oops {
27 
28 // -----------------------------------------------------------------------------
29 
30 template <typename OBS>
31 class ObsDiagnostics : public util::Printable,
32  private boost::noncopyable,
33  private util::ObjectCounter<ObsDiagnostics<OBS> > {
34  typedef typename OBS::ObsDiagnostics ObsDiags_;
37 
38  public:
39  static const std::string classname() {return "oops::ObsDiagnostics";}
40 
41  ObsDiagnostics(const ObsSpace_ &, const Locations_ &, const Variables &);
42  ObsDiagnostics(const eckit::Configuration &, const ObsSpace_ &, const Variables &);
43 
45 
46 /// Interfacing
48  const ObsDiags_ & obsdiagnostics() const {return *diags_;}
49 
50 // I/O
51  void save(const std::string &) const;
52 
53  private:
54  void print(std::ostream &) const;
55  std::unique_ptr<ObsDiags_> diags_;
56 };
57 
58 // -----------------------------------------------------------------------------
59 template <typename OBS>
61  const Variables & vars) : diags_()
62 {
63  Log::trace() << "ObsDiagnostics<OBS>::ObsDiagnostics starting" << std::endl;
64  util::Timer timer(classname(), "ObsDiagnostics");
65  diags_.reset(new ObsDiags_(os.obsspace(), locs.locations(), vars));
66  Log::trace() << "ObsDiagnostics<OBS>::ObsDiagnostics done" << std::endl;
67 }
68 // -----------------------------------------------------------------------------
69 template <typename OBS>
70 ObsDiagnostics<OBS>::ObsDiagnostics(const eckit::Configuration & conf, const ObsSpace_ & os,
71  const Variables & vars) : diags_()
72 {
73  Log::trace() << "ObsDiagnostics<OBS>::ObsDiagnostics starting" << std::endl;
74  util::Timer timer(classname(), "ObsDiagnostics");
75  diags_.reset(new ObsDiags_(conf, os.obsspace(), vars));
76  Log::trace() << "ObsDiagnostics<OBS>::ObsDiagnostics done" << std::endl;
77 }
78 // -----------------------------------------------------------------------------
79 template <typename OBS>
81  Log::trace() << "ObsDiagnostics<OBS>::~ObsDiagnostics starting" << std::endl;
82  util::Timer timer(classname(), "~ObsDiagnostics");
83  diags_.reset();
84  Log::trace() << "ObsDiagnostics<OBS>::~ObsDiagnostics done" << std::endl;
85 }
86 // -----------------------------------------------------------------------------
87 template <typename OBS>
88 void ObsDiagnostics<OBS>::save(const std::string & name) const {
89  Log::trace() << "ObsDiagnostics<OBS, DATATYPE>::save starting " << name << std::endl;
90  util::Timer timer(classname(), "save");
91  diags_->save(name);
92  Log::trace() << "ObsDiagnostics<OBS, DATATYPE>::save done" << std::endl;
93 }
94 // -----------------------------------------------------------------------------
95 template <typename OBS>
96 void ObsDiagnostics<OBS>::print(std::ostream & os) const {
97  Log::trace() << "ObsDiagnostics<OBS>::print starting" << std::endl;
98  util::Timer timer(classname(), "print");
99  os << *diags_;
100  Log::trace() << "ObsDiagnostics<OBS>::print done" << std::endl;
101 }
102 // -----------------------------------------------------------------------------
103 
104 } // namespace oops
105 
106 #endif // OOPS_INTERFACE_OBSDIAGNOSTICS_H_
Locations of observations for observation operator.
const Locations_ & locations() const
Interfacing.
void print(std::ostream &) const
ObsSpace< OBS > ObsSpace_
Locations< OBS > Locations_
const ObsDiags_ & obsdiagnostics() const
static const std::string classname()
void save(const std::string &) const
OBS::ObsDiagnostics ObsDiags_
ObsDiagnostics(const ObsSpace_ &, const Locations_ &, const Variables &)
std::unique_ptr< ObsDiags_ > diags_
ObsDiags_ & obsdiagnostics()
Interfacing.
ObsSpace_ & obsspace() const
Interfacing.
The namespace for the main oops code.