OOPS
ObsDataVector_head.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_HEAD_H_
9 #define OOPS_INTERFACE_OBSDATAVECTOR_HEAD_H_
10 
11 #include <memory>
12 #include <ostream>
13 #include <string>
14 
15 #include "oops/base/Variables.h"
17 #include "oops/util/Logger.h"
18 #include "oops/util/ObjectCounter.h"
19 #include "oops/util/Printable.h"
20 #include "oops/util/Timer.h"
21 
22 namespace oops {
23  template <typename OBS> class ObsVector;
24 
25 // -----------------------------------------------------------------------------
26 /// \brief ObsDataVector is a vector templated on data type, in the observation space
27 /// \details
28 /// oops currently uses ObsDataVector<int> and ObsDataVector<float>);
29 
30 template <typename OBS, typename DATATYPE>
31 class ObsDataVector : public util::Printable,
32  private util::ObjectCounter<ObsDataVector<OBS, DATATYPE> > {
33  typedef typename OBS::template ObsDataVector<DATATYPE> ObsDataVec_;
34 
35  public:
36  static const std::string classname() {return "oops::ObsDataVector";}
37 
38  /// Constructor for specified ObsSpace \p os, with \p variables. If the group \p name is
39  /// specified, the data is read from ObsSpace for specified variables and group.
40  /// Otherwise ObsDataVector is allocated for specified variables and filled with zeros.
41  ObsDataVector(const ObsSpace<OBS> & os, const Variables & vars, const std::string name = "");
42  /// Copy constructor from \p other
43  ObsDataVector(const ObsDataVector & other);
44  /// Constructor from \p other ObsVector. ObsDataVector is created with variables from ObsVector
45  /// and assigned ObsVector values. This is only well defined for numeric DATATYPE.
46  explicit ObsDataVector(ObsVector<OBS> & other);
47  /// Destructor (defined explicitly for timing and tracing)
49 
50  /// Accessor to the data
52  /// const accessor to the data
53  const ObsDataVec_ & obsdatavector() const {return *data_;}
54 
55  /// Accessor returning pointer to the data
56  std::shared_ptr<ObsDataVec_> obsdatavectorptr() {return data_;}
57  /// const accessor returning pointer to the data
58  std::shared_ptr<const ObsDataVec_> obsdatavectorptr() const {return data_;}
59 
60  /// Assignment operator
62 
63  /// Zero out this ObsDataVector
64  void zero();
65  /// Mask values by reading another ObsDataVector \p qc that has the same variables and contains
66  /// the masking information. Elements of *this* corresponding to non-zero elements of \p qc are
67  /// set to missing.
68  void mask(const ObsDataVector<OBS, int> & qc);
69  /// Return the number of observations that aren't set to missing, across all MPI tasks.
70  unsigned int nobs() const {return data_->nobs();}
71 
72  /// Fill ObsDataVector with data with group \p name from the associated ObsSpace
73  void read(const std::string & name);
74  /// Save this ObsDataVector as group \p name in the ObsSpace
75  void save(const std::string & name) const;
76 
77  private:
78  void print(std::ostream &) const;
79  /// Pointer to the ObsDataVector implementation
80  std::shared_ptr<ObsDataVec_> data_;
81 };
82 
83 // -----------------------------------------------------------------------------
84 
85 } // namespace oops
86 
87 #endif // OOPS_INTERFACE_OBSDATAVECTOR_HEAD_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="")
const ObsDataVec_ & obsdatavector() const
const accessor to the data
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.
std::shared_ptr< ObsDataVec_ > obsdatavectorptr()
Accessor returning pointer to the data.
OBS::template ObsDataVector< DATATYPE > ObsDataVec_
void save(const std::string &name) const
Save this ObsDataVector as group name in the ObsSpace.
unsigned int nobs() const
Return the number of observations that aren't set to missing, across all MPI tasks.
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.
std::shared_ptr< const ObsDataVec_ > obsdatavectorptr() const
const accessor returning pointer to the data
void mask(const ObsDataVector< OBS, int > &qc)
ObsVector class used in oops; subclass of interface class interface::ObsVector.
The namespace for the main oops code.