#include <source/transfer/datamovers/locally_active/LocallyActiveDataCoarsenPatchStrategy.h>
Public Member Functions | |
LocallyActiveDataCoarsenPatchStrategy () | |
virtual | ~LocallyActiveDataCoarsenPatchStrategy () |
virtual hier::IntVector< DIM > | getCoarsenOpStencilWidth () const=0 |
virtual void | preprocessCoarsen (hier::Patch< DIM > &coarse, const hier::Patch< DIM > &fine, const tbox::List< int > &src_data_ids, const hier::Box< DIM > &coarse_box, const hier::IntVector< DIM > &ratio)=0 |
virtual void | postprocessCoarsen (hier::Patch< DIM > &coarse, const hier::Patch< DIM > &fine, const tbox::List< int > &src_data_ids, const hier::Box< DIM > &coarse_box, const hier::IntVector< DIM > &ratio)=0 |
Note that the preprocess member function is called before standard data coarsening using CoarsenOperators and the postprocessor member function is called afterwards.
SAMRAI::xfer::LocallyActiveDataCoarsenPatchStrategy< DIM >::LocallyActiveDataCoarsenPatchStrategy | ( | ) |
The constructor for the coarsen strategy does nothing interesting.
SAMRAI::xfer::LocallyActiveDataCoarsenPatchStrategy< DIM >::~LocallyActiveDataCoarsenPatchStrategy | ( | ) | [virtual] |
The virtual destructor for the coarsen strategy does nothing interesting.
virtual hier::IntVector<DIM> SAMRAI::xfer::LocallyActiveDataCoarsenPatchStrategy< DIM >::getCoarsenOpStencilWidth | ( | ) | const [pure virtual] |
Return maximum stencil width needed over all user-defined data coarsening operations. This is needed to determine the correct coarsening data dependencies.
virtual void SAMRAI::xfer::LocallyActiveDataCoarsenPatchStrategy< DIM >::preprocessCoarsen | ( | hier::Patch< DIM > & | coarse, | |
const hier::Patch< DIM > & | fine, | |||
const tbox::List< int > & | src_data_ids, | |||
const hier::Box< DIM > & | coarse_box, | |||
const hier::IntVector< DIM > & | ratio | |||
) | [pure virtual] |
Perform user-defined coarsening operations. This member function is called before standard coarsening operations (expressed using concrete subclasses of the CoarsenOperator<DIM> base class). The preprocess function should move data from the source components on the fine patch into the source components on the coarse patch in the specified coarse box region. Recall that the source components are specified in calls to the registerCoarsen() function in the CoarsenAlgorithm<DIM> class.
coarse | Coarse patch containing destination data. | |
fine | Fine patch containing source data. | |
src_data_ids | List of integer patch data ids to preprocess. | |
coarse_box | Box region on coarse patch into which data is coarsened. | |
ratio | Integer vector containing ratio relating index space between coarse and fine patches. |
virtual void SAMRAI::xfer::LocallyActiveDataCoarsenPatchStrategy< DIM >::postprocessCoarsen | ( | hier::Patch< DIM > & | coarse, | |
const hier::Patch< DIM > & | fine, | |||
const tbox::List< int > & | src_data_ids, | |||
const hier::Box< DIM > & | coarse_box, | |||
const hier::IntVector< DIM > & | ratio | |||
) | [pure virtual] |
Perform user-defined coarsening operations. This member function is called after standard coarsening operations (expressed using concrete subclasses of the CoarsenOperator<DIM> base class). The postprocess function should move data from the source components on the fine patch into the source components on the coarse patch in the specified coarse box region. Recall that the source components are specified in calls to the registerCoarsen() function in the CoarsenOperator<DIM> class.
coarse | Coarse patch containing destination data. | |
fine | Fine patch containing source data. | |
src_data_ids | List of integer patch data ids to preprocess. | |
coarse_box | Box region on coarse patch into which data is copied. | |
ratio | Integer vector containing ratio |