Unverified Commit 91a87b74 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

final second round IWYU cleanup

parent 63e5ca53
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -16,10 +16,10 @@
------------------------------------------------------------------------- */

#include "molfile_interface.h"
#include "molfile_plugin.h"

#include <sys/types.h>
#include <cstdio>
#include <dirent.h>
#include <cstring>
#include <cstdlib>
#include <cctype>
@@ -31,8 +31,6 @@
#include <dlfcn.h>
#endif

#include "molfile_plugin.h"

#if vmdplugin_ABIVERSION < 16
#error "unsupported VMD molfile plugin ABI version"
#endif
+4 −5
Original line number Diff line number Diff line
@@ -16,15 +16,14 @@
------------------------------------------------------------------------- */

#include "reader_molfile.h"
#include <cstdlib>
#include <cmath>
#include "molfile_interface.h"

#include "comm.h"
#include "memory.h"
#include "error.h"

#include "molfile_interface.h"
#include "math_const.h"
#include "memory.h"

#include <cmath>
using namespace LAMMPS_NS;
typedef MolfileInterface MFI;
using namespace MathConst;
+3 −7
Original line number Diff line number Diff line
@@ -15,19 +15,15 @@
   Contributing author: Axel Kohlmeyer (Temple U)
------------------------------------------------------------------------- */

#include "omp_compat.h"
#include <cstring>

#include <cmath>
#include "math_extra.h"
#include "fix_nh_asphere_omp.h"

#include "atom.h"
#include "atom_vec_ellipsoid.h"
#include "compute.h"
#include "group.h"
#include "memory.h"
#include "error.h"
#include "math_extra.h"

#include "omp_compat.h"
using namespace LAMMPS_NS;
using namespace FixConst;

+6 −6
Original line number Diff line number Diff line
@@ -15,10 +15,8 @@
   Contributing author: Axel Kohlmeyer (Temple U)
------------------------------------------------------------------------- */

#include "omp_compat.h"
#include "fix_rigid_nh_omp.h"

#include <cstring>
#include "atom.h"
#include "atom_vec_ellipsoid.h"
#include "atom_vec_line.h"
@@ -29,18 +27,20 @@
#include "error.h"
#include "force.h"
#include "kspace.h"
#include "math_const.h"
#include "math_extra.h"
#include "modify.h"
#include "rigid_const.h"
#include "update.h"

#include <cmath>
#include <cstring>

#include "omp_compat.h"
#if defined(_OPENMP)
#include <omp.h>
#endif

#include "math_extra.h"
#include "math_const.h"
#include "rigid_const.h"

using namespace LAMMPS_NS;
using namespace FixConst;
using namespace MathConst;
+8 −10
Original line number Diff line number Diff line
@@ -12,21 +12,19 @@
   Contributing author: Axel Kohlmeyer (Temple U)
------------------------------------------------------------------------- */

#include "omp_compat.h"
#include <cmath>
#include <cstring>
#include <stdint.h> // <cstdint> requires C++-11
#include "pair_agni_omp.h"

#include "atom.h"
#include "comm.h"
#include "force.h"
#include "memory.h"
#include "neighbor.h"
#include "neigh_list.h"
#include "math_special.h"
#include "math_const.h"

#include "math_special.h"
#include "neigh_list.h"
#include "suffix.h"

#include <cmath>
#include <cstring>

#include "omp_compat.h"
using namespace LAMMPS_NS;
using namespace MathSpecial;

Loading