/*@@ @file InitSymBound.F @date May 13 1999 @author Gabrielle Allen @desc Sets the symmetries for the Constraint grid functions @enddesc @@*/ #include "cctk.h" #include "cctk_Arguments.h" /*@@ @routine InitSymBound @date May 13 1999 @author Gabrielle Allen @desc Sets the symmetries for the Constraint grid functions @enddesc @calls @calledby @history @endhistory @@*/ subroutine ADM_Constraint_InitSymBound(CCTK_FARGUMENTS) implicit none DECLARE_CCTK_FARGUMENTS INTEGER, PARAMETER :: one = 1 INTEGER, DIMENSION(3) :: sym INTEGER :: ierr c GROUP: constraints sym(1) = one sym(2) = one sym(3) = one call SetCartSymVN(ierr,cctkGH, sym, 'adm_constraints::ham') sym(1) = -one sym(2) = one sym(3) = one call SetCartSymVN(ierr,cctkGH, sym, 'adm_constraints::momx') sym(1) = one sym(2) = -one sym(3) = one call SetCartSymVN(ierr,cctkGH, sym, 'adm_constraints::momy') sym(1) = one sym(2) = one sym(3) = -one call SetCartSymVN(ierr,cctkGH, sym, 'adm_constraints::momz') return end subroutine ADM_Constraint_InitSymbound