diff options
author | 2023-08-30 03:36:46 +0200 | |
---|---|---|
committer | 2023-08-29 18:36:46 -0700 | |
commit | 3f95ac68a1d7cf764f58e360ae9b4c43e5913095 (patch) | |
tree | 5da34d67f9fcdf0086d73e077b677ccf9b870541 /Source/FieldSolver/SpectralSolver/SpectralHankelTransform/HankelTransform.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/FieldSolver/SpectralSolver/SpectralHankelTransform/HankelTransform.H')
-rw-r--r-- | Source/FieldSolver/SpectralSolver/SpectralHankelTransform/HankelTransform.H | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/FieldSolver/SpectralSolver/SpectralHankelTransform/HankelTransform.H b/Source/FieldSolver/SpectralSolver/SpectralHankelTransform/HankelTransform.H index a911a0627..e40ccc045 100644 --- a/Source/FieldSolver/SpectralSolver/SpectralHankelTransform/HankelTransform.H +++ b/Source/FieldSolver/SpectralSolver/SpectralHankelTransform/HankelTransform.H @@ -32,18 +32,18 @@ class HankelTransform using RealVector = amrex::Gpu::DeviceVector<amrex::Real>; // Constructor - HankelTransform(const int hankel_order, - const int azimuthal_mode, - const int nr, - const amrex::Real rmax); + HankelTransform(int hankel_order, + int azimuthal_mode, + int nr, + amrex::Real rmax); const RealVector & getSpectralWavenumbers() {return m_kr;} - void HankelForwardTransform(amrex::FArrayBox const& F, int const F_icomp, - amrex::FArrayBox & G, int const G_icomp); + void HankelForwardTransform(amrex::FArrayBox const& F, int F_icomp, + amrex::FArrayBox & G, int G_icomp); - void HankelInverseTransform(amrex::FArrayBox const& G, int const G_icomp, - amrex::FArrayBox & F, int const F_icomp); + void HankelInverseTransform(amrex::FArrayBox const& G, int G_icomp, + amrex::FArrayBox & F, int F_icomp); private: // Even though nk == nr always, use a separate variable for clarity. |