OOPS
PostProcessorTLAD.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_POSTPROCESSORTLAD_H_
12 #define OOPS_BASE_POSTPROCESSORTLAD_H_
13 
14 #include <vector>
15 
16 #include <memory>
17 
19 #include "oops/base/Increment.h"
20 #include "oops/base/PostBaseTLAD.h"
21 #include "oops/base/State.h"
22 
23 namespace oops {
24 
25 /// Control model post processing
26 /*!
27  * This class controls model post processing in the most general sense,
28  * ie all diagnostics computations that do not affect the model integration.
29  * It just calls all the individual processors one by one.
30  */
31 
32 template<typename MODEL>
37 
38  public:
42 
44  if (pp != 0) {
45  std::shared_ptr<PostBaseTLAD_> sp(pp);
46  processors_.push_back(sp);
47  }
48  }
49 
50  void enrollProcessor(std::shared_ptr<PostBaseTLAD_> pp) {
51  if (pp != 0) processors_.push_back(pp);
52  }
53 
54 /// Set linearization state
55  void initializeTraj(const State_ & xx, const util::DateTime & end,
56  const util::Duration & step) {
57  for (auto & jp : processors_) {
58  jp->initializeTraj(xx, end, step);
59  }
60  }
61 
62  void processTraj(const State_ & xx) {
63  for (auto & jp : processors_) {
64  jp->processTraj(xx);
65  }
66  }
67 
68  void finalizeTraj(const State_ & xx) {
69  for (auto & jp : processors_) {
70  jp->finalizeTraj(xx);
71  }
72  }
73 
74 /// Tangent linear methods
75  void initializeTL(const Increment_ & dx, const util::DateTime & end,
76  const util::Duration & step) {
77  for (auto & jp : processors_) {
78  jp->initializeTL(dx, end, step);
79  }
80  }
81 
82  void processTL(const Increment_ & dx) {
83  for (auto & jp : processors_) {
84  jp->processTL(dx);
85  }
86  }
87 
88  void finalizeTL(const Increment_ & dx) {
89  for (auto & jp : processors_) {
90  jp->finalizeTL(dx);
91  }
92  }
93 
94 /// Adjoint methods
95  void initializeAD(Increment_ & dx, const util::DateTime & bgn,
96  const util::Duration & step) {
97  for (auto & jp : processors_) {
98  jp->initializeAD(dx, bgn, step);
99  }
100  }
101 
102  void processAD(Increment_ & dx) {
103  for (auto & jp : processors_) {
104  jp->processAD(dx);
105  }
106  }
107 
108  void finalizeAD(Increment_ & dx) {
109  for (auto & jp : processors_) {
110  jp->finalizeAD(dx);
111  }
112  }
113 
114  private:
115  std::vector< std::shared_ptr<PostBaseTLAD_> > processors_;
117 };
118 
119 } // namespace oops
120 
121 #endif // OOPS_BASE_POSTPROCESSORTLAD_H_
Increment class used in oops.
Handles post-processing of model fields related to cost function.
Definition: PostBaseTLAD.h:41
Control model post processing.
PostProcessorTLAD(const PostProcessorTLAD &pp)
void enrollProcessor(std::shared_ptr< PostBaseTLAD_ > pp)
void finalizeAD(Increment_ &dx)
void processTL(const Increment_ &dx)
~PostProcessorTLAD()
Increment< MODEL > Increment_
PostBaseTLAD< MODEL > PostBaseTLAD_
void processAD(Increment_ &dx)
State< MODEL > State_
void enrollProcessor(PostBaseTLAD_ *pp)
void finalizeTraj(const State_ &xx)
void finalizeTL(const Increment_ &dx)
void processTraj(const State_ &xx)
std::vector< std::shared_ptr< PostBaseTLAD_ > > processors_
void initializeTL(const Increment_ &dx, const util::DateTime &end, const util::Duration &step)
Tangent linear methods.
void initializeAD(Increment_ &dx, const util::DateTime &bgn, const util::Duration &step)
Adjoint methods.
void initializeTraj(const State_ &xx, const util::DateTime &end, const util::Duration &step)
Set linearization state.
PostProcessorTLAD()
PostProcessorTLAD operator=(const PostProcessorTLAD &)
State class used in oops; subclass of interface class interface::State.
The namespace for the main oops code.