OOPS
PostTimerParameters.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 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 OOPS_BASE_POSTTIMERPARAMETERS_H_
9 #define OOPS_BASE_POSTTIMERPARAMETERS_H_
10 
11 #include <string>
12 #include <vector>
13 
14 #include "oops/util/parameters/Parameter.h"
15 #include "oops/util/parameters/Parameters.h"
16 
17 namespace eckit {
18  class Configuration;
19 }
20 
21 namespace oops {
22 
23 /// \brief Options controlling PostTimer
24 class PostTimerParameters : public oops::Parameters {
25  OOPS_CONCRETE_PARAMETERS(PostTimerParameters, Parameters)
26  public:
27  /// frequency of calling the PostProcessor (default = 0 -- call at every step)
28  oops::Parameter<util::Duration> frequency{"frequency", util::Duration(0), this};
29  /// constrols delta for the first call of PostProcessor (first call will happen at begin+first)
30  oops::Parameter<util::Duration> first{"first", util::Duration(0), this};
31  /// specifies at which times to call PostProcessor
32  oops::Parameter<std::vector<util::DateTime>> steps{"steps", std::vector<util::DateTime>(), this};
33 };
34 
35 } // namespace oops
36 
37 #endif // OOPS_BASE_POSTTIMERPARAMETERS_H_
Options controlling PostTimer.
oops::Parameter< std::vector< util::DateTime > > steps
specifies at which times to call PostProcessor
oops::Parameter< util::Duration > frequency
frequency of calling the PostProcessor (default = 0 – call at every step)
oops::Parameter< util::Duration > first
constrols delta for the first call of PostProcessor (first call will happen at begin+first)
Definition: FieldL95.h:22
The namespace for the main oops code.