diff options
author | 2023-04-13 17:13:49 -0700 | |
---|---|---|
committer | 2023-04-13 17:13:49 -0700 | |
commit | 3782b6327cb86c19d520423e06bc0256c1d00de9 (patch) | |
tree | ba5b78dcdb0a39eeb3b1f28bf1c42578d50ad99a /Source/Python/WarpX_py.H | |
parent | 818a76493c19cf1f2749ef43914bbd49e91c6ddf (diff) | |
download | WarpX-3782b6327cb86c19d520423e06bc0256c1d00de9.tar.gz WarpX-3782b6327cb86c19d520423e06bc0256c1d00de9.tar.zst WarpX-3782b6327cb86c19d520423e06bc0256c1d00de9.zip |
Add callback function before/after the initial Esolve (#3452)
* Add callback function after the initial Esolve
* Apply suggestions from code review
* Change name of callback function
* Update PR
Diffstat (limited to 'Source/Python/WarpX_py.H')
-rw-r--r-- | Source/Python/WarpX_py.H | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Python/WarpX_py.H b/Source/Python/WarpX_py.H index 5e2738896..ddaa90ddc 100644 --- a/Source/Python/WarpX_py.H +++ b/Source/Python/WarpX_py.H @@ -20,7 +20,8 @@ * The keys of the map describe at what point in the simulation the python * functions will be called. Currently supported keys (callback points) are * afterinit, beforecollisions, aftercollisions, beforeEsolve, poissonsolver, - * afterEsolve, beforedeposition, afterdeposition, particlescraper, + * afterEsolve, beforeInitEsolve, afterInitEsolve, + * beforedeposition, afterdeposition, particlescraper, * particleloader, beforestep, afterstep, afterdiagnostics, afterrestart, * oncheckpointsignal, particleinjection and appliedfields. */ |