aboutsummaryrefslogtreecommitdiff
path: root/Source/Filter/BilinearFilter.H
blob: 0b431672edaa91cc92e45ee15e19bc253b701b4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* Copyright 2019 Andrew Myers, Maxence Thevenet, Weiqun Zhang
 *
 *
 * This file is part of WarpX.
 *
 * License: BSD-3-Clause-LBNL
 */
#ifndef WARPX_BILIN_FILTER_H_
#define WARPX_BILIN_FILTER_H_

#include <AMReX_Array.H>

#include "Filter.H"


class BilinearFilter : public Filter
{
public:

    BilinearFilter() = default;

    void ComputeStencils();

    amrex::Array<unsigned int, AMREX_SPACEDIM> npass_each_dir;

};
#endif // #ifndef WARPX_BILIN_FILTER_H_