aboutsummaryrefslogtreecommitdiff
path: root/interface.ccl
diff options
context:
space:
mode:
authorschnetter <schnetter@732e31d2-b375-409b-9bd3-699c3b2c9da5>2002-10-22 14:59:28 +0000
committerschnetter <schnetter@732e31d2-b375-409b-9bd3-699c3b2c9da5>2002-10-22 14:59:28 +0000
commit7882dfdbfcdf6f97e6e9bb6cf69c33bc07e149d2 (patch)
tree5a88a399350c6ef108a3375c8a708b22b1646d1a /interface.ccl
parent736e86a468c333e9f288d453079a9aeb82434ad4 (diff)
Testing the Slab thorn.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SlabTest/trunk@2 732e31d2-b375-409b-9bd3-699c3b2c9da5
Diffstat (limited to 'interface.ccl')
-rw-r--r--interface.ccl30
1 files changed, 30 insertions, 0 deletions
diff --git a/interface.ccl b/interface.ccl
new file mode 100644
index 0000000..ac13f1e
--- /dev/null
+++ b/interface.ccl
@@ -0,0 +1,30 @@
+# Interface definition for thorn SlabTest
+# $Header$
+
+IMPLEMENTS: SlabTest
+
+INHERITS: Slab
+
+USES INCLUDE HEADER: Slab.h
+
+
+
+CCTK_REAL gfs TYPE=gf
+{
+ gfx gfy gfz
+} "grid functions"
+
+CCTK_REAL a1s TYPE=array DIM=1 SIZE=10
+{
+ a1x a1y a1z
+} "1D grid arrays"
+
+CCTK_REAL a2s TYPE=array DIM=2 SIZE=10,10
+{
+ a2x a2y a2z
+} "2D grid arrays"
+
+CCTK_REAL a3s TYPE=array DIM=3 SIZE=10,10,10
+{
+ a3x a3y a3z
+} "3D grid arrays"