aboutsummaryrefslogtreecommitdiff
path: root/Source/Python
diff options
context:
space:
mode:
authorGravatar Dave Grote <grote1@llnl.gov> 2019-05-24 15:55:31 -0700
committerGravatar Dave Grote <grote1@llnl.gov> 2019-05-24 15:55:31 -0700
commite8af4102cf793f5e910c4db5087f9faab2144217 (patch)
tree13c82d61057996ad353212e3f0763849898cb466 /Source/Python
parent7d608324b222aca93866e8eb8946bcb7e6a36aaf (diff)
downloadWarpX-e8af4102cf793f5e910c4db5087f9faab2144217.tar.gz
WarpX-e8af4102cf793f5e910c4db5087f9faab2144217.tar.zst
WarpX-e8af4102cf793f5e910c4db5087f9faab2144217.zip
Another fix for the Python wrapper for RZ
Diffstat (limited to 'Source/Python')
-rw-r--r--Source/Python/WarpXWrappers.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Python/WarpXWrappers.h b/Source/Python/WarpXWrappers.h
index 94fbb0d30..44e0ed4e1 100644
--- a/Source/Python/WarpXWrappers.h
+++ b/Source/Python/WarpXWrappers.h
@@ -62,19 +62,19 @@ extern "C" {
long warpx_getNumParticles(int speciesnumber);
double** warpx_getEfield(int lev, int direction,
- int *return_size, int* ngrow, int **shapes);
+ int *return_size, int* ncomps, int* ngrow, int **shapes);
int* warpx_getEfieldLoVects(int lev, int direction,
int *return_size, int* ngrow);
double** warpx_getBfield(int lev, int direction,
- int *return_size, int* ngrow, int **shapes);
+ int *return_size, int* ncomps, int* ngrow, int **shapes);
int* warpx_getBfieldLoVects(int lev, int direction,
int *return_size, int* ngrow);
double** warpx_getCurrentDensity(int lev, int direction,
- int *return_size, int* ngrow, int **shapes);
+ int *return_size, int* ncomps, int* ngrow, int **shapes);
int* warpx_getCurrentDensityLoVects(int lev, int direction,
int *return_size, int* ngrow);