Skip to content

Commit 93bc55d

Browse files
committed
Clean up
1 parent b432b7a commit 93bc55d

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

Source/FieldSolver/SpectralSolver/SpectralAlgorithms/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ foreach(D IN LISTS WarpX_DIMS)
22
warpx_set_suffix_dims(SD ${D})
33
target_sources(lib_${SD}
44
PRIVATE
5+
SpectralBaseAlgorithm.cpp
56
PsatdJRhomAlgorithmFirstOrder.cpp
6-
PsatdAlgorithmGalilean.cpp
77
PsatdJRhomAlgorithmSecondOrder.cpp
8-
PsatdAlgorithmPml.cpp
9-
SpectralBaseAlgorithm.cpp
8+
PsatdAlgorithmGalilean.cpp
109
PsatdAlgorithmComoving.cpp
10+
PsatdAlgorithmPml.cpp
1111
)
1212

1313
if(D STREQUAL "RZ")

Source/FieldSolver/SpectralSolver/SpectralAlgorithms/Make.package

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
CEXE_sources += SpectralBaseAlgorithm.cpp
22
CEXE_sources += PsatdJRhomAlgorithmFirstOrder.cpp
3-
CEXE_sources += PsatdAlgorithmGalilean.cpp
43
CEXE_sources += PsatdJRhomAlgorithmSecondOrder.cpp
5-
CEXE_sources += PsatdAlgorithmPml.cpp
4+
CEXE_sources += PsatdAlgorithmGalilean.cpp
65
CEXE_sources += PsatdAlgorithmComoving.cpp
6+
CEXE_sources += PsatdAlgorithmPml.cpp
77

88
ifeq ($(USE_RZ),TRUE)
99
CEXE_sources += SpectralBaseAlgorithmRZ.cpp

Source/FieldSolver/SpectralSolver/SpectralAlgorithms/PsatdJRhomAlgorithmFirstOrder.H

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
*
55
* License: BSD-3-Clause-LBNL
66
*/
7-
#ifndef WARPX_PSATD_ALGORITHM_FIRST_ORDER_H_
8-
#define WARPX_PSATD_ALGORITHM_FIRST_ORDER_H_
7+
#ifndef WARPX_PSATD_JRHOM_ALGORITHM_FIRST_ORDER_H_
8+
#define WARPX_PSATD_JRHOM_ALGORITHM_FIRST_ORDER_H_
99

1010
#include "FieldSolver/SpectralSolver/SpectralFieldData.H"
1111
#include "FieldSolver/SpectralSolver/SpectralKSpace.H"
@@ -97,4 +97,4 @@ class PsatdJRhomAlgorithmFirstOrder : public SpectralBaseAlgorithm
9797
RhoInTime m_rho_in_time;
9898
};
9999
#endif // WARPX_USE_FFT
100-
#endif // WARPX_PSATD_ALGORITHM_FIRST_ORDER_H_
100+
#endif // WARPX_PSATD_JRHOM_ALGORITHM_FIRST_ORDER_H_

Source/FieldSolver/SpectralSolver/SpectralAlgorithms/PsatdJRhomAlgorithmSecondOrder.H

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
*
55
* License: BSD-3-Clause-LBNL
66
*/
7-
#ifndef WARPX_PSATD_ALGORITHM_JRHOM_H_
8-
#define WARPX_PSATD_ALGORITHM_JRHOM_H_
7+
#ifndef WARPX_PSATD_JRHOM_ALGORITHM_SECOND_ORDER_H_
8+
#define WARPX_PSATD_JRHOM_ALGORITHM_SECOND_ORDER_H_
99

1010
#include "FieldSolver/SpectralSolver/SpectralFieldData.H"
1111
#include "FieldSolver/SpectralSolver/SpectralKSpace.H"
@@ -138,4 +138,4 @@ class PsatdJRhomAlgorithmSecondOrder : public SpectralBaseAlgorithm
138138
RhoInTime m_rho_in_time;
139139
};
140140
#endif // WARPX_USE_FFT
141-
#endif // WARPX_PSATD_ALGORITHM_JRHOM_H_
141+
#endif // WARPX_PSATD_JRHOM_ALGORITHM_SECOND_ORDER_H_

0 commit comments

Comments
 (0)