8 #ifndef OOPS_INTERFACE_OBSDATAVECTOR_HEAD_H_
9 #define OOPS_INTERFACE_OBSDATAVECTOR_HEAD_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"
23 template <
typename OBS>
class ObsVector;
30 template <
typename OBS,
typename DATATYPE>
32 private util::ObjectCounter<ObsDataVector<OBS, DATATYPE> > {
36 static const std::string
classname() {
return "oops::ObsDataVector";}
73 void read(
const std::string & name);
75 void save(
const std::string & name)
const;
78 void print(std::ostream &)
const;
80 std::shared_ptr<ObsDataVec_>
data_;
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.