aboutsummaryrefslogtreecommitdiff
path: root/Source/WarpXInitData.cpp
diff options
context:
space:
mode:
authorGravatar Dave Grote <grote1@llnl.gov> 2017-12-06 11:42:53 -0800
committerGravatar Dave Grote <grote1@llnl.gov> 2017-12-06 11:42:53 -0800
commitc081449f8f1729ef6f635743e95e96c345ae5d2c (patch)
tree2e7c87d7e9f83ec34f1cfefff3f73b6a928dd3ad /Source/WarpXInitData.cpp
parentf53e5c69e9576484ac3b114ea4c7651613dc620d (diff)
parente3c895a837b9dc33442bfbcf34474858dfeaa0b2 (diff)
downloadWarpX-c081449f8f1729ef6f635743e95e96c345ae5d2c.tar.gz
WarpX-c081449f8f1729ef6f635743e95e96c345ae5d2c.tar.zst
WarpX-c081449f8f1729ef6f635743e95e96c345ae5d2c.zip
Merge branch 'master' into with_python
Diffstat (limited to 'Source/WarpXInitData.cpp')
-rw-r--r--Source/WarpXInitData.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/WarpXInitData.cpp b/Source/WarpXInitData.cpp
index 873adcbaf..df01afe88 100644
--- a/Source/WarpXInitData.cpp
+++ b/Source/WarpXInitData.cpp
@@ -92,12 +92,13 @@ WarpX::InitPML ()
if (do_pml)
{
pml[0].reset(new PML(boxArray(0), DistributionMap(0), &Geom(0), nullptr,
- pml_ncell, pml_delta, 0, do_dive_cleaning));
+ pml_ncell, pml_delta, 0, do_dive_cleaning, do_moving_window));
for (int lev = 1; lev <= finest_level; ++lev)
{
pml[lev].reset(new PML(boxArray(lev), DistributionMap(lev),
&Geom(lev), &Geom(lev-1),
- pml_ncell, pml_delta, refRatio(lev-1)[0], do_dive_cleaning));
+ pml_ncell, pml_delta, refRatio(lev-1)[0], do_dive_cleaning,
+ do_moving_window));
}
}
}