diff options
author | 2023-02-21 08:59:57 -0800 | |
---|---|---|
committer | 2023-02-21 08:59:57 -0800 | |
commit | 94d292627bb49c17a4b6e17e54232a56cec8955a (patch) | |
tree | 8a850bbb98a7085fb3a6fab692b5285dc8fa09b1 /Python/pywarpx/WarpX.py | |
parent | 65f2204fd3da61d767f2e9f8dcfca64cbeff5ff6 (diff) | |
download | WarpX-94d292627bb49c17a4b6e17e54232a56cec8955a.tar.gz WarpX-94d292627bb49c17a4b6e17e54232a56cec8955a.tar.zst WarpX-94d292627bb49c17a4b6e17e54232a56cec8955a.zip |
Add FieldReduction and ParticleHistogram to PICMI (#3697)
* Added FieldReduction and ParticleHistogram to ReducedDiagnostics
* Add tests to reduced_diags/PICMI_inputs_loadbalancecosts.py
* Clean up ReducedDiagnostics setting of argv
Diffstat (limited to 'Python/pywarpx/WarpX.py')
-rw-r--r-- | Python/pywarpx/WarpX.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/pywarpx/WarpX.py b/Python/pywarpx/WarpX.py index 76f66c6d2..d03ddcef6 100644 --- a/Python/pywarpx/WarpX.py +++ b/Python/pywarpx/WarpX.py @@ -84,10 +84,7 @@ class WarpX(Bucket): reduced_diagnostics.reduced_diags_names = reduced_diagnostics._diagnostics_dict.keys() argv += reduced_diagnostics.attrlist() for diagnostic in reduced_diagnostics._diagnostics_dict.values(): - diagnostic.species = diagnostic._species_dict.keys() argv += diagnostic.attrlist() - for species_diagnostic in diagnostic._species_dict.values(): - argv += species_diagnostic.attrlist() return argv |