IODA
ObsIoFileCreate.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_OBSIOFILECREATE_H_
9 #define IO_OBSIOFILECREATE_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 creating a file.
23  *
24  * \author Stephen Herbener (JCSDA)
25  */
26 class ObsIoFileCreate : public ObsIo, private util::ObjectCounter<ObsIoFileCreate> {
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::ObsIoFileCreate";}
34 
35  /// Type used by ObsIoFactory
37 
38  explicit ObsIoFileCreate(const Parameters_ & ioParams,
39  const ObsSpaceParameters & obsSpaceParams);
41 
42  private:
43  //-------------------------- private data members -------------------------------
44 
45  //-------------------------- private functions ----------------------------------
46  /// \brief print routine for oops::Printable base class
47  /// \param ostream output stream
48  void print(std::ostream & os) const override;
49 };
50 
51 } // namespace ioda
52 
53 #endif // IO_OBSIOFILECREATE_H_
Implementation of ObsIo creating a file.
static const std::string classname()
classname method for object counter
ObsIoFileCreate(const Parameters_ &ioParams, const ObsSpaceParameters &obsSpaceParams)
void print(std::ostream &os) const override
print routine for oops::Printable base class
ObsFileOutParameters Parameters_
Type used by ObsIoFactory.