git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@7195 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2011-10-25 16:05:57 +00:00
parent 9e9dcf4f3b
commit 51aef530de
2 changed files with 3 additions and 6 deletions

View File

@ -24,7 +24,7 @@ SIZE = size
# LAMMPS ifdef settings, OPTIONAL # LAMMPS ifdef settings, OPTIONAL
# see possible settings in doc/Section_start.html#2_2 (step 4) # see possible settings in doc/Section_start.html#2_2 (step 4)
LMP_INC = -DLAMMPS_GZIP LMP_INC = -DLAMMPS_GZIP -DLAMMPS_JPEG
# MPI library, REQUIRED # MPI library, REQUIRED
# see discussion in doc/Section_start.html#2_2 (step 5) # see discussion in doc/Section_start.html#2_2 (step 5)
@ -35,7 +35,7 @@ LMP_INC = -DLAMMPS_GZIP
MPI_INC = -DMPICH_SKIP_MPICXX MPI_INC = -DMPICH_SKIP_MPICXX
MPI_PATH = MPI_PATH =
MPI_LIB = -lmpich -lpthread MPI_LIB = -lmpich -lmpl -lpthread
# FFT library, OPTIONAL # FFT library, OPTIONAL
# see discussion in doc/Section_start.html#2_2 (step 6) # see discussion in doc/Section_start.html#2_2 (step 6)
@ -57,7 +57,7 @@ FFT_LIB = -lfftw
JPG_INC = JPG_INC =
JPG_PATH = JPG_PATH =
JPG_LIB = JPG_LIB = -ljpeg
# --------------------------------------------------------------------- # ---------------------------------------------------------------------
# build rules and dependencies # build rules and dependencies

View File

@ -46,9 +46,6 @@ using namespace LAMMPS_NS;
// customize for new sections // customize for new sections
#define NSECTIONS 23 // change when add to header::section_keywords #define NSECTIONS 23 // change when add to header::section_keywords
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#define MAX(a,b) ((a) > (b) ? (a) : (b))
/* ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- */
ReadData::ReadData(LAMMPS *lmp) : Pointers(lmp) ReadData::ReadData(LAMMPS *lmp) : Pointers(lmp)