aboutsummaryrefslogtreecommitdiff
path: root/src/check_parameters.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/check_parameters.cc')
-rw-r--r--src/check_parameters.cc14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/check_parameters.cc b/src/check_parameters.cc
index fac34a1..fe0680c 100644
--- a/src/check_parameters.cc
+++ b/src/check_parameters.cc
@@ -10,12 +10,14 @@ void ID_Mag_NS_check_parameters (CCTK_ARGUMENTS)
DECLARE_CCTK_ARGUMENTS;
DECLARE_CCTK_PARAMETERS;
- if (not CCTK_EQUALS (initial_data , "ID_Mag_NS") or
- not CCTK_EQUALS (initial_lapse, "ID_Mag_NS") or
- not CCTK_EQUALS (initial_shift, "ID_Mag_NS") or
- not CCTK_EQUALS (initial_hydro, "ID_Mag_NS") or
- not CCTK_EQUALS (initial_Bmag, "ID_Mag_NS"))
+ if (not CCTK_EQUALS (initial_data, "ID_Mag_NS") or
+ not CCTK_EQUALS (initial_lapse, "ID_Mag_NS") or
+ not CCTK_EQUALS (initial_shift, "ID_Mag_NS") or
+ not CCTK_EQUALS (initial_dtlapse, "ID_Mag_NS") or
+ not CCTK_EQUALS (initial_dtshift, "ID_Mag_NS") or
+ not CCTK_EQUALS (initial_hydro, "ID_Mag_NS") or
+ not CCTK_EQUALS (initial_Bvec, "ID_Mag_NS"))
{
- CCTK_PARAMWARN ("The parameters ADMBase::initial_data, ADMBase::initial_lapse, ADMBase::initial_shift, HydroBase::initial_hydro, and HydroBase::initial_Bmag must all be set to the value \"ID_Mag_NS\"");
+ CCTK_PARAMWARN ("The parameters ADMBase::initial_data, ADMBase::initial_lapse, ADMBase::initial_shift, ADMBase::initial_dtlapse, ADMBase::initial_dtshift, HydroBase::initial_hydro, and HydroBase::initial_Bvec must all be set to the value \"ID_Mag_NS\"");
}
}