From ed2c580df0f8dfff88c435b81e0353a30d08f5e6 Mon Sep 17 00:00:00 2001 From: Max Katz Date: Sun, 8 Oct 2023 13:27:36 -0400 Subject: [PATCH] Remove unused Castro_F.H --- .../hydrostatic_adjust/Problem_Derive.cpp | 1 - Exec/gravity_tests/uniform_cube/Prob.cpp | 1 - Exec/gravity_tests/uniform_sphere/Prob.cpp | 1 - .../gamma_law_bubble/Problem_Derive.cpp | 1 - Exec/hydro_tests/rotating_torus/Prob.cpp | 1 - .../RadSphere/Problem_Derive.cpp | 1 - .../RadThermalWave/Problem_Derive.cpp | 1 - .../reacting_bubble/Problem_Derive.cpp | 1 - Exec/reacting_tests/toy_flame/Prob.cpp | 1 - Exec/science/flame/Prob.cpp | 1 - Exec/science/wdmerger/Prob.cpp | 1 - Exec/science/wdmerger/Problem_Derive.cpp | 1 - Exec/science/xrb_layered/Problem_Derive.cpp | 1 - Exec/unit_tests/diffusion_test/Prob.cpp | 1 - .../diffusion_test/Problem_Derive.cpp | 1 - Exec/unit_tests/particles_test/Prob.cpp | 1 - Source/diffusion/Castro_diffusion.cpp | 1 - Source/diffusion/Diffusion.cpp | 1 - Source/driver/Castro.cpp | 1 - Source/driver/Castro_F.H | 27 ------------------- Source/driver/Castro_advance.cpp | 1 - Source/driver/Castro_advance_ctu.cpp | 1 - Source/driver/Castro_advance_sdc.cpp | 1 - Source/driver/Castro_io.cpp | 1 - Source/driver/Castro_setup.cpp | 1 - Source/driver/Derive.cpp | 1 - Source/driver/Make.package | 2 -- Source/driver/sum_integrated_quantities.cpp | 1 - Source/driver/sum_utils.cpp | 1 - Source/driver/timestep.cpp | 1 - Source/gravity/Castro_gravity.cpp | 1 - Source/gravity/Castro_pointmass.cpp | 1 - Source/gravity/Gravity.cpp | 1 - Source/hydro/Castro_ctu.cpp | 1 - Source/hydro/Castro_ctu_hydro.cpp | 1 - Source/hydro/Castro_ctu_rad.cpp | 1 - Source/hydro/Castro_hybrid.cpp | 1 - Source/hydro/Castro_hydro.cpp | 1 - Source/hydro/Castro_mol.cpp | 1 - Source/hydro/Castro_mol_hydro.cpp | 1 - Source/hydro/advection_util.cpp | 1 - Source/hydro/flatten.cpp | 1 - Source/hydro/riemann.cpp | 1 - Source/hydro/riemann_util.cpp | 1 - Source/hydro/slope.H | 1 - Source/hydro/trace_plm.cpp | 1 - Source/hydro/trace_ppm.cpp | 1 - Source/mhd/Castro_mhd.cpp | 1 - Source/mhd/ct_upwind.cpp | 1 - Source/mhd/electric.cpp | 1 - Source/mhd/hlld.cpp | 1 - Source/mhd/mhd_plm.cpp | 1 - Source/mhd/mhd_ppm.cpp | 1 - Source/mhd/mhd_util.cpp | 1 - Source/particles/CastroParticles.cpp | 1 - Source/problems/Castro_problem_source.cpp | 1 - Source/problems/Prob.cpp | 1 - Source/problems/Problem_Derive.cpp | 1 - Source/radiation/Castro_radiation.cpp | 1 - Source/radiation/MGFLD.cpp | 1 - Source/radiation/MGFLDRadSolver.cpp | 1 - Source/radiation/Radiation.cpp | 1 - Source/radiation/SGRadSolver.cpp | 1 - Source/radiation/energy_diagnostics.cpp | 1 - Source/radiation/trace_ppm_rad.cpp | 1 - Source/reactions/Castro_react.cpp | 1 - Source/rotation/Castro_rotation.cpp | 1 - Source/rotation/Rotation.cpp | 1 - Source/rotation/rotation_sources.cpp | 1 - Source/scf/scf_relax.cpp | 1 - Source/sdc/Castro_sdc.cpp | 1 - Source/sdc/sdc_util.cpp | 1 - Source/sources/Castro_geom.cpp | 1 - Source/sources/Castro_sources.cpp | 1 - Source/sources/Castro_sponge.cpp | 1 - Source/sources/Castro_thermo.cpp | 1 - 76 files changed, 103 deletions(-) delete mode 100644 Source/driver/Castro_F.H diff --git a/Exec/gravity_tests/hydrostatic_adjust/Problem_Derive.cpp b/Exec/gravity_tests/hydrostatic_adjust/Problem_Derive.cpp index 0c9058f24d..b0c59a9a91 100644 --- a/Exec/gravity_tests/hydrostatic_adjust/Problem_Derive.cpp +++ b/Exec/gravity_tests/hydrostatic_adjust/Problem_Derive.cpp @@ -2,7 +2,6 @@ #include #include -#include #include using namespace amrex; diff --git a/Exec/gravity_tests/uniform_cube/Prob.cpp b/Exec/gravity_tests/uniform_cube/Prob.cpp index cb7bce3401..d50350fc08 100644 --- a/Exec/gravity_tests/uniform_cube/Prob.cpp +++ b/Exec/gravity_tests/uniform_cube/Prob.cpp @@ -1,5 +1,4 @@ #include -#include #include diff --git a/Exec/gravity_tests/uniform_sphere/Prob.cpp b/Exec/gravity_tests/uniform_sphere/Prob.cpp index fd6cd8af4e..647248e6c7 100644 --- a/Exec/gravity_tests/uniform_sphere/Prob.cpp +++ b/Exec/gravity_tests/uniform_sphere/Prob.cpp @@ -1,5 +1,4 @@ #include -#include #include diff --git a/Exec/hydro_tests/gamma_law_bubble/Problem_Derive.cpp b/Exec/hydro_tests/gamma_law_bubble/Problem_Derive.cpp index 7f88ab464e..78e2d81a96 100644 --- a/Exec/hydro_tests/gamma_law_bubble/Problem_Derive.cpp +++ b/Exec/hydro_tests/gamma_law_bubble/Problem_Derive.cpp @@ -2,7 +2,6 @@ #include #include -#include #include using namespace amrex; diff --git a/Exec/hydro_tests/rotating_torus/Prob.cpp b/Exec/hydro_tests/rotating_torus/Prob.cpp index c27911b41c..bc140a60a9 100644 --- a/Exec/hydro_tests/rotating_torus/Prob.cpp +++ b/Exec/hydro_tests/rotating_torus/Prob.cpp @@ -1,7 +1,6 @@ /* Implementations of functions in Problem.H go here */ #include -#include using namespace amrex; diff --git a/Exec/radiation_tests/RadSphere/Problem_Derive.cpp b/Exec/radiation_tests/RadSphere/Problem_Derive.cpp index 12f29eb6b2..2203ba1a92 100644 --- a/Exec/radiation_tests/RadSphere/Problem_Derive.cpp +++ b/Exec/radiation_tests/RadSphere/Problem_Derive.cpp @@ -2,7 +2,6 @@ #include #include -#include #include #include #include diff --git a/Exec/radiation_tests/RadThermalWave/Problem_Derive.cpp b/Exec/radiation_tests/RadThermalWave/Problem_Derive.cpp index 6fa4220b72..643d95f604 100644 --- a/Exec/radiation_tests/RadThermalWave/Problem_Derive.cpp +++ b/Exec/radiation_tests/RadThermalWave/Problem_Derive.cpp @@ -3,7 +3,6 @@ #include #include #include -#include #include #include #include diff --git a/Exec/reacting_tests/reacting_bubble/Problem_Derive.cpp b/Exec/reacting_tests/reacting_bubble/Problem_Derive.cpp index 96ce08233a..6ab9bda3a6 100644 --- a/Exec/reacting_tests/reacting_bubble/Problem_Derive.cpp +++ b/Exec/reacting_tests/reacting_bubble/Problem_Derive.cpp @@ -3,7 +3,6 @@ #include #include #include -#include #include using namespace amrex; diff --git a/Exec/reacting_tests/toy_flame/Prob.cpp b/Exec/reacting_tests/toy_flame/Prob.cpp index 7f41b5d3d1..3a3ea31b06 100644 --- a/Exec/reacting_tests/toy_flame/Prob.cpp +++ b/Exec/reacting_tests/toy_flame/Prob.cpp @@ -1,7 +1,6 @@ /* Implementations of functions in Problem.H go here */ #include -#include using namespace amrex; diff --git a/Exec/science/flame/Prob.cpp b/Exec/science/flame/Prob.cpp index 5c538a4ee3..aecd4b13ba 100644 --- a/Exec/science/flame/Prob.cpp +++ b/Exec/science/flame/Prob.cpp @@ -1,7 +1,6 @@ /* Implementations of functions in Problem.H go here */ #include -#include using namespace amrex; diff --git a/Exec/science/wdmerger/Prob.cpp b/Exec/science/wdmerger/Prob.cpp index cbe0f45e16..c2e4c7aedb 100644 --- a/Exec/science/wdmerger/Prob.cpp +++ b/Exec/science/wdmerger/Prob.cpp @@ -1,5 +1,4 @@ #include -#include #include #include diff --git a/Exec/science/wdmerger/Problem_Derive.cpp b/Exec/science/wdmerger/Problem_Derive.cpp index 5ee76d85a3..019b56a728 100644 --- a/Exec/science/wdmerger/Problem_Derive.cpp +++ b/Exec/science/wdmerger/Problem_Derive.cpp @@ -2,7 +2,6 @@ #include #include -#include #include #include #include diff --git a/Exec/science/xrb_layered/Problem_Derive.cpp b/Exec/science/xrb_layered/Problem_Derive.cpp index ff96dd3c0d..d43025fd66 100644 --- a/Exec/science/xrb_layered/Problem_Derive.cpp +++ b/Exec/science/xrb_layered/Problem_Derive.cpp @@ -3,7 +3,6 @@ #include #include #include -#include #include using namespace amrex; diff --git a/Exec/unit_tests/diffusion_test/Prob.cpp b/Exec/unit_tests/diffusion_test/Prob.cpp index f588c6f94b..09822b72b1 100644 --- a/Exec/unit_tests/diffusion_test/Prob.cpp +++ b/Exec/unit_tests/diffusion_test/Prob.cpp @@ -1,7 +1,6 @@ /* Implementations of functions in Problem.H go here */ #include -#include using namespace amrex; diff --git a/Exec/unit_tests/diffusion_test/Problem_Derive.cpp b/Exec/unit_tests/diffusion_test/Problem_Derive.cpp index b796c24581..97ff8c4527 100644 --- a/Exec/unit_tests/diffusion_test/Problem_Derive.cpp +++ b/Exec/unit_tests/diffusion_test/Problem_Derive.cpp @@ -2,7 +2,6 @@ #include #include -#include #include #include diff --git a/Exec/unit_tests/particles_test/Prob.cpp b/Exec/unit_tests/particles_test/Prob.cpp index 4ce0e0c664..04f18ae213 100644 --- a/Exec/unit_tests/particles_test/Prob.cpp +++ b/Exec/unit_tests/particles_test/Prob.cpp @@ -1,7 +1,6 @@ /* Implementations of functions in Problem.H go here */ #include -#include #include #include diff --git a/Source/diffusion/Castro_diffusion.cpp b/Source/diffusion/Castro_diffusion.cpp index 61b28bfbd5..b1f0fd1542 100644 --- a/Source/diffusion/Castro_diffusion.cpp +++ b/Source/diffusion/Castro_diffusion.cpp @@ -1,6 +1,5 @@ #include -#include #include diff --git a/Source/diffusion/Diffusion.cpp b/Source/diffusion/Diffusion.cpp index 0d74202457..3fc02063d8 100644 --- a/Source/diffusion/Diffusion.cpp +++ b/Source/diffusion/Diffusion.cpp @@ -1,7 +1,6 @@ #include #include #include -#include #include #include #include diff --git a/Source/driver/Castro.cpp b/Source/driver/Castro.cpp index 57aedeb3e9..053fd861d7 100644 --- a/Source/driver/Castro.cpp +++ b/Source/driver/Castro.cpp @@ -15,7 +15,6 @@ #include #include #include -#include #include #include #include diff --git a/Source/driver/Castro_F.H b/Source/driver/Castro_F.H deleted file mode 100644 index a7899c6efd..0000000000 --- a/Source/driver/Castro_F.H +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef CASTRO_F_H -#define CASTRO_F_H - -#include - -#ifdef MAESTRO_INIT -BL_FORT_PROC_DECL(CA_INITDATA_MAESTRO,ca_initdata_maestro) - (const int* lo, const int* hi, const int& MAESTRO_init_type, - BL_FORT_FAB_ARG(state), - const amrex::Real dx[], const amrex::Real& dr, - const amrex::Real xlo[], const amrex::Real xhi[], - const amrex::Real p0[], const int& MAESTRO_npts_model, const int& level); - -BL_FORT_PROC_DECL(CA_INITDATA_MAKEMODEL,ca_initdata_makemodel) - (Real model[], const int& model_size, const int& MAESTRO_npts_model, - const amrex::Real rho0[], const amrex::Real tempbar[], - const amrex::Real dx[], const amrex::Real& dr, const int& r_model_start); - -BL_FORT_PROC_DECL(CA_INITDATA_OVERWRITE,ca_initdata_overwrite) - (const int* lo, const int* hi, - BL_FORT_FAB_ARG(state), - const amrex::Real model[], const int& model_size, const int& MAESTRO_npts_model, - const amrex::Real dx[], const amrex::Real& dr, const amrex::Real xlo[], const amrex::Real xhi[], - const int& r_model_start); -#endif - -#endif diff --git a/Source/driver/Castro_advance.cpp b/Source/driver/Castro_advance.cpp index 3a2eb11af0..405eaafe87 100644 --- a/Source/driver/Castro_advance.cpp +++ b/Source/driver/Castro_advance.cpp @@ -1,6 +1,5 @@ #include -#include #ifdef RADIATION #include diff --git a/Source/driver/Castro_advance_ctu.cpp b/Source/driver/Castro_advance_ctu.cpp index 0fc088abd2..911a2780e9 100644 --- a/Source/driver/Castro_advance_ctu.cpp +++ b/Source/driver/Castro_advance_ctu.cpp @@ -1,6 +1,5 @@ #include -#include #ifdef RADIATION #include diff --git a/Source/driver/Castro_advance_sdc.cpp b/Source/driver/Castro_advance_sdc.cpp index 6539d8eb1a..e6bec0804c 100644 --- a/Source/driver/Castro_advance_sdc.cpp +++ b/Source/driver/Castro_advance_sdc.cpp @@ -1,6 +1,5 @@ #include -#include #ifdef RADIATION #include diff --git a/Source/driver/Castro_io.cpp b/Source/driver/Castro_io.cpp index 65ba42aa26..ea0336669e 100644 --- a/Source/driver/Castro_io.cpp +++ b/Source/driver/Castro_io.cpp @@ -10,7 +10,6 @@ #include #include -#include #include #include diff --git a/Source/driver/Castro_setup.cpp b/Source/driver/Castro_setup.cpp index 2303a9b9b3..70b9bd6b9c 100644 --- a/Source/driver/Castro_setup.cpp +++ b/Source/driver/Castro_setup.cpp @@ -3,7 +3,6 @@ #include #include #include -#include #include #include #include diff --git a/Source/driver/Derive.cpp b/Source/driver/Derive.cpp index 2cc4fedd7c..6a6f6207ad 100644 --- a/Source/driver/Derive.cpp +++ b/Source/driver/Derive.cpp @@ -2,7 +2,6 @@ #include #include -#include #ifdef DIFFUSION #include diff --git a/Source/driver/Make.package b/Source/driver/Make.package index 25ee17c490..c4ca1e4313 100644 --- a/Source/driver/Make.package +++ b/Source/driver/Make.package @@ -22,8 +22,6 @@ CEXE_headers += runtime_parameters.H CEXE_sources += sum_utils.cpp CEXE_sources += sum_integrated_quantities.cpp -FEXE_headers += Castro_F.H - CEXE_headers += Derive.H CEXE_sources += Derive.cpp diff --git a/Source/driver/sum_integrated_quantities.cpp b/Source/driver/sum_integrated_quantities.cpp index ffe7ea2535..0542c4e7b9 100644 --- a/Source/driver/sum_integrated_quantities.cpp +++ b/Source/driver/sum_integrated_quantities.cpp @@ -1,7 +1,6 @@ #include #include -#include #ifdef GRAVITY #include diff --git a/Source/driver/sum_utils.cpp b/Source/driver/sum_utils.cpp index d84e03eb97..433c01393f 100644 --- a/Source/driver/sum_utils.cpp +++ b/Source/driver/sum_utils.cpp @@ -1,7 +1,6 @@ #include #include -#include #include #ifdef GRAVITY diff --git a/Source/driver/timestep.cpp b/Source/driver/timestep.cpp index 0c21bfca98..01af85ce3c 100644 --- a/Source/driver/timestep.cpp +++ b/Source/driver/timestep.cpp @@ -1,5 +1,4 @@ #include -#include #ifdef DIFFUSION #include diff --git a/Source/gravity/Castro_gravity.cpp b/Source/gravity/Castro_gravity.cpp index 0fd34e046f..46eccda99f 100644 --- a/Source/gravity/Castro_gravity.cpp +++ b/Source/gravity/Castro_gravity.cpp @@ -1,5 +1,4 @@ #include -#include #include diff --git a/Source/gravity/Castro_pointmass.cpp b/Source/gravity/Castro_pointmass.cpp index 674cc059f5..1bbdca2050 100644 --- a/Source/gravity/Castro_pointmass.cpp +++ b/Source/gravity/Castro_pointmass.cpp @@ -1,5 +1,4 @@ #include -#include using namespace amrex; diff --git a/Source/gravity/Gravity.cpp b/Source/gravity/Gravity.cpp index 28a5986e8e..6665b0ef38 100644 --- a/Source/gravity/Gravity.cpp +++ b/Source/gravity/Gravity.cpp @@ -8,7 +8,6 @@ #include #include #include -#include #include #include diff --git a/Source/hydro/Castro_ctu.cpp b/Source/hydro/Castro_ctu.cpp index af5a833f06..b98293b7c0 100644 --- a/Source/hydro/Castro_ctu.cpp +++ b/Source/hydro/Castro_ctu.cpp @@ -1,5 +1,4 @@ #include -#include #include #ifdef RADIATION diff --git a/Source/hydro/Castro_ctu_hydro.cpp b/Source/hydro/Castro_ctu_hydro.cpp index c159e83e43..a3e5b28a9c 100644 --- a/Source/hydro/Castro_ctu_hydro.cpp +++ b/Source/hydro/Castro_ctu_hydro.cpp @@ -1,6 +1,5 @@ #include #include -#include #ifdef RADIATION #include diff --git a/Source/hydro/Castro_ctu_rad.cpp b/Source/hydro/Castro_ctu_rad.cpp index b97745921b..0c22df74b8 100644 --- a/Source/hydro/Castro_ctu_rad.cpp +++ b/Source/hydro/Castro_ctu_rad.cpp @@ -1,5 +1,4 @@ #include "Castro.H" -#include "Castro_F.H" #include "Castro_util.H" #include "Radiation.H" diff --git a/Source/hydro/Castro_hybrid.cpp b/Source/hydro/Castro_hybrid.cpp index ca8920ef2f..afff6949b3 100644 --- a/Source/hydro/Castro_hybrid.cpp +++ b/Source/hydro/Castro_hybrid.cpp @@ -1,6 +1,5 @@ #include #include -#include #include diff --git a/Source/hydro/Castro_hydro.cpp b/Source/hydro/Castro_hydro.cpp index 184f227cfb..e0011c6152 100644 --- a/Source/hydro/Castro_hydro.cpp +++ b/Source/hydro/Castro_hydro.cpp @@ -1,5 +1,4 @@ #include -#include #ifdef RADIATION #include diff --git a/Source/hydro/Castro_mol.cpp b/Source/hydro/Castro_mol.cpp index 685a4e800f..1ea775f2cc 100644 --- a/Source/hydro/Castro_mol.cpp +++ b/Source/hydro/Castro_mol.cpp @@ -1,5 +1,4 @@ #include -#include #ifdef RADIATION #include diff --git a/Source/hydro/Castro_mol_hydro.cpp b/Source/hydro/Castro_mol_hydro.cpp index e726930dc5..831260dbc2 100644 --- a/Source/hydro/Castro_mol_hydro.cpp +++ b/Source/hydro/Castro_mol_hydro.cpp @@ -1,5 +1,4 @@ #include -#include #include #ifdef DIFFUSION diff --git a/Source/hydro/advection_util.cpp b/Source/hydro/advection_util.cpp index 7b3beb079c..6008e18fb6 100644 --- a/Source/hydro/advection_util.cpp +++ b/Source/hydro/advection_util.cpp @@ -1,5 +1,4 @@ #include -#include #ifdef ROTATION #include diff --git a/Source/hydro/flatten.cpp b/Source/hydro/flatten.cpp index 67ab08543b..aa51e8cd3c 100644 --- a/Source/hydro/flatten.cpp +++ b/Source/hydro/flatten.cpp @@ -1,5 +1,4 @@ #include -#include #include diff --git a/Source/hydro/riemann.cpp b/Source/hydro/riemann.cpp index d0a157ac3b..8a7a1a7c57 100644 --- a/Source/hydro/riemann.cpp +++ b/Source/hydro/riemann.cpp @@ -1,5 +1,4 @@ #include -#include #include diff --git a/Source/hydro/riemann_util.cpp b/Source/hydro/riemann_util.cpp index 866ba861fe..b72b25429f 100644 --- a/Source/hydro/riemann_util.cpp +++ b/Source/hydro/riemann_util.cpp @@ -1,5 +1,4 @@ #include -#include #include #ifdef RADIATION diff --git a/Source/hydro/slope.H b/Source/hydro/slope.H index 5574d213ca..212f00c123 100644 --- a/Source/hydro/slope.H +++ b/Source/hydro/slope.H @@ -1,5 +1,4 @@ #include -#include #ifdef RADIATION #include diff --git a/Source/hydro/trace_plm.cpp b/Source/hydro/trace_plm.cpp index dc1ef06931..8cffc8d499 100644 --- a/Source/hydro/trace_plm.cpp +++ b/Source/hydro/trace_plm.cpp @@ -1,5 +1,4 @@ #include -#include #include #ifdef RADIATION diff --git a/Source/hydro/trace_ppm.cpp b/Source/hydro/trace_ppm.cpp index 8082f8486e..c86a5a38b3 100644 --- a/Source/hydro/trace_ppm.cpp +++ b/Source/hydro/trace_ppm.cpp @@ -1,5 +1,4 @@ #include -#include #include #ifdef RADIATION diff --git a/Source/mhd/Castro_mhd.cpp b/Source/mhd/Castro_mhd.cpp index 94d7839d53..220a65ffb0 100644 --- a/Source/mhd/Castro_mhd.cpp +++ b/Source/mhd/Castro_mhd.cpp @@ -1,5 +1,4 @@ #include -#include #include diff --git a/Source/mhd/ct_upwind.cpp b/Source/mhd/ct_upwind.cpp index 3df301edf0..365672789e 100644 --- a/Source/mhd/ct_upwind.cpp +++ b/Source/mhd/ct_upwind.cpp @@ -1,5 +1,4 @@ #include -#include #include #include diff --git a/Source/mhd/electric.cpp b/Source/mhd/electric.cpp index f6ef7f1d97..7ddd66d471 100644 --- a/Source/mhd/electric.cpp +++ b/Source/mhd/electric.cpp @@ -1,5 +1,4 @@ #include -#include #include diff --git a/Source/mhd/hlld.cpp b/Source/mhd/hlld.cpp index 1589f89f08..4725358e6c 100644 --- a/Source/mhd/hlld.cpp +++ b/Source/mhd/hlld.cpp @@ -1,5 +1,4 @@ #include -#include #include diff --git a/Source/mhd/mhd_plm.cpp b/Source/mhd/mhd_plm.cpp index f04145f746..99c6dc64e7 100644 --- a/Source/mhd/mhd_plm.cpp +++ b/Source/mhd/mhd_plm.cpp @@ -1,5 +1,4 @@ #include -#include using namespace amrex; diff --git a/Source/mhd/mhd_ppm.cpp b/Source/mhd/mhd_ppm.cpp index 1b31f1fa54..f084a95a39 100644 --- a/Source/mhd/mhd_ppm.cpp +++ b/Source/mhd/mhd_ppm.cpp @@ -1,5 +1,4 @@ #include -#include #include diff --git a/Source/mhd/mhd_util.cpp b/Source/mhd/mhd_util.cpp index 9c1591eefe..e14cb46517 100644 --- a/Source/mhd/mhd_util.cpp +++ b/Source/mhd/mhd_util.cpp @@ -1,5 +1,4 @@ #include -#include #include #include diff --git a/Source/particles/CastroParticles.cpp b/Source/particles/CastroParticles.cpp index 6605fd3f58..10e98b078c 100644 --- a/Source/particles/CastroParticles.cpp +++ b/Source/particles/CastroParticles.cpp @@ -3,7 +3,6 @@ #include #include #include -#include #include diff --git a/Source/problems/Castro_problem_source.cpp b/Source/problems/Castro_problem_source.cpp index 0001c3578e..dc4d08f575 100644 --- a/Source/problems/Castro_problem_source.cpp +++ b/Source/problems/Castro_problem_source.cpp @@ -1,5 +1,4 @@ #include -#include #include using namespace amrex; diff --git a/Source/problems/Prob.cpp b/Source/problems/Prob.cpp index 142384ab88..ed1e3f9001 100644 --- a/Source/problems/Prob.cpp +++ b/Source/problems/Prob.cpp @@ -1,7 +1,6 @@ /* Implementations of functions in Problem.H go here */ #include -#include using namespace amrex; diff --git a/Source/problems/Problem_Derive.cpp b/Source/problems/Problem_Derive.cpp index c684a098f6..6e54182dc6 100644 --- a/Source/problems/Problem_Derive.cpp +++ b/Source/problems/Problem_Derive.cpp @@ -3,7 +3,6 @@ #include #include #include -#include using namespace amrex; diff --git a/Source/radiation/Castro_radiation.cpp b/Source/radiation/Castro_radiation.cpp index 3ebffbcc09..06e97094ea 100644 --- a/Source/radiation/Castro_radiation.cpp +++ b/Source/radiation/Castro_radiation.cpp @@ -1,6 +1,5 @@ #include -#include using std::string; diff --git a/Source/radiation/MGFLD.cpp b/Source/radiation/MGFLD.cpp index 595f14283a..8709ad344e 100644 --- a/Source/radiation/MGFLD.cpp +++ b/Source/radiation/MGFLD.cpp @@ -1,5 +1,4 @@ #include -#include #include #include #include diff --git a/Source/radiation/MGFLDRadSolver.cpp b/Source/radiation/MGFLDRadSolver.cpp index 812bf72960..c622affdf7 100644 --- a/Source/radiation/MGFLDRadSolver.cpp +++ b/Source/radiation/MGFLDRadSolver.cpp @@ -5,7 +5,6 @@ #include #include -#include #include diff --git a/Source/radiation/Radiation.cpp b/Source/radiation/Radiation.cpp index e4108e352e..975f07202b 100644 --- a/Source/radiation/Radiation.cpp +++ b/Source/radiation/Radiation.cpp @@ -4,7 +4,6 @@ #include #include #include -#include #include #include diff --git a/Source/radiation/SGRadSolver.cpp b/Source/radiation/SGRadSolver.cpp index 92eeef42e2..7ad805a38c 100644 --- a/Source/radiation/SGRadSolver.cpp +++ b/Source/radiation/SGRadSolver.cpp @@ -5,7 +5,6 @@ #include #include -#include #include diff --git a/Source/radiation/energy_diagnostics.cpp b/Source/radiation/energy_diagnostics.cpp index e6836a9053..cf47a27127 100644 --- a/Source/radiation/energy_diagnostics.cpp +++ b/Source/radiation/energy_diagnostics.cpp @@ -8,7 +8,6 @@ using std::endl; #include #include -#include using namespace amrex; diff --git a/Source/radiation/trace_ppm_rad.cpp b/Source/radiation/trace_ppm_rad.cpp index e3b2ad1cb8..06d9ef26f5 100644 --- a/Source/radiation/trace_ppm_rad.cpp +++ b/Source/radiation/trace_ppm_rad.cpp @@ -1,5 +1,4 @@ #include -#include #include #ifdef RADIATION diff --git a/Source/reactions/Castro_react.cpp b/Source/reactions/Castro_react.cpp index 6a77622a66..d7bfac60d4 100644 --- a/Source/reactions/Castro_react.cpp +++ b/Source/reactions/Castro_react.cpp @@ -1,6 +1,5 @@ #include -#include #include #ifdef MODEL_PARSER #include diff --git a/Source/rotation/Castro_rotation.cpp b/Source/rotation/Castro_rotation.cpp index ce8b0ccb0b..cfc6a2edc5 100644 --- a/Source/rotation/Castro_rotation.cpp +++ b/Source/rotation/Castro_rotation.cpp @@ -1,5 +1,4 @@ #include -#include #include using namespace amrex; diff --git a/Source/rotation/Rotation.cpp b/Source/rotation/Rotation.cpp index 4966950201..9a5f858fec 100644 --- a/Source/rotation/Rotation.cpp +++ b/Source/rotation/Rotation.cpp @@ -1,5 +1,4 @@ #include -#include #include #include diff --git a/Source/rotation/rotation_sources.cpp b/Source/rotation/rotation_sources.cpp index f3af08546d..f9e461775f 100644 --- a/Source/rotation/rotation_sources.cpp +++ b/Source/rotation/rotation_sources.cpp @@ -1,5 +1,4 @@ #include -#include #include #include #ifdef HYBRID_MOMENTUM diff --git a/Source/scf/scf_relax.cpp b/Source/scf/scf_relax.cpp index b45c9a8d3f..1add2074e3 100644 --- a/Source/scf/scf_relax.cpp +++ b/Source/scf/scf_relax.cpp @@ -1,5 +1,4 @@ #include -#include #include #include #include diff --git a/Source/sdc/Castro_sdc.cpp b/Source/sdc/Castro_sdc.cpp index 5974e11698..8e87268882 100644 --- a/Source/sdc/Castro_sdc.cpp +++ b/Source/sdc/Castro_sdc.cpp @@ -1,5 +1,4 @@ #include -#include // #include #include diff --git a/Source/sdc/sdc_util.cpp b/Source/sdc/sdc_util.cpp index 68b06805d2..6d471ab9a3 100644 --- a/Source/sdc/sdc_util.cpp +++ b/Source/sdc/sdc_util.cpp @@ -1,5 +1,4 @@ #include -#include using namespace amrex; diff --git a/Source/sources/Castro_geom.cpp b/Source/sources/Castro_geom.cpp index 2340e93dc3..282c52b3b1 100644 --- a/Source/sources/Castro_geom.cpp +++ b/Source/sources/Castro_geom.cpp @@ -1,5 +1,4 @@ #include "Castro.H" -#include "Castro_F.H" using namespace amrex; diff --git a/Source/sources/Castro_sources.cpp b/Source/sources/Castro_sources.cpp index 507a782929..f99aac52dc 100644 --- a/Source/sources/Castro_sources.cpp +++ b/Source/sources/Castro_sources.cpp @@ -1,5 +1,4 @@ #include -#include #ifdef RADIATION #include diff --git a/Source/sources/Castro_sponge.cpp b/Source/sources/Castro_sponge.cpp index 8a79f0eea5..2109d63374 100644 --- a/Source/sources/Castro_sponge.cpp +++ b/Source/sources/Castro_sponge.cpp @@ -1,6 +1,5 @@ #ifdef SPONGE #include -#include #ifdef HYBRID_MOMENTUM #include diff --git a/Source/sources/Castro_thermo.cpp b/Source/sources/Castro_thermo.cpp index a81a42e18f..21ef8b9034 100644 --- a/Source/sources/Castro_thermo.cpp +++ b/Source/sources/Castro_thermo.cpp @@ -1,5 +1,4 @@ #include -#include using namespace amrex;