/*@@ @file ParamCheck.c @date Fri Apr 26 18:03:09 2002 @author Tom Goodale @desc Check the parameters for IDLinearwaves @enddesc @version $Header$ @@*/ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" static const char *rcsid = "$Header$"; CCTK_FILEVERSION(CactusEinstein_IDLinearWaves_ParamCheck_c) /******************************************************************** ********************* Local Data Types *********************** ********************************************************************/ /******************************************************************** ********************* Local Routine Prototypes ********************* ********************************************************************/ /******************************************************************** ***************** Scheduled Routine Prototypes ********************* ********************************************************************/ void IDLinearWaves_ParamChecker(CCTK_ARGUMENTS); /******************************************************************** ********************* Other Routine Prototypes ********************* ********************************************************************/ /******************************************************************** ********************* Local Data ***************************** ********************************************************************/ /******************************************************************** ********************* External Routines ********************** ********************************************************************/ void IDLinearWaves_ParamChecker(CCTK_ARGUMENTS) { DECLARE_CCTK_ARGUMENTS DECLARE_CCTK_PARAMETERS /* Do we know how to deal with this type of metric ? */ if(! CCTK_EQUALS(metric_type, "physical") && ! CCTK_EQUALS(metric_type, "static conformal")) { CCTK_PARAMWARN("Unknown ADMBase::metric_type - known types are \"physical\" and \"static conformal\""); } } /******************************************************************** ********************* Local Routines ************************* ********************************************************************/