Skip to content
Snippets Groups Projects
Commit 0fd57a6f authored by sjplimp's avatar sjplimp
Browse files

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@14395 f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent 6f10e999
No related branches found
No related tags found
No related merge requests found
......@@ -707,7 +707,9 @@ int ReadDump::fields_and_keywords(int narg, char **arg)
int ReadDump::whichtype(char *str)
{
int type = -1;
if (strcmp(str,"x") == 0) type = X;
if (strcmp(str,"id") == 0) type = ID;
else if (strcmp(str,"type") == 0) type = TYPE;
else if (strcmp(str,"x") == 0) type = X;
else if (strcmp(str,"y") == 0) type = Y;
else if (strcmp(str,"z") == 0) type = Z;
else if (strcmp(str,"vx") == 0) type = VX;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment