aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--param.ccl2
-rw-r--r--src/IDFileADM_ParamCheck.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/param.ccl b/param.ccl
index b119d8a..841ad94 100644
--- a/param.ccl
+++ b/param.ccl
@@ -20,4 +20,4 @@ EXTENDS KEYWORD initial_data
shares: IO
-USES STRING filereader_ID_files
+USES STRING filereader_ID_vars
diff --git a/src/IDFileADM_ParamCheck.c b/src/IDFileADM_ParamCheck.c
index c5a1df7..40f9bab 100644
--- a/src/IDFileADM_ParamCheck.c
+++ b/src/IDFileADM_ParamCheck.c
@@ -27,14 +27,14 @@ void IDFileADM_ParamCheck (CCTK_ARGUMENTS)
}
nvars = CCTK_TraverseString
- (filereader_ID_files, callback, variable_is_read, CCTK_GROUP_OR_VAR);
+ (filereader_ID_vars, callback, variable_is_read, CCTK_GROUP_OR_VAR);
assert (nvars >= 0);
if (CCTK_EQUALS(initial_lapse, "read from file")) {
int const ialp = CCTK_VarIndex ("ADMBase::alp");
assert (ialp >= 0);
if (! variable_is_read[ialp]) {
- CCTK_PARAMWARN ("The lapse is initialised using the file reader, but the group ADMBase::lapse has not been scheduled to be read. Please set the parameter \"IO::filereader_ID_files\" accordingly.");
+ CCTK_PARAMWARN ("The lapse is initialised using the file reader, but the group ADMBase::lapse has not been scheduled to be read. Please set the parameter \"IO::filereader_ID_vars\" accordingly.");
}
}
@@ -48,7 +48,7 @@ void IDFileADM_ParamCheck (CCTK_ARGUMENTS)
if (! variable_is_read[ibetax]
|| ! variable_is_read[ibetay]
|| ! variable_is_read[ibetaz]) {
- CCTK_PARAMWARN ("The shift is initialised using the file reader, but the group ADMBase::shift has not been scheduled to be read. Please set the parameter \"IO::filereader_ID_files\" accordingly.");
+ CCTK_PARAMWARN ("The shift is initialised using the file reader, but the group ADMBase::shift has not been scheduled to be read. Please set the parameter \"IO::filereader_ID_vars\" accordingly.");
}
}
@@ -71,7 +71,7 @@ void IDFileADM_ParamCheck (CCTK_ARGUMENTS)
|| ! variable_is_read[igyy]
|| ! variable_is_read[igyz]
|| ! variable_is_read[igzz]) {
- CCTK_PARAMWARN ("The metric is initialised using the file reader, but the group ADMBase::metric has not been scheduled to be read. Please set the parameter \"IO::filereader_ID_files\" accordingly.");
+ CCTK_PARAMWARN ("The metric is initialised using the file reader, but the group ADMBase::metric has not been scheduled to be read. Please set the parameter \"IO::filereader_ID_vars\" accordingly.");
}
}