forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@15346 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
efa508d905
commit
137f19ba9f
|
@ -244,6 +244,31 @@ Pair *Force::pair_match(const char *word, int exact, int nsub)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ----------------------------------------------------------------------
|
||||||
|
return style name of Pair class that matches Pair ptr
|
||||||
|
called by Neighbor::print_neigh_info()
|
||||||
|
return NULL if no match
|
||||||
|
------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
char *Force::pair_match_ptr(Pair *ptr)
|
||||||
|
{
|
||||||
|
if (ptr == pair) return pair_style;
|
||||||
|
|
||||||
|
if (strstr(pair_style,"hybrid")) {
|
||||||
|
PairHybrid *hybrid = (PairHybrid *) pair;
|
||||||
|
for (int i = 0; i < hybrid->nstyles; i++)
|
||||||
|
if (ptr == hybrid->styles[i]) return hybrid->keywords[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (strstr(pair_style,"hybrid/overlay")) {
|
||||||
|
PairHybridOverlay *hybrid = (PairHybridOverlay *) pair;
|
||||||
|
for (int i = 0; i < hybrid->nstyles; i++)
|
||||||
|
if (ptr == hybrid->styles[i]) return hybrid->keywords[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------
|
/* ----------------------------------------------------------------------
|
||||||
create a bond style, called from input script or restart file
|
create a bond style, called from input script or restart file
|
||||||
------------------------------------------------------------------------- */
|
------------------------------------------------------------------------- */
|
||||||
|
|
Loading…
Reference in New Issue