aboutsummaryrefslogtreecommitdiff
path: root/CarpetAttic/CarpetIOFlexIOCheckpoint/param.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'CarpetAttic/CarpetIOFlexIOCheckpoint/param.ccl')
-rw-r--r--CarpetAttic/CarpetIOFlexIOCheckpoint/param.ccl108
1 files changed, 108 insertions, 0 deletions
diff --git a/CarpetAttic/CarpetIOFlexIOCheckpoint/param.ccl b/CarpetAttic/CarpetIOFlexIOCheckpoint/param.ccl
new file mode 100644
index 000000000..079ebb72c
--- /dev/null
+++ b/CarpetAttic/CarpetIOFlexIOCheckpoint/param.ccl
@@ -0,0 +1,108 @@
+# Parameter definitions for thorn CarpetIOFlexIO
+# $Header: /home/eschnett/C/carpet/Carpet/CarpetAttic/CarpetIOFlexIOCheckpoint/param.ccl,v 1.3 2003/10/02 11:34:03 cvs_anon Exp $
+
+
+
+#shares: IO
+#shares: Carpet
+
+
+
+
+private:
+
+BOOLEAN verbose "verbose info output"
+{
+} "no"
+
+
+CCTK_STRING out3D_dir "Name of 3D FlexIO output directory, overrides out_dir" STEERABLE = ALWAYS
+{
+ .* :: "A regex which matches everything"
+} "."
+
+CCTK_STRING out3D_vars "Variables to output in 3D FlexIO file format" STEERABLE = ALWAYS
+{
+ .* :: "A regex which matches everything"
+} ""
+
+KEYWORD out3D_format "File format to use for 3D FlexIO output" STEERABLE = ALWAYS
+{
+ "IEEE" :: "IEEE, readable by the FlexIO library"
+ "HDF4" :: "The old HDF format"
+ "HDF5" :: "The new HDF format"
+} "HDF5"
+
+CCTK_STRING out3D_extension "File extension to use for 3D FlexIO output" STEERABLE = ALWAYS
+{
+ .* :: "A regex which matches everything"
+} ""
+
+CCTK_INT out3D_every "How often to do 3D FlexIO output, overrides out_every" STEERABLE = ALWAYS
+{
+ -1:* :: "Values <= 0 disable 3D output"
+} -1
+
+
+
+CCTK_INT out3D_max_num_lower_ghosts "Maximum number of lower ghost zones that are output"
+{
+ -1 :: "output all ghost zones"
+ 0:* :: "output that many ghost zones"
+} -1
+
+CCTK_INT out3D_max_num_upper_ghosts "Maximum number of upper ghost zones that are output"
+{
+ -1 :: "output all ghost zones"
+ 0:* :: "output that many ghost zones"
+} -1
+
+BOOLEAN out3D_output_outer_boundary "Output all of the outer boundary ghost zones even if not all ghost zones are output"
+{
+} "yes"
+
+
+
+CCTK_STRING indir3D "Name of 3D FlexIO input directory" STEERABLE = ALWAYS
+{
+ .* :: "A regex which matches everything"
+} "."
+
+CCTK_STRING in3D_vars "Variables to input in 3D FlexIO file format" STEERABLE = ALWAYS
+{
+ .* :: "A regex which matches everything"
+} ""
+
+KEYWORD in3D_format "File format to use for 3D FlexIO input" STEERABLE = ALWAYS
+{
+ "IEEE" :: "IEEE, readable by the FlexIO library"
+ "HDF4" :: "The old HDF format"
+ "HDF5" :: "The new HDF format"
+} "HDF5"
+
+CCTK_STRING in3D_extension "File extension to use for 3D FlexIO input" STEERABLE = ALWAYS
+{
+ .* :: "A regex which matches everything"
+} ""
+
+BOOLEAN checkpoint "Do checkpointing with IOFlexIO" STEERABLE = ALWAYS
+{
+} "no"
+
+BOOLEAN checkpoint_next "Checkpoint at next iteration" STEERABLE = ALWAYS
+{
+} "no"
+
+shares: IO
+
+USES INT checkpoint_every
+USES INT checkpoint_keep
+USES BOOLEAN checkpoint_ID
+USES BOOLEAN recover_and_remove
+USES BOOLEAN checkpoint_on_terminate
+USES KEYWORD recover
+USES STRING recover_file
+USES STRING out_dir
+USES CCTK_INT out_every
+
+