aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authortradke <tradke@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2001-07-17 10:08:20 +0000
committertradke <tradke@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2001-07-17 10:08:20 +0000
commit8dbbd429bc8791cc4906ec413e3a802adbb8b594 (patch)
tree9acd9471db4fe77f2e3ad1e43750762e6d186216 /doc
parent4f2427c90bc563a70344c5fea6edae6b46d2a6ee (diff)
Added some more docs for the recombiner and an example shell command
how to easily recombine several variables at once. Thanks to Werner. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@213 ebee0441-1374-4afa-a3b5-247f3ba15b9a
Diffstat (limited to 'doc')
-rw-r--r--doc/documentation.tex33
1 files changed, 32 insertions, 1 deletions
diff --git a/doc/documentation.tex b/doc/documentation.tex
index f85cdc6..5dc5a70 100644
--- a/doc/documentation.tex
+++ b/doc/documentation.tex
@@ -61,7 +61,38 @@ To build the recombiner just do a
in the Cactus toplevel directory. The recombiner executable {\tt
ieee\_recombiner} will be placed in the {\tt exe/<configuration>/}
-subdirectory.\\[3ex]
+subdirectory.\\
+Its usage is:
+\begin{verbatim}
+~/Cactus/exe/wave> ieee_recombiner
+
+-------------------------------
+Cactus 4 IEEEIO File Recombiner
+-------------------------------
+
+Usage: recombiner <chunked_infile0> <unchunked_outfile>
+ eg, recombiner alp_3d.file_0.ieee alp_3d.ieee
+
+\end{verbatim}
+
+If you have a lot of different variables to recombine you can use the following
+Bourne shell commands to recombine them.
+This assumes that the chunked output files for each variable are located in a
+subdirectory {\tt <varname>\_3d/}.
+The recombined output file {\tt <varname>\_3d.ieee} would then be placed into
+the current working directory:
+
+\begin{verbatim}
+ for var in *_3d ; \
+ do \
+ { \
+ if [ ! -r $var.ieee ] ; then \
+ ieee_recombiner $var/$var.file_0.ieee $var.ieee; \
+ fi; \
+ }; \
+ done
+\end{verbatim}
+\vspace*{3ex}
{\bf Checkpointing \& Recovery}\\