Global Postprocessing. More...
#include <postProcess.hh>


Public Member Functions | |
| GlobalPostprocess (const Space< F > &spc) | |
| Constructor. | |
| GlobalPostprocess (Mesh &msh) | |
| Constructor. | |
| void | operator() (CellPostprocess< F > &perCell) const |
| Application operator. | |
Protected Member Functions | |
| virtual std::ostream & | info (std::ostream &os) const |
| Returns information in an output stream. | |
Private Attributes | |
| Mesh * | msh_ |
| The mesh. | |
| const Space< F > * | spc_ |
| The space. | |
Global Postprocessing.
The application operator calls the application operator of the object for the per cell postprocessing on each cell.
Data which is needed for the postprocessing (eg. the solution, an output stream etc.) should be included in the class which does the real work, ie. a derived class from CellPostprocess.
Definition at line 68 of file postProcess.hh.
| concepts::GlobalPostprocess< F >::GlobalPostprocess | ( | const Space< F > & | spc | ) |
Constructor.
| spc | Space over which the application operator should loop. |
| concepts::GlobalPostprocess< F >::GlobalPostprocess | ( | Mesh & | msh | ) |
Constructor.
| msh | Mesh over which the application operator should loop. |
| virtual std::ostream& concepts::GlobalPostprocess< F >::info | ( | std::ostream & | os | ) | const [protected, virtual] |
Returns information in an output stream.
Reimplemented from concepts::OutputOperator.
| void concepts::GlobalPostprocess< F >::operator() | ( | CellPostprocess< F > & | perCell | ) | const |
Application operator.
It calls the application operator of perCell on each cell.
| perCell | The application operator of this class is called on each element. |
Mesh* concepts::GlobalPostprocess< F >::msh_ [private] |
The mesh.
Definition at line 94 of file postProcess.hh.
const Space<F>* concepts::GlobalPostprocess< F >::spc_ [private] |
The space.
Definition at line 91 of file postProcess.hh.