OOPS
StateWriter.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_STATEWRITER_H_
12 #define OOPS_BASE_STATEWRITER_H_
13 
14 #include "oops/base/PostBase.h"
15 
16 #include "eckit/config/LocalConfiguration.h"
17 #include "oops/util/DateTime.h"
18 
19 namespace oops {
20 
21 /// Handles writing-out of forecast fields.
22 /*!
23  * Write out forecast fields.
24  */
25 
26 template <typename FLDS> class StateWriter : public PostBase<FLDS> {
27  public:
28  explicit StateWriter(const eckit::Configuration & conf):
29  PostBase<FLDS>(conf), ppConfig_(conf) {}
31 
32  private:
33  const eckit::LocalConfiguration ppConfig_;
34  void doProcessing(const FLDS & xx) override {xx.write(ppConfig_);}
35 };
36 
37 } // namespace oops
38 
39 #endif // OOPS_BASE_STATEWRITER_H_
Handles post-processing of model fields.
Definition: PostBase.h:33
Handles writing-out of forecast fields.
Definition: StateWriter.h:26
const eckit::LocalConfiguration ppConfig_
Definition: StateWriter.h:33
void doProcessing(const FLDS &xx) override
Actual processing.
Definition: StateWriter.h:34
StateWriter(const eckit::Configuration &conf)
Definition: StateWriter.h:28
The namespace for the main oops code.