blob: 2d8651efe4b20c6a2db6a896ec306b269e6a24f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include "BackTransformFunctor.H"
BackTransformFunctor::BackTransformFunctor(amrex::MultiFab const * mf_src, int lev,
const int ncomp, const 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.
}
|