blob: 7e0e491f8a27fd7feac32278556d7b41ba61b55c (
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
|
/* Copyright 2019 David Grote, Maxence Thevenet, Weiqun Zhang
*
*
* This file is part of WarpX.
*
* License: BSD-3-Clause-LBNL
*/
#include "WarpX_py.H"
std::map< std::string, WARPX_CALLBACK_PY_FUNC_0 > warpx_callback_py_map;
bool IsPythonCallBackInstalled ( std::string name )
{
return (warpx_callback_py_map.count(name) == 1u);
}
// Execute Python callbacks of the type given by the input string
void ExecutePythonCallback ( std::string name )
{
if ( IsPythonCallBackInstalled(name) ) {
WARPX_PROFILE("warpx_py_"+name);
warpx_callback_py_map[name]();
}
}
|