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

This commit is contained in:
sjplimp
2011-01-11 00:41:00 +00:00
parent 4bc2d6f332
commit 82ec94916d
79 changed files with 458 additions and 315 deletions

View File

@ -18,6 +18,7 @@
#include "stdlib.h"
#include "string.h"
#include "fix_event_prd.h"
#include "lmptype.h"
#include "atom.h"
#include "update.h"
#include "domain.h"
@ -50,10 +51,10 @@ FixEventPRD::FixEventPRD(LAMMPS *lmp, int narg, char **arg) :
update clock = elapsed time since last event, across all replicas
------------------------------------------------------------------------- */
void FixEventPRD::store_event_prd(int timestep, int delta_clock)
void FixEventPRD::store_event_prd(bigint ntimestep, int delta_clock)
{
store_event();
event_timestep = timestep;
event_timestep = ntimestep;
clock += delta_clock;
event_number++;
}