aboutsummaryrefslogtreecommitdiff
path: root/Source/Python/WarpX_py.H
diff options
context:
space:
mode:
authorGravatar MaxThevenet <mthevenet@lbl.gov> 2019-03-01 11:14:21 -0800
committerGravatar GitHub <noreply@github.com> 2019-03-01 11:14:21 -0800
commit26fdde5c879d3fa965bc5f2b4bda7432b4ae0e50 (patch)
tree9455e4117e8cac9625132368881872bcff727d95 /Source/Python/WarpX_py.H
parent24ae5647745f93978c88a005acefdcacf356e418 (diff)
parent7e7dccaa7fb1206f829f8747f2ec2ad80bec599c (diff)
downloadWarpX-26fdde5c879d3fa965bc5f2b4bda7432b4ae0e50.tar.gz
WarpX-26fdde5c879d3fa965bc5f2b4bda7432b4ae0e50.tar.zst
WarpX-26fdde5c879d3fa965bc5f2b4bda7432b4ae0e50.zip
Merge pull request #56 from ECP-WarpX/source_subfolders
Reorganize Source with subfolders
Diffstat (limited to 'Source/Python/WarpX_py.H')
-rw-r--r--Source/Python/WarpX_py.H23
1 files changed, 23 insertions, 0 deletions
diff --git a/Source/Python/WarpX_py.H b/Source/Python/WarpX_py.H
new file mode 100644
index 000000000..d8cf22155
--- /dev/null
+++ b/Source/Python/WarpX_py.H
@@ -0,0 +1,23 @@
+#ifndef WARPX_PY_H_
+#define WARPX_PY_H_
+
+#include <WarpXWrappers.h>
+
+extern "C" {
+
+ extern WARPX_CALLBACK_PY_FUNC_0 warpx_py_afterinit;
+ extern WARPX_CALLBACK_PY_FUNC_0 warpx_py_beforeEsolve;
+ extern WARPX_CALLBACK_PY_FUNC_0 warpx_py_afterEsolve;
+ extern WARPX_CALLBACK_PY_FUNC_0 warpx_py_beforedeposition;
+ extern WARPX_CALLBACK_PY_FUNC_0 warpx_py_afterdeposition;
+ extern WARPX_CALLBACK_PY_FUNC_0 warpx_py_particlescraper;
+ extern WARPX_CALLBACK_PY_FUNC_0 warpx_py_particleloader;
+ extern WARPX_CALLBACK_PY_FUNC_0 warpx_py_beforestep;
+ extern WARPX_CALLBACK_PY_FUNC_0 warpx_py_afterstep;
+ extern WARPX_CALLBACK_PY_FUNC_0 warpx_py_afterrestart;
+ extern WARPX_CALLBACK_PY_FUNC_0 warpx_py_particleinjection;
+ extern WARPX_CALLBACK_PY_FUNC_0 warpx_py_appliedfields;
+
+}
+
+#endif