IODA
ObsIoFileRead.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2019 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 IO_OBSIOFILEREAD_H_
9 #define IO_OBSIOFILEREAD_H_
10 
11 #include <iostream>
12 
13 #include "ioda/distribution/Distribution.h"
14 #include "ioda/io/ObsIo.h"
15 #include "ioda/ObsSpaceParameters.h"
16 
17 #include "oops/util/Logger.h"
18 #include "oops/util/ObjectCounter.h"
19 
20 namespace ioda {
21 
22 /*! \brief Implementation of ObsIo reading data from a file.
23  *
24  * \author Stephen Herbener (JCSDA)
25  */
26 class ObsIoFileRead : public ObsIo, private util::ObjectCounter<ObsIoFileRead> {
27  public:
28  /// \brief classname method for object counter
29  ///
30  /// \details This method is supplied for the ObjectCounter base class.
31  /// It defines a name to identify an object of this class
32  /// for reporting by OOPS.
33  static const std::string classname() {return "ioda::ObsIoFileRead";}
34 
35  /// Type used by ObsIoFactory
37 
38  explicit ObsIoFileRead(const Parameters_ & ioParams,
39  const ObsSpaceParameters & obsSpaceParams);
41 
42  bool eachProcessGeneratesSeparateObs() const override;
43 
44  private:
45  //-------------------------- private data members -------------------------------
46  bool read_separate_files_ = false;
47 
48  //-------------------------- private functions ----------------------------------
49  /// \brief print routine for oops::Printable base class
50  /// \param ostream output stream
51  void print(std::ostream & os) const override;
52 
53  /// \brief Read the contents of an HDF5 file into obs_group_.
54  void createObsGroupFromHdf5File(const std::string & fileName);
55 
56  /// \brief Read the contents of an ODB file into obs_group_.
57  void createObsGroupFromOdbFile(const std::string & fileName,
58  const Parameters_ & ioParams);
59 };
60 
61 } // namespace ioda
62 
63 #endif // IO_OBSIOFILEREAD_H_
Implementation of ObsIo reading data from a file.
Definition: ObsIoFileRead.h:26
ObsFileInParameters Parameters_
Type used by ObsIoFactory.
Definition: ObsIoFileRead.h:36
ObsIoFileRead(const Parameters_ &ioParams, const ObsSpaceParameters &obsSpaceParams)
bool eachProcessGeneratesSeparateObs() const override
return true if each process generates a separate series of observations (e.g. read from different fil...
void createObsGroupFromOdbFile(const std::string &fileName, const Parameters_ &ioParams)
Read the contents of an ODB file into obs_group_.
void createObsGroupFromHdf5File(const std::string &fileName)
Read the contents of an HDF5 file into obs_group_.
static const std::string classname()
classname method for object counter
Definition: ObsIoFileRead.h:33
void print(std::ostream &os) const override
print routine for oops::Printable base class