USER-DPD: whitespace and indentation fixes

This commit is contained in:
Tim Mattox
2016-10-06 16:01:32 -04:00
parent 9789f047d7
commit 9507a786f0
3 changed files with 270 additions and 267 deletions

View File

@ -34,10 +34,10 @@ FixDPDenergy::FixDPDenergy(LAMMPS *lmp, int narg, char **arg) :
pairDPDE = NULL;
pairDPDE = (PairDPDfdtEnergy *) force->pair_match("dpd/fdt/energy",1);
if(pairDPDE == NULL)
if (pairDPDE == NULL)
error->all(FLERR,"Must use pair_style dpd/fdt/energy with fix dpd/energy");
if(!(atom->dpd_flag))
if (!(atom->dpd_flag))
error->all(FLERR,"Must use atom_style dpd/fdt/energy with fix dpd/energy");
}