aboutsummaryrefslogtreecommitdiff
path: root/Source/Particles/Resampling/Resampling.cpp
diff options
context:
space:
mode:
authorGravatar Edoardo Zoni <59625522+EZoni@users.noreply.github.com> 2021-03-18 12:33:24 -0700
committerGravatar GitHub <noreply@github.com> 2021-03-18 12:33:24 -0700
commit588ef1dad873efef664687adb913ae1302dec6e5 (patch)
tree077488532705ea135dcfe516459b174cb63745b7 /Source/Particles/Resampling/Resampling.cpp
parente5babce0e9b81d7950c073a0d2911ea148ccca66 (diff)
downloadWarpX-588ef1dad873efef664687adb913ae1302dec6e5.tar.gz
WarpX-588ef1dad873efef664687adb913ae1302dec6e5.tar.zst
WarpX-588ef1dad873efef664687adb913ae1302dec6e5.zip
Use Clear Naming Standard for ParmParse Variables (#1809)
Diffstat (limited to 'Source/Particles/Resampling/Resampling.cpp')
-rw-r--r--Source/Particles/Resampling/Resampling.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Particles/Resampling/Resampling.cpp b/Source/Particles/Resampling/Resampling.cpp
index b5c2d8b4f..6c12ed49a 100644
--- a/Source/Particles/Resampling/Resampling.cpp
+++ b/Source/Particles/Resampling/Resampling.cpp
@@ -9,9 +9,9 @@
Resampling::Resampling (const std::string species_name)
{
- amrex::ParmParse pp(species_name);
+ amrex::ParmParse pp_species_name(species_name);
std::string resampling_algorithm_string = "leveling_thinning"; // default resampling algorithm
- pp.query("resampling_algorithm", resampling_algorithm_string);
+ pp_species_name.query("resampling_algorithm", resampling_algorithm_string);
if (resampling_algorithm_string.compare("leveling_thinning") == 0)
{