aboutsummaryrefslogtreecommitdiff
path: root/src/InitSymBound.c
diff options
context:
space:
mode:
authorallen <allen@90eea020-d82d-4da5-bf6e-4ee79ff7632f>1999-09-10 13:17:29 +0000
committerallen <allen@90eea020-d82d-4da5-bf6e-4ee79ff7632f>1999-09-10 13:17:29 +0000
commit5424fb9e49a1d37b3e1f13806bf6aa3d81e4874f (patch)
tree81ddca6c9e2f91f058639132c16cadef2595120b /src/InitSymBound.c
parentf56f298c3b29c36f03bf55e7a44c7a6fc124bc0a (diff)
This commit was generated by cvs2svn to compensate for changes in r2, which
included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyC/trunk@3 90eea020-d82d-4da5-bf6e-4ee79ff7632f
Diffstat (limited to 'src/InitSymBound.c')
-rw-r--r--src/InitSymBound.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/InitSymBound.c b/src/InitSymBound.c
new file mode 100644
index 0000000..d075e9a
--- /dev/null
+++ b/src/InitSymBound.c
@@ -0,0 +1,40 @@
+ /*@@
+ @file InitSymBound.c
+ @date
+ @author Gabrielle Allen
+ @desc
+ Sets the symmetries for Wave Toy
+ @enddesc
+ @@*/
+
+#include "cctk.h"
+#include "cctk_arguments.h"
+
+ /*@@
+ @routine WaveToyC_InitSymBound
+ @date
+ @author Gabrielle Allen
+ @desc
+ Sets the symmetries for Wave Toy
+ @enddesc
+ @calls
+ @calledby
+ @history
+
+ @endhistory
+
+@@*/
+
+void WaveToyC_InitSymBound(CCTK_CARGUMENTS)
+{
+ DECLARE_CCTK_CARGUMENTS
+
+ int sym[3];
+
+ sym[0] = 1;
+ sym[1] = 1;
+ sym[2] = 1;
+
+ SetCartSymmetry(cctkGH, sym,"wavetoy::phi");
+
+} \ No newline at end of file