git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@15250 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -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];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user