aboutsummaryrefslogtreecommitdiff
path: root/src/IsoSurfacer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/IsoSurfacer.c')
-rw-r--r--src/IsoSurfacer.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/IsoSurfacer.c b/src/IsoSurfacer.c
index c41c745..18434f7 100644
--- a/src/IsoSurfacer.c
+++ b/src/IsoSurfacer.c
@@ -110,7 +110,7 @@ static int IsoSurfacerHandleCommands(cGH *GH)
/* Here it just needs to read from the control socket
and then change the isosurface appropriately */
-
+
#ifdef CCTK_MPI
/* now we need to bcast this value to all procs */
{
@@ -128,6 +128,7 @@ static int IsoSurfacerHandleCommands(cGH *GH)
PUGH_MPI_REAL,0, /* ugh. nor REAL8 */
pughGH->PUGH_COMM_WORLD));
myGH->isovalue=tmpval; /* copyback */
+ /* CCTK_SetParameter(); how? */
}
#else
if(Iso_PollCommand(GH,&command)){
@@ -138,6 +139,7 @@ static int IsoSurfacerHandleCommands(cGH *GH)
myGH->isovalue=atof(command.cmd.value); /* steer it. */
/* If we have MPI, must propagate the steering info
to all processes */
+ /* CCTK_SetParameter(); how? */
}
#endif
return 0;