diff options
author | 2023-08-27 03:49:02 +0200 | |
---|---|---|
committer | 2023-08-27 01:49:02 +0000 | |
commit | 84a1a6c479753d8636ee9d26d621581ced2aab3b (patch) | |
tree | 3708cd953898a5788f1645c7a9d9642fbc8ce5d7 /Source/WarpX.cpp | |
parent | 56105a218652a5fd4c5087b0c07abe3c97925048 (diff) | |
download | WarpX-84a1a6c479753d8636ee9d26d621581ced2aab3b.tar.gz WarpX-84a1a6c479753d8636ee9d26d621581ced2aab3b.tar.zst WarpX-84a1a6c479753d8636ee9d26d621581ced2aab3b.zip |
remove unnecessary static variables from WarpX.H (#4239)
Diffstat (limited to 'Source/WarpX.cpp')
-rw-r--r-- | Source/WarpX.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/WarpX.cpp b/Source/WarpX.cpp index 2d57f0699..2e787b68d 100644 --- a/Source/WarpX.cpp +++ b/Source/WarpX.cpp @@ -92,15 +92,6 @@ std::string WarpX::E_ext_grid_s = "default"; bool WarpX::add_external_E_field = false; bool WarpX::add_external_B_field = false; -// Parser for B_external on the grid -std::string WarpX::str_Bx_ext_grid_function; -std::string WarpX::str_By_ext_grid_function; -std::string WarpX::str_Bz_ext_grid_function; -// Parser for E_external on the grid -std::string WarpX::str_Ex_ext_grid_function; -std::string WarpX::str_Ey_ext_grid_function; -std::string WarpX::str_Ez_ext_grid_function; - int WarpX::do_moving_window = 0; int WarpX::start_moving_window_step = 0; int WarpX::end_moving_window_step = -1; |