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

This commit is contained in:
sjplimp
2016-07-01 23:31:09 +00:00
parent a99c922a14
commit 88812c44fb
9 changed files with 40 additions and 6 deletions

View File

@ -1705,6 +1705,8 @@ void ReadData::pairIJcoeffs()
void ReadData::bondcoeffs()
{
if (!nbondtypes) return;
char *next;
char *buf = new char[nbondtypes*MAXLINE];
@ -1727,6 +1729,8 @@ void ReadData::bondcoeffs()
void ReadData::anglecoeffs(int which)
{
if (!nangletypes) return;
char *next;
char *buf = new char[nangletypes*MAXLINE];
@ -1751,6 +1755,8 @@ void ReadData::anglecoeffs(int which)
void ReadData::dihedralcoeffs(int which)
{
if (!ndihedraltypes) return;
char *next;
char *buf = new char[ndihedraltypes*MAXLINE];
@ -1778,6 +1784,8 @@ void ReadData::dihedralcoeffs(int which)
void ReadData::impropercoeffs(int which)
{
if (!nimpropertypes) return;
char *next;
char *buf = new char[nimpropertypes*MAXLINE];