diff --git a/src/REPLICA/fix_event.cpp b/src/REPLICA/fix_event.cpp index dfea7a4cec..0cbbb91e89 100644 --- a/src/REPLICA/fix_event.cpp +++ b/src/REPLICA/fix_event.cpp @@ -86,9 +86,6 @@ void FixEvent::store_event() for (int i = 0; i < nlocal; i++) domain->unmap(x[i],image[i],xevent[i]); -// printf("store_event %g %d %g %d \n", -// x[8][1],image[8],xevent[8][1],0); - } /* ---------------------------------------------------------------------- @@ -102,9 +99,6 @@ void FixEvent::restore_event() int *image = atom->image; int nlocal = atom->nlocal; -// printf("restore_event1 %g %d %g %d \n", -// x[8][1],image[8],xevent[8][1],0); - for (int i = 0; i < nlocal; i++) { x[i][0] = xevent[i][0]; x[i][1] = xevent[i][1]; @@ -118,9 +112,6 @@ void FixEvent::restore_event() // domain->remap(x[i]); } -// printf("restore_event2 %g %d %g %d \n", -// x[8][1],image[8],xevent[8][1],0); - } /* ---------------------------------------------------------------------- @@ -136,9 +127,6 @@ void FixEvent::store_state() int *image = atom->image; int nlocal = atom->nlocal; -// printf("store_state %g %d %g %d \n", -// xold[8][1],imageold[8],x[8][1],image[8]); - for (int i = 0; i < nlocal; i++) { xold[i][0] = x[i][0]; xold[i][1] = x[i][1]; @@ -162,9 +150,6 @@ void FixEvent::restore_state() int *image = atom->image; int nlocal = atom->nlocal; -// printf("restore_state %g %d %g %d \n", -// xold[8][1],imageold[8],x[8][1],image[8]); - for (int i = 0; i < nlocal; i++) { x[i][0] = xold[i][0]; x[i][1] = xold[i][1]; diff --git a/src/REPLICA/fix_event_prd.cpp b/src/REPLICA/fix_event_prd.cpp index d6d0e063b1..fef22c15a4 100644 --- a/src/REPLICA/fix_event_prd.cpp +++ b/src/REPLICA/fix_event_prd.cpp @@ -96,7 +96,6 @@ void FixEventPRD::restart(char *buf) double *list = (double *) buf; event_number = static_cast (list[n++]); - printf("Event number restart = %d\n",event_number); event_timestep = static_cast (list[n++]); clock = static_cast (list[n++]); replica_number = static_cast (list[n++]);