summaryrefslogtreecommitdiff
path: root/src/main/rfrInterface.c
diff options
context:
space:
mode:
authorjmasso <jmasso@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-29 18:36:54 +0000
committerjmasso <jmasso@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-29 18:36:54 +0000
commit5c2bd166a265c649eb531c7b78e4ce2ec9db23d0 (patch)
tree03f5a15d9132445214c84fd5493b377c952c39ac /src/main/rfrInterface.c
parent997762a18f1f1720f301799e715faec97f87e049 (diff)
Some cleaning, info calls, banners, etc.
and changing the default of PUGH::padding_active to "no". This obscure thingy is in principle only useful on the T3E... - Joan git-svn-id: http://svn.cactuscode.org/flesh/trunk@819 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/rfrInterface.c')
-rw-r--r--src/main/rfrInterface.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/rfrInterface.c b/src/main/rfrInterface.c
index ba484999..cdc0e5e2 100644
--- a/src/main/rfrInterface.c
+++ b/src/main/rfrInterface.c
@@ -89,14 +89,14 @@ int CCTKi_rfrPrintTree(cGH *GH,void *rfr_top)
showed_tree = 1;
- printf ("\n-------------------------------------------------------------------------------------\n");
- printf ("\nEvolution tree from the RFR\n\n");
+ printf ("-------------------------------------------------------------------------------------\n");
+ printf ("Evolution tree from the RFR\n");
rfrPrintDescs(rfr_top,GH,CCTK_BASEGRID,"CCTK_BASEGRID","");
rfrPrintDescs(rfr_top,GH,CCTK_INITIAL, "CCTK_INITIAL","");
rfrPrintDescs(rfr_top,GH,CCTK_POSTINITIAL, "CCTK_POSTINITIAL","");
- printf ("\n (Don't forget CCTK_POSTSTEP is here too...)\n");
- printf ("\n do loop over timesteps\n");
+ rfrPrintDescs(rfr_top,GH,CCTK_POSTSTEP,"CCTK_POSTSTEP","");
+ printf ("\n do loop over timesteps\n");
rfrPrintDescs(rfr_top,GH,CCTK_PRESTEP,"CCTK_PRESTEP"," ");
rfrPrintDescs(rfr_top,GH,CCTK_EVOL,"CCTK_EVOL"," ");
rfrPrintDescs(rfr_top,GH,CCTK_BOUND,"CCTK_BOUND"," ");
@@ -104,11 +104,11 @@ int CCTKi_rfrPrintTree(cGH *GH,void *rfr_top)
printf (" t = t+dt\n");
rfrPrintDescs(rfr_top,GH,CCTK_POSTSTEP,"CCTK_POSTSTEP"," ");
- printf (" if (time-for-output)\n");
+ printf (" if (analysis)\n");
rfrPrintDescs(rfr_top,GH,CCTK_ANALYSIS,"CCTK_ANALYSIS"," ");
printf (" endif\n");
printf (" enddo\n");
- printf ("\n-------------------------------------------------------------------------------------\n");
+ printf ("-------------------------------------------------------------------------------------\n");
}