aboutsummaryrefslogtreecommitdiff
path: root/src/SetSym.F
diff options
context:
space:
mode:
authormiguel <miguel@89daf98e-ef62-4674-b946-b8ff9de2216c>2000-04-26 14:14:37 +0000
committermiguel <miguel@89daf98e-ef62-4674-b946-b8ff9de2216c>2000-04-26 14:14:37 +0000
commit209e5cb4038c39b4c3c584fa37b4d0f6928a45d1 (patch)
treec6761760820871a5e44e70e7d97fc31116aa0351 /src/SetSym.F
parent21cdf2c06962a014ba003fafb2a62bbc8f1b7f61 (diff)
Adding symmetries of more grid functions.
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinder/trunk@73 89daf98e-ef62-4674-b946-b8ff9de2216c
Diffstat (limited to 'src/SetSym.F')
-rw-r--r--src/SetSym.F32
1 files changed, 29 insertions, 3 deletions
diff --git a/src/SetSym.F b/src/SetSym.F
index 66a4899..8768816 100644
--- a/src/SetSym.F
+++ b/src/SetSym.F
@@ -33,9 +33,9 @@
DECLARE_CCTK_FARGUMENTS
DECLARE_CCTK_PARAMETERS
- INTEGER, PARAMETER :: one = 1
- INTEGER sym(3)
- INTEGER CCTK_Equals
+ CCTK_INT sym(3)
+ CCTK_INT CCTK_Equals
+ CCTK_INT, PARAMETER :: one = 1
c +,+,+
@@ -45,8 +45,34 @@ c +,+,+
call SetCartSymmetry(cctkGH,sym,'ahfinder::ahfgrid')
call SetCartSymmetry(cctkGH,sym,'ahfinder::ahf_exp')
+ call SetCartSymmetry(cctkGH,sym,'ahfinder::ahfgradn')
+ call SetCartSymmetry(cctkGH,sym,'ahfinder::ahfgauss')
call SetCartSymmetry(cctkGH,sym,'ahfinder::ahmask')
+c -,+,+
+
+ sym(1)=-one
+ sym(2)=+one
+ sym(3)=+one
+
+ call SetCartSymmetry(cctkGH,sym,'ahfinder::ahfgradx')
+
+c +,-,+
+
+ sym(1)=+one
+ sym(2)=-one
+ sym(3)=+one
+
+ call SetCartSymmetry(cctkGH,sym,'ahfinder::ahfgrady')
+
+c +,+,-
+
+ sym(1)=+one
+ sym(2)=+one
+ sym(3)=-one
+
+ call SetCartSymmetry(cctkGH,sym,'ahfinder::ahfgradz')
+
c End.
end subroutine AHFinder_SetSym