blob: c797523f71ef8785d1607527210a9836a0ea9c63 (
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 "Filter.H"
#include <AMReX_Array.H>
#include <AMReX_Config.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_
|