OOPS
oops/interface/ObsDataVector.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_OBSDATAVECTOR_H_
9 #define OOPS_INTERFACE_OBSDATAVECTOR_H_
10 
11 #include <memory>
12 #include <ostream>
13 #include <string>
14 
15 #include "oops/base/ObsVector.h"
16 #include "oops/base/Variables.h"
18 #include "oops/util/Logger.h"
19 #include "oops/util/ObjectCounter.h"
20 #include "oops/util/Printable.h"
21 #include "oops/util/Timer.h"
22 
24 
25 namespace oops {
26 
27 // -----------------------------------------------------------------------------
28 template <typename OBS, typename DATATYPE>
30  const Variables & vars, const std::string name)
31  : data_()
32 {
33  Log::trace() << "ObsDataVector<OBS, DATATYPE>::ObsDataVector starting" << std::endl;
34  util::Timer timer(classname(), "ObsDataVector");
35  data_.reset(new ObsDataVec_(os.obsspace(), vars, name));
36  Log::trace() << "ObsDataVector<OBS, DATATYPE>::ObsDataVector done" << std::endl;
37 }
38 // -----------------------------------------------------------------------------
39 template <typename OBS, typename DATATYPE>
41  Log::trace() << "ObsDataVector<OBS, DATATYPE>::ObsDataVector starting" << std::endl;
42  util::Timer timer(classname(), "ObsDataVector");
43  data_.reset(new ObsDataVec_(*other.data_));
44  Log::trace() << "ObsDataVector<OBS, DATATYPE>::ObsDataVector done" << std::endl;
45 }
46 // -----------------------------------------------------------------------------
47 template <typename OBS, typename DATATYPE>
49  Log::trace() << "ObsDataVector<OBS, DATATYPE>::ObsDataVector starting" << std::endl;
50  util::Timer timer(classname(), "ObsDataVector");
51  data_.reset(new ObsDataVec_(other.obsvector()));
52  Log::trace() << "ObsDataVector<OBS, DATATYPE>::ObsDataVector done" << std::endl;
53 }
54 // -----------------------------------------------------------------------------
55 template <typename OBS, typename DATATYPE>
57  Log::trace() << "ObsDataVector<OBS, DATATYPE>::~ObsDataVector starting" << std::endl;
58  util::Timer timer(classname(), "~ObsDataVector");
59  data_.reset();
60  Log::trace() << "ObsDataVector<OBS, DATATYPE>::~ObsDataVector done" << std::endl;
61 }
62 // -----------------------------------------------------------------------------
63 template <typename OBS, typename DATATYPE> ObsDataVector<OBS, DATATYPE> &
65  Log::trace() << "ObsDataVector<OBS, DATATYPE>::operator= starting" << std::endl;
66  util::Timer timer(classname(), "operator=");
67  *data_ = *rhs.data_;
68  Log::trace() << "ObsDataVector<OBS, DATATYPE>::operator= done" << std::endl;
69  return *this;
70 }
71 // -----------------------------------------------------------------------------
72 template <typename OBS, typename DATATYPE>
74  Log::trace() << "ObsDataVector<OBS, DATATYPE>::zero starting" << std::endl;
75  util::Timer timer(classname(), "zero");
76  data_->zero();
77  Log::trace() << "ObsDataVector<OBS, DATATYPE>::zero done" << std::endl;
78 }
79 // -----------------------------------------------------------------------------
80 template <typename OBS, typename DATATYPE>
82  Log::trace() << "ObsDataVector<OBS>::mask starting" << std::endl;
83  util::Timer timer(classname(), "mask");
84  data_->mask(qc.obsdatavector());
85  Log::trace() << "ObsDataVector<OBS>::mask done" << std::endl;
86 }
87 // -----------------------------------------------------------------------------
88 template <typename OBS, typename DATATYPE>
89 void ObsDataVector<OBS, DATATYPE>::print(std::ostream & os) const {
90  Log::trace() << "ObsDataVector<OBS, DATATYPE>::print starting" << std::endl;
91  util::Timer timer(classname(), "print");
92  os << *data_;
93  Log::trace() << "ObsDataVector<OBS, DATATYPE>::print done" << std::endl;
94 }
95 // -----------------------------------------------------------------------------
96 template <typename OBS, typename DATATYPE>
97 void ObsDataVector<OBS, DATATYPE>::read(const std::string & name) {
98  Log::trace() << "ObsDataVector<OBS, DATATYPE>::read starting " << name << std::endl;
99  util::Timer timer(classname(), "read");
100  data_->read(name);
101  Log::trace() << "ObsDataVector<OBS, DATATYPE>::read done" << std::endl;
102 }
103 // -----------------------------------------------------------------------------
104 template <typename OBS, typename DATATYPE>
105 void ObsDataVector<OBS, DATATYPE>::save(const std::string & name) const {
106  Log::trace() << "ObsDataVector<OBS, DATATYPE>::save starting " << name << std::endl;
107  util::Timer timer(classname(), "save");
108  data_->save(name);
109  Log::trace() << "ObsDataVector<OBS, DATATYPE>::save done" << std::endl;
110 }
111 // -----------------------------------------------------------------------------
112 
113 } // namespace oops
114 
115 #endif // OOPS_INTERFACE_OBSDATAVECTOR_H_
ObsDataVector is a vector templated on data type, in the observation space.
ObsDataVector(const ObsSpace< OBS > &os, const Variables &vars, const std::string name="")
ObsDataVec_ & obsdatavector()
Accessor to the data.
~ObsDataVector()
Destructor (defined explicitly for timing and tracing)
static const std::string classname()
std::shared_ptr< ObsDataVec_ > data_
Pointer to the ObsDataVector implementation.
OBS::template ObsDataVector< DATATYPE > ObsDataVec_
void save(const std::string &name) const
Save this ObsDataVector as group name in the ObsSpace.
void read(const std::string &name)
Fill ObsDataVector with data with group name from the associated ObsSpace.
ObsDataVector & operator=(const ObsDataVector &)
Assignment operator.
void print(std::ostream &) const
void zero()
Zero out this ObsDataVector.
void mask(const ObsDataVector< OBS, int > &qc)
ObsSpace_ & obsspace() const
Interfacing.
ObsVector class used in oops; subclass of interface class interface::ObsVector.
ObsVector_ & obsvector()
Accessor.
The namespace for the main oops code.