From e538399d99121d37ece3d23f4444342117a9a723 Mon Sep 17 00:00:00 2001 From: Roelof Groenewald <40245517+roelof-groenewald@users.noreply.github.com> Date: Tue, 19 Apr 2022 17:40:53 -0700 Subject: add after diagnostic python callback (#3043) --- Python/pywarpx/callbacks.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'Python/pywarpx/callbacks.py') diff --git a/Python/pywarpx/callbacks.py b/Python/pywarpx/callbacks.py index 8fa08e6ef..cb9293c5a 100644 --- a/Python/pywarpx/callbacks.py +++ b/Python/pywarpx/callbacks.py @@ -29,6 +29,7 @@ Functions can be called at the following times: - afterdeposition : after particle deposition (for charge and/or current) - beforestep : before the time step - afterstep : after the time step + - afterdiagnostics : after diagnostic output - particlescraper : just after the particle boundary conditions are applied but before lost particles are processed - particleloader : at the time that the standard particle loader is called @@ -261,6 +262,7 @@ _particlescraper = CallbackFunctions('particlescraper') _particleloader = CallbackFunctions('particleloader') _beforestep = CallbackFunctions('beforestep') _afterstep = CallbackFunctions('afterstep') +_afterdiagnostics = CallbackFunctions('afterdiagnostics') _afterrestart = CallbackFunctions('afterrestart',lcallonce=1) _particleinjection = CallbackFunctions('particleinjection') _appliedfields = CallbackFunctions('appliedfields') @@ -279,6 +281,7 @@ def printcallbacktimers(tmin=1.,lminmax=False,ff=None): _particlescraper, _particleloader, _beforestep,_afterstep, + _afterdiagnostics, _afterrestart, _particleinjection, _appliedfields]: @@ -471,6 +474,20 @@ def isinstalledafterstep(f): "Checks if the function is called after a step" return _afterstep.isinstalledfuncinlist(f) +# ---------------------------------------------------------------------------- +def callfromafterdiagnostics(f): + installafterdiagnostics(f) + return f +def installafterdiagnostics(f): + "Adds a function to the list of functions called after diagnostic output" + _afterdiagnostics.installfuncinlist(f) +def uninstallafterdiagnostics(f): + "Removes the function from the list of functions called after diagnostic output" + _afterdiagnostics.uninstallfuncinlist(f) +def isinstalledafterdiagnostics(f): + "Checks if the function is called after diagnostic output" + return _afterdiagnostics.isinstalledfuncinlist(f) + # ---------------------------------------------------------------------------- def callfromafterrestart(f): raise Exception('restart call back not implemented yet') -- cgit v1.2.3