summaryrefslogtreecommitdiff
path: root/src/IO
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-11-24 20:50:59 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-11-24 20:50:59 +0000
commitd475e8040a76eb7776eb5ed8f3f3edc0f417f6c7 (patch)
treee377c6a035918a2ef81c2655946a11b27513e253 /src/IO
parent1de5cce82d9fac333fba971bd5c19547c4d22abe (diff)
Removed tabs from files.
Added @version lines to various header files. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1170 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/IO')
-rw-r--r--src/IO/IOMethods.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/IO/IOMethods.c b/src/IO/IOMethods.c
index 0c39257e..d592a1de 100644
--- a/src/IO/IOMethods.c
+++ b/src/IO/IOMethods.c
@@ -717,7 +717,7 @@ void FMODIFIER FORTRAN_NAME(CCTK_OutputVarByMethod)(int *ierr, cGH *GH, TWO_FORT
@returntype int
@returndesc
0 = Trigger says don't output me this iteration
- 1 = Trigger says output me this iteration
+ 1 = Trigger says output me this iteration
@endreturndesc
@version $Header$
@@ -738,7 +738,7 @@ int CCTKi_rfrTriggerSaysGo(cGH *GH, int variable)
/* Check if it is time to output this variable for this method*/
flag = method->TimeToOutput(GH, variable);
if (flag)
- return 1;
+ return 1;
}
else
{
@@ -761,9 +761,9 @@ int CCTKi_rfrTriggerSaysGo(cGH *GH, int variable)
@enddesc
@calls Util_GetHandledData
CCTK_FullName
- CCTK_VarName
+ CCTK_VarName
IOMethod->TimeToOutput
- IOMethod->OutputVarAs
+ IOMethod->OutputVarAs
@history
@endhistory
@@ -785,8 +785,8 @@ int CCTKi_rfrTriggerSaysGo(cGH *GH, int variable)
@returndesc
0 = This should never happen, since at least
one IO method should have been found by
- CCTKi_rfrTriggerSaysGo
- >0 = Number of IO methods called for output for
+ CCTKi_rfrTriggerSaysGo
+ >0 = Number of IO methods called for output for
this variable
@endreturndesc
@@ -817,9 +817,9 @@ int CCTKi_rfrTriggerAction(void *GH, int variable)
/* Check if it is time to output this variable for this method*/
if (method->TimeToOutput(GH, variable))
{
- /* And if so do call the output routine for the method */
- method->TriggerOutput(GH,variable);
- nmethods++;
+ /* And if so do call the output routine for the method */
+ method->TriggerOutput(GH,variable);
+ nmethods++;
}
}
else