aboutsummaryrefslogtreecommitdiff
path: root/Source/Python/WarpXWrappers.h
diff options
context:
space:
mode:
authorGravatar Remi Lehe <remi.lehe@normalesup.org> 2019-07-12 16:45:47 -0700
committerGravatar GitHub <noreply@github.com> 2019-07-12 16:45:47 -0700
commit59ed7a185daa76ab795bfc31b28bbf44ba693edd (patch)
treeabc8036bc4a4c2f81c8ca91eeb454e8ecac61e42 /Source/Python/WarpXWrappers.h
parent9c96b45f224cd554726faeac1f2641a2730f233b (diff)
parent2ad0aca22bc7343be94d7eb248344b797a37ef93 (diff)
downloadWarpX-59ed7a185daa76ab795bfc31b28bbf44ba693edd.tar.gz
WarpX-59ed7a185daa76ab795bfc31b28bbf44ba693edd.tar.zst
WarpX-59ed7a185daa76ab795bfc31b28bbf44ba693edd.zip
Merge pull request #212 from ECP-WarpX/python_update
Python interface update
Diffstat (limited to 'Source/Python/WarpXWrappers.h')
-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);