IODA
ObsIoGenerateRandom.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_OBSIOGENERATERANDOM_H_
9 #define IO_OBSIOGENERATERANDOM_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 "eckit/mpi/Comm.h"
18 
19 #include "oops/util/DateTime.h"
20 #include "oops/util/Logger.h"
21 #include "oops/util/ObjectCounter.h"
22 
23 namespace ioda {
24 
25 /*! \brief Implementation of ObsIo generating observations at random locations.
26  *
27  * \author Stephen Herbener (JCSDA)
28  */
29 class ObsIoGenerateRandom : public ObsIo, private util::ObjectCounter<ObsIoGenerateRandom> {
30  public:
31  /// \brief classname method for object counter
32  ///
33  /// \details This method is supplied for the ObjectCounter base class.
34  /// It defines a name to identify an object of this class
35  /// for reporting by OOPS.
36  static const std::string classname() {return "ioda::ObsIoGenerateRandom";}
37 
38  /// Type used by ObsIoFactory
40 
41  explicit ObsIoGenerateRandom(const Parameters_ &ioParams,
42  const ObsSpaceParameters & obsSpaceParams);
44 
45  bool applyTimingWindow() const override { return false; }
46 
47  private:
48  //-------------------------- private data members -------------------------------
49 
50  //-------------------------- private functions ----------------------------------
51  /// \brief generate observation locations using the random method
52  /// \details This method will generate a set of latitudes and longitudes of which
53  /// can be used for testing without reading in an obs file. Two latitude
54  /// values, two longitude values, the number of locations (nobs keyword)
55  /// and an optional random seed are specified in the configuration given
56  /// by the conf parameter. Random locations between the two latitudes and
57  /// two longitudes are generated and stored in the obs container as meta data.
58  /// Random time stamps that fall inside the given timing window (which is
59  /// specified in the configuration file) are also generated and stored
60  /// in the obs container as meta data. These data are intended for use
61  /// with the MakeObs functionality.
62  /// \param params Parameters structure specific to the generate random method
63  /// \param winStart DateTime object marking DA window start
64  /// \param winEnd DateTime object marking DA window end
65  /// \param comm MPI communicator group
66  /// \param obsErrors list of error estimates for each assimilated variable
67  /// \param simVarNames list of names of variables to be assimilated
69  const util::DateTime & winStart, const util::DateTime & winEnd,
70  const eckit::mpi::Comm & comm,
71  const std::vector<float> & obsErrors,
72  const std::vector<std::string> & simVarNames);
73 
74  /// \brief print routine for oops::Printable base class
75  /// \param ostream output stream
76  void print(std::ostream & os) const override;
77 };
78 
79 } // namespace ioda
80 
81 #endif // IO_OBSIOGENERATERANDOM_H_
Options controlling the ObsIoGenerateRandom class.
Implementation of ObsIo generating observations at random locations.
bool applyTimingWindow() const override
return true if only observations within the timing window should be retained, false otherwise.
ObsIoGenerateRandom(const Parameters_ &ioParams, const ObsSpaceParameters &obsSpaceParams)
static const std::string classname()
classname method for object counter
ObsGenerateRandomParameters Parameters_
Type used by ObsIoFactory.
void genDistRandom(const EmbeddedObsGenerateRandomParameters &params, const util::DateTime &winStart, const util::DateTime &winEnd, const eckit::mpi::Comm &comm, const std::vector< float > &obsErrors, const std::vector< std::string > &simVarNames)
generate observation locations using the random method
void print(std::ostream &os) const override
print routine for oops::Printable base class