aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authortradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2000-04-28 09:38:07 +0000
committertradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2000-04-28 09:38:07 +0000
commit8dc46da98f6aeae4d03345246b82dcb25c259829 (patch)
tree517c5e7aa38d23c936bbeac75b26f97924b80309 /param.ccl
parent00f5e7f9f017617726a2ec29c9710ea76da9c52d (diff)
Changed default name for checkpoint files. The '.chkpt'
and the '.it_<iteration>' suffix are switched to comply with filereader filenames. Added new STRING parameters IO::recover_ID_files and IO::recover_ID_vars for implementing filereader functionality. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOUtil/trunk@64 b32723a9-ab3a-4a60-88e2-2e5d99d7c17a
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl12
1 files changed, 10 insertions, 2 deletions
diff --git a/param.ccl b/param.ccl
index 7eae3b3..7cb0d1a 100644
--- a/param.ccl
+++ b/param.ccl
@@ -116,7 +116,7 @@ INT checkpoint_keep "How many checkpoint files to keep" STEERABLE = RECOVER
STRING checkpoint_file "File name for regular checkpoint" STEERABLE = RECOVER
{
.* :: A regex which matches everything
-} "checkpoint"
+} "checkpoint.chkpt"
STRING checkpoint_ID_file "File name for initial data checkpoint" STEERABLE = RECOVER
{
.* :: A regex which matches everything
@@ -124,7 +124,7 @@ STRING checkpoint_ID_file "File name for initial data checkpoint" STEERABLE = RE
STRING recover_file "File name of recovery file" STEERABLE = RECOVER
{
.* :: A regex which matches everything
-} "checkpoint"
+} "checkpoint.chkpt"
STRING checkpoint_dir "Output directory for checkpoint files" STEERABLE = RECOVER
{
.* :: A regex which matches everything
@@ -133,3 +133,11 @@ STRING recovery_dir "Directory to look for the recovery file" STEERABLE = RECOVE
{
.* :: A regex which matches everything
} "."
+STRING recover_ID_files "List of files to read in as initial data" STEERABLE = RECOVER
+{
+ .* :: A regex which matches everything
+} ""
+STRING recover_ID_vars "List of variables to read in from the given initial data files" STEERABLE = RECOVER
+{
+ .* :: A regex which matches everything
+} "all"