#include <postProcess.hh>
Public Member Functions | |
GlobalPostprocess (const Space< F > &spc) | |
GlobalPostprocess (Mesh &msh) | |
void | operator() (CellPostprocess< F > &perCell) const |
Protected Member Functions | |
virtual std::ostream & | info (std::ostream &os) const |
Returns information in an output stream. | |
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 70 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. |
|
protectedvirtual |
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. |