aboutsummaryrefslogtreecommitdiff
path: root/Source/Python
diff options
context:
space:
mode:
authorGravatar MaxThevenet <mthevenet@lbl.gov> 2019-10-27 16:59:48 -0700
committerGravatar MaxThevenet <mthevenet@lbl.gov> 2019-10-27 16:59:48 -0700
commite63229421c47538283375f1601d2d38bb25246b9 (patch)
tree89f955994226ad35fbe1cf6e919ce984f2afa83f /Source/Python
parent7d5d704359d94761362bce077d536f8f9985b4c8 (diff)
downloadWarpX-e63229421c47538283375f1601d2d38bb25246b9.tar.gz
WarpX-e63229421c47538283375f1601d2d38bb25246b9.tar.zst
WarpX-e63229421c47538283375f1601d2d38bb25246b9.zip
FillBoundaryE/B/F take mandatory argument nguard
Diffstat (limited to 'Source/Python')
-rw-r--r--Source/Python/WarpXWrappers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Python/WarpXWrappers.cpp b/Source/Python/WarpXWrappers.cpp
index be9ec9519..3635bcd45 100644
--- a/Source/Python/WarpXWrappers.cpp
+++ b/Source/Python/WarpXWrappers.cpp
@@ -378,11 +378,11 @@ extern "C"
}
void warpx_FillBoundaryE () {
WarpX& warpx = WarpX::GetInstance();
- warpx.FillBoundaryE ();
+ warpx.FillBoundaryE (warpx.getngE());
}
void warpx_FillBoundaryB () {
WarpX& warpx = WarpX::GetInstance();
- warpx.FillBoundaryB ();
+ warpx.FillBoundaryB (warpx.getngE());
}
void warpx_SyncCurrent () {
WarpX& warpx = WarpX::GetInstance();