aboutsummaryrefslogtreecommitdiff
path: root/Python/pywarpx/picmi.py
diff options
context:
space:
mode:
authorGravatar Marco Garten <mgarten@lbl.gov> 2023-09-12 19:03:00 -0700
committerGravatar GitHub <noreply@github.com> 2023-09-13 11:03:00 +0900
commit15dacea8160503a0bf297063545b2b834a7f4b77 (patch)
tree549c12b0d6d624acd35286754ec5277be56611ad /Python/pywarpx/picmi.py
parent51f908bf15e737ca4ac0cc2871de2d2de77e43a7 (diff)
downloadWarpX-15dacea8160503a0bf297063545b2b834a7f4b77.tar.gz
WarpX-15dacea8160503a0bf297063545b2b834a7f4b77.tar.zst
WarpX-15dacea8160503a0bf297063545b2b834a7f4b77.zip
Revert PR4266 - lower and uppers bounds (#4294)
The lower and upper bounds are already present within PICMI.
Diffstat (limited to '')
-rw-r--r--Python/pywarpx/picmi.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/Python/pywarpx/picmi.py b/Python/pywarpx/picmi.py
index ce2072495..056026fbb 100644
--- a/Python/pywarpx/picmi.py
+++ b/Python/pywarpx/picmi.py
@@ -1963,14 +1963,6 @@ class FieldDiagnostic(picmistandard.PICMI_FieldDiagnostic, WarpXDiagnosticBase):
warpx_dump_rz_modes: bool, optional
Flag whether to dump the data for all RZ modes
-
- warpx_lower_bound: vector of floats, optional
- Lower corner of output fields
- that is passed to <diagnostic name>.lower_bound
-
- warpx_upper_bound: vector of floats, optional
- Upper corner of output fields
- that is passed to <diagnostic name>.upper_bound
"""
def init(self, kw):
@@ -1984,8 +1976,6 @@ class FieldDiagnostic(picmistandard.PICMI_FieldDiagnostic, WarpXDiagnosticBase):
self.file_prefix = kw.pop('warpx_file_prefix', None)
self.file_min_digits = kw.pop('warpx_file_min_digits', None)
self.dump_rz_modes = kw.pop('warpx_dump_rz_modes', None)
- self.lower_bound = kw.pop('warpx_lower_bound', None)
- self.upper_bound = kw.pop('warpx_upper_bound', None)
def initialize_inputs(self):