diff options
author | 2023-08-30 03:36:46 +0200 | |
---|---|---|
committer | 2023-08-29 18:36:46 -0700 | |
commit | 3f95ac68a1d7cf764f58e360ae9b4c43e5913095 (patch) | |
tree | 5da34d67f9fcdf0086d73e077b677ccf9b870541 /Source/Parallelization/GuardCellManager.H | |
parent | 71432aac4ef37b0c3476a2af2255140af3188669 (diff) | |
download | WarpX-3f95ac68a1d7cf764f58e360ae9b4c43e5913095.tar.gz WarpX-3f95ac68a1d7cf764f58e360ae9b4c43e5913095.tar.zst WarpX-3f95ac68a1d7cf764f58e360ae9b4c43e5913095.zip |
Clang tidy CI test: add more readability checks to clang tidy CI test (#4146)
* add more readability checks to clang-tidy CI test
* reformat check list
* starting to address issues found with clang-tidy£
* addressing issues
* remove check
* address issues
* address all issues
* address issue found with github code scanning
Diffstat (limited to 'Source/Parallelization/GuardCellManager.H')
-rw-r--r-- | Source/Parallelization/GuardCellManager.H | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/Source/Parallelization/GuardCellManager.H b/Source/Parallelization/GuardCellManager.H index bb0861975..ee8fd044a 100644 --- a/Source/Parallelization/GuardCellManager.H +++ b/Source/Parallelization/GuardCellManager.H @@ -51,28 +51,28 @@ public: * \param bilinear_filter_stencil_length the size of the stencil for filtering */ void Init( - const amrex::Real dt, - const amrex::RealVect dx, - const bool do_subcycling, - const bool do_fdtd_nci_corr, - const short grid_type, - const bool do_moving_window, - const int moving_window_dir, - const int nox, - const int nox_fft, const int noy_fft, const int noz_fft, - const int nci_corr_stencil, - const int electromagnetic_solver_id, - const int max_level, - const amrex::Vector<amrex::Real> v_galilean, - const amrex::Vector<amrex::Real> v_comoving, - const bool safe_guard_cells, - const int do_multi_J, - const bool fft_do_time_averaging, - const bool do_pml, - const int do_pml_in_domain, - const int pml_ncell, + amrex::Real dt, + amrex::RealVect dx, + bool do_subcycling, + bool do_fdtd_nci_corr, + short grid_type, + bool do_moving_window, + int moving_window_dir, + int nox, + int nox_fft, int noy_fft, int noz_fft, + int nci_corr_stencil, + int electromagnetic_solver_id, + int max_level, + amrex::Vector<amrex::Real> v_galilean, + amrex::Vector<amrex::Real> v_comoving, + bool safe_guard_cells, + int do_multi_J, + bool fft_do_time_averaging, + bool do_pml, + int do_pml_in_domain, + int pml_ncell, const amrex::Vector<amrex::IntVect>& ref_ratios, - const bool use_filter, + bool use_filter, const amrex::IntVect& bilinear_filter_stencil_length); // Guard cells allocated for MultiFabs E and B |