replace leading tabs
This commit is contained in:
@ -53,22 +53,22 @@ ComputePropertyChunk::ComputePropertyChunk(LAMMPS *lmp, int narg, char **arg) :
|
||||
countflag = 1;
|
||||
} else if (strcmp(arg[iarg],"id") == 0) {
|
||||
if (!cchunk->compress)
|
||||
error->all(FLERR,"Compute chunk/atom stores no IDs for "
|
||||
error->all(FLERR,"Compute chunk/atom stores no IDs for "
|
||||
"compute property/chunk");
|
||||
pack_choice[i] = &ComputePropertyChunk::pack_id;
|
||||
} else if (strcmp(arg[iarg],"coord1") == 0) {
|
||||
if (cchunk->ncoord < 1)
|
||||
error->all(FLERR,"Compute chunk/atom stores no coord1 for "
|
||||
error->all(FLERR,"Compute chunk/atom stores no coord1 for "
|
||||
"compute property/chunk");
|
||||
pack_choice[i] = &ComputePropertyChunk::pack_coord1;
|
||||
} else if (strcmp(arg[iarg],"coord2") == 0) {
|
||||
if (cchunk->ncoord < 2)
|
||||
error->all(FLERR,"Compute chunk/atom stores no coord2 for "
|
||||
error->all(FLERR,"Compute chunk/atom stores no coord2 for "
|
||||
"compute property/chunk");
|
||||
pack_choice[i] = &ComputePropertyChunk::pack_coord2;
|
||||
} else if (strcmp(arg[iarg],"coord3") == 0) {
|
||||
if (cchunk->ncoord < 3)
|
||||
error->all(FLERR,"Compute chunk/atom stores no coord3 for "
|
||||
error->all(FLERR,"Compute chunk/atom stores no coord3 for "
|
||||
"compute property/chunk");
|
||||
pack_choice[i] = &ComputePropertyChunk::pack_coord3;
|
||||
} else error->all(FLERR,
|
||||
|
||||
Reference in New Issue
Block a user