OOPS
PostProcessor.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_POSTPROCESSOR_H_
12 #define OOPS_BASE_POSTPROCESSOR_H_
13 
14 #include <vector>
15 
16 #include <memory>
17 
18 #include "oops/base/PostBase.h"
19 
20 namespace oops {
21 
22 /// Control model post processing
23 /*!
24  * This class controls model post processing in the most general sense,
25  * ie all diagnostics computations that do not affect the model integration.
26  * It just calls all the individual processors one by one.
27  */
28 
29 template<typename FLDS>
32 
33  public:
37 
39  if (pp != 0) {
40  std::shared_ptr<PostBase_> sp(pp);
41  processors_.push_back(sp);
42  }
43  }
44 
45  void enrollProcessor(std::shared_ptr<PostBase_> pp) {
46  if (pp != 0) processors_.push_back(pp);
47  }
48 
49  void initialize(const FLDS & xx, const util::DateTime & end,
50  const util::Duration & step) {
51  for (auto & jp : processors_) {
52  jp->initialize(xx, end, step);
53  }
54  }
55 
56  void process(const FLDS & xx) {
57  for (auto & jp : processors_) {
58  jp->process(xx);
59  }
60  }
61 
62  void finalize(const FLDS & xx) {
63  for (auto & jp : processors_) {
64  jp->finalize(xx);
65  }
66  }
67 
68  private:
69  std::vector< std::shared_ptr<PostBase_> > processors_;
71 };
72 
73 } // namespace oops
74 
75 #endif // OOPS_BASE_POSTPROCESSOR_H_
Handles post-processing of model fields.
Definition: PostBase.h:33
Control model post processing.
Definition: PostProcessor.h:30
std::vector< std::shared_ptr< PostBase_ > > processors_
Definition: PostProcessor.h:69
void enrollProcessor(PostBase_ *pp)
Definition: PostProcessor.h:38
void enrollProcessor(std::shared_ptr< PostBase_ > pp)
Definition: PostProcessor.h:45
void process(const FLDS &xx)
Definition: PostProcessor.h:56
PostProcessor()
Definition: PostProcessor.h:34
PostProcessor(const PostProcessor &pp)
Definition: PostProcessor.h:35
void finalize(const FLDS &xx)
Definition: PostProcessor.h:62
void initialize(const FLDS &xx, const util::DateTime &end, const util::Duration &step)
Definition: PostProcessor.h:49
~PostProcessor()
Definition: PostProcessor.h:36
PostProcessor operator=(const PostProcessor &)
PostBase< FLDS > PostBase_
Definition: PostProcessor.h:31
The namespace for the main oops code.