summaryrefslogtreecommitdiffstats
path: root/ds9/parsers/mosaicwcsparser.tac
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2018-05-11 17:09:54 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2018-05-11 17:09:54 (GMT)
commit92fc6a10347cc38b62c621728ed33aa267dcc75b (patch)
tree6ac59b5cf01d562cf2290505cc5fc9104c852a89 /ds9/parsers/mosaicwcsparser.tac
parent44b298577ac9f07ec6560fe0a1f6bbd37f8bd250 (diff)
downloadblt-92fc6a10347cc38b62c621728ed33aa267dcc75b.zip
blt-92fc6a10347cc38b62c621728ed33aa267dcc75b.tar.gz
blt-92fc6a10347cc38b62c621728ed33aa267dcc75b.tar.bz2
add ds9 mosaicwcs/mosiciraf parsers
Diffstat (limited to 'ds9/parsers/mosaicwcsparser.tac')
-rw-r--r--ds9/parsers/mosaicwcsparser.tac41
1 files changed, 41 insertions, 0 deletions
diff --git a/ds9/parsers/mosaicwcsparser.tac b/ds9/parsers/mosaicwcsparser.tac
new file mode 100644
index 0000000..f29bff9
--- /dev/null
+++ b/ds9/parsers/mosaicwcsparser.tac
@@ -0,0 +1,41 @@
+%{
+%}
+
+#include coords.tin
+#include string.tin
+
+%start command
+
+%token MASK_
+%token NEW_
+
+%%
+
+#include coords.trl
+
+command : mosaicwcs
+ | mosaicwcs {yyclearin; YYACCEPT} STRING_
+ ;
+
+mosaicwcs : sys opts {MosaicWCSCmdLoad {} $2 $1}
+ | sys opts STRING_ {MosaicWCSCmdLoad $3 $2 $1}
+ ;
+
+sys : {set _ wcs}
+ | wcssys {set _ $1}
+ ;
+
+opts :
+ | NEW_ {CreateFrame; set _ {}}
+ | MASK_ {set _ mask}
+ ;
+
+%%
+
+proc mosaicwcs::yyerror {msg} {
+ variable yycnt
+ variable yy_current_buffer
+ variable index_
+
+ ParserError $msg $yycnt $yy_current_buffer $index_
+}