diff options
author | 2019-12-06 13:55:39 -0800 | |
---|---|---|
committer | 2019-12-06 13:55:39 -0800 | |
commit | 49d1a640c455a7cb0794a913214fbc2a79a9b6a9 (patch) | |
tree | 050c461bd7b0350349744337254b67273a884512 /Source/WarpX.cpp | |
parent | 748db38f36ecc1aba42a038e50f43df907b7fe07 (diff) | |
parent | 6e7e78df54f719a4ceabf7a6bfd976e3b68b2e95 (diff) | |
download | WarpX-49d1a640c455a7cb0794a913214fbc2a79a9b6a9.tar.gz WarpX-49d1a640c455a7cb0794a913214fbc2a79a9b6a9.tar.zst WarpX-49d1a640c455a7cb0794a913214fbc2a79a9b6a9.zip |
Merge pull request #557 from WeiqunZhang/plot_no_costs
warpx.plot_costs
Diffstat (limited to 'Source/WarpX.cpp')
-rw-r--r-- | Source/WarpX.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/WarpX.cpp b/Source/WarpX.cpp index 5ace10ef4..b8633ca2c 100644 --- a/Source/WarpX.cpp +++ b/Source/WarpX.cpp @@ -379,7 +379,7 @@ WarpX::ReadParameters () // Read filter and fill IntVect filter_npass_each_dir with // proper size for AMREX_SPACEDIM - pp.query("use_filter", use_filter); + pp.query("use_filter", use_filter); Vector<int> parse_filter_npass_each_dir(AMREX_SPACEDIM,1); pp.queryarr("filter_npass_each_dir", parse_filter_npass_each_dir); filter_npass_each_dir[0] = parse_filter_npass_each_dir[0]; @@ -434,6 +434,7 @@ WarpX::ReadParameters () pp.query("dump_openpmd", dump_openpmd); pp.query("openpmd_backend", openpmd_backend); pp.query("dump_plotfiles", dump_plotfiles); + pp.query("plot_costs", plot_costs); pp.query("plot_raw_fields", plot_raw_fields); pp.query("plot_raw_fields_guards", plot_raw_fields_guards); pp.query("plot_coarsening_ratio", plot_coarsening_ratio); |