aboutsummaryrefslogtreecommitdiff
path: root/Source/Python/WarpX_py.cpp
blob: 4ca06b644ad7cfc3155c8c61546713b24cef68d8 (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
/* Copyright 2019 David Grote, Maxence Thevenet, Weiqun Zhang
 *
 *
 * This file is part of WarpX.
 *
 * License: BSD-3-Clause-LBNL
 */
#include <WarpX_py.H>

extern "C" {

    WARPX_CALLBACK_PY_FUNC_0 warpx_py_afterinit = nullptr;
    WARPX_CALLBACK_PY_FUNC_0 warpx_py_beforeEsolve = nullptr;
    WARPX_CALLBACK_PY_FUNC_0 warpx_py_afterEsolve = nullptr;
    WARPX_CALLBACK_PY_FUNC_0 warpx_py_beforedeposition = nullptr;
    WARPX_CALLBACK_PY_FUNC_0 warpx_py_afterdeposition = nullptr;
    WARPX_CALLBACK_PY_FUNC_0 warpx_py_particlescraper = nullptr;
    WARPX_CALLBACK_PY_FUNC_0 warpx_py_particleloader = nullptr;
    WARPX_CALLBACK_PY_FUNC_0 warpx_py_beforestep = nullptr;
    WARPX_CALLBACK_PY_FUNC_0 warpx_py_afterstep = nullptr;
    WARPX_CALLBACK_PY_FUNC_0 warpx_py_afterrestart = nullptr;
    WARPX_CALLBACK_PY_FUNC_0 warpx_py_particleinjection = nullptr;
    WARPX_CALLBACK_PY_FUNC_0 warpx_py_appliedfields = nullptr;

}