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

This commit is contained in:
sjplimp
2011-01-04 19:12:58 +00:00
parent f3300e9536
commit d5aa03447b
27 changed files with 580 additions and 487 deletions

View File

@ -22,6 +22,7 @@ CommandStyle(write_restart,WriteRestart)
#include "stdio.h"
#include "pointers.h"
#include "lmptype.h"
namespace LAMMPS_NS {
@ -34,7 +35,7 @@ class WriteRestart : protected Pointers {
private:
int me,nprocs;
FILE *fp;
double natoms; // natoms (sum of nlocal) to write into file
bigint natoms; // natoms (sum of nlocal) to write into file
void header();
void type_arrays();
@ -43,6 +44,7 @@ class WriteRestart : protected Pointers {
void write_int(int, int);
void write_double(int, double);
void write_char(int, char *);
void write_bigint(int, bigint);
};
}