blob: a40df972814b2fb91111d4a15ca71ca016b0083d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* Copyright 2019 David Grote, Maxence Thevenet, Weiqun Zhang
*
*
* This file is part of WarpX.
*
* License: BSD-3-Clause-LBNL
*/
#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
|