blob: 5b049a11295506808cbced9c5923f25c26e8ef3e (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include "BackTransformFunctor.H"
BackTransformFunctor::BackTransformFunctor(amrex::MultiFab const * mf_src, int lev,
int ncomp, amrex::IntVect crse_ratio)
: ComputeDiagFunctor(ncomp, crse_ratio), m_mf_src(mf_src), m_lev(lev)
{
// Get the right slice of each field in the CC MultiFab, transform it and store it in the output.
}
|