OOPS
ObsSpaceBase.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
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  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef OOPS_BASE_OBSSPACEBASE_H_
12 #define OOPS_BASE_OBSSPACEBASE_H_
13 
14 #include <boost/noncopyable.hpp>
15 
16 #include "eckit/mpi/Comm.h"
17 
18 #include "oops/util/DateTime.h"
19 #include "oops/util/parameters/Parameter.h"
20 #include "oops/util/parameters/Parameters.h"
21 #include "oops/util/Printable.h"
22 
23 namespace eckit {
24  class Configuration;
25 }
26 
27 namespace oops {
28 
29 /// \brief Base class for configuration parameters of observation spaces.
30 class ObsSpaceParametersBase : public oops::Parameters {
31  OOPS_ABSTRACT_PARAMETERS(ObsSpaceParametersBase, Parameters)
32 
33  public:
34  /// \brief An integer added to the seed used to initialize the random number generator
35  /// producing observation perturbations (if these are requested).
36  ///
37  /// The seed is a sum of this integer and terms derived from the position of the assimilation
38  /// window, the ensemble member index and the number of ObsSpaceBase instances created so far
39  /// during the lifetime of the program.
40  oops::Parameter<int> obsPerturbationsSeed{"obs perturbations seed", 0, this};
41 };
42 
43 // -----------------------------------------------------------------------------
44 /// Base class for observation spaces.
45 
46 class ObsSpaceBase : public util::Printable,
47  private boost::noncopyable {
48  public:
49  ObsSpaceBase(const ObsSpaceParametersBase &, const eckit::mpi::Comm &,
50  const util::DateTime &, const util::DateTime &);
51 
52  virtual ~ObsSpaceBase() {}
53 
54 /// Access information
55  const util::DateTime & windowStart() const {return winbgn_;}
56  const util::DateTime & windowEnd() const {return winend_;}
57 
58  int64_t getSeed() const {return seed_;}
59 
60  private:
61  static int instances_;
62 
63  const util::DateTime winbgn_;
64  const util::DateTime winend_;
65  int64_t seed_;
66  const int instance_;
67 };
68 
69 // -----------------------------------------------------------------------------
70 
71 } // namespace oops
72 
73 #endif // OOPS_BASE_OBSSPACEBASE_H_
Base class for observation spaces.
Definition: ObsSpaceBase.h:47
int64_t getSeed() const
Definition: ObsSpaceBase.h:58
const util::DateTime winend_
Definition: ObsSpaceBase.h:64
virtual ~ObsSpaceBase()
Definition: ObsSpaceBase.h:52
static int instances_
Definition: ObsSpaceBase.h:61
const util::DateTime & windowStart() const
Access information.
Definition: ObsSpaceBase.h:55
ObsSpaceBase(const ObsSpaceParametersBase &, const eckit::mpi::Comm &, const util::DateTime &, const util::DateTime &)
Definition: ObsSpaceBase.cc:23
const int instance_
Definition: ObsSpaceBase.h:66
const util::DateTime winbgn_
Definition: ObsSpaceBase.h:63
const util::DateTime & windowEnd() const
Definition: ObsSpaceBase.h:56
Base class for configuration parameters of observation spaces.
Definition: ObsSpaceBase.h:30
oops::Parameter< int > obsPerturbationsSeed
An integer added to the seed used to initialize the random number generator producing observation per...
Definition: ObsSpaceBase.h:40
Definition: FieldL95.h:22
The namespace for the main oops code.