casacore
Loading...
Searching...
No Matches
MSObservationGram.h
Go to the documentation of this file.
1//# MSObservationGram.h: Grammar for ms scan sub-expressions
2//# Copyright (C) 1998
3//# Associated Universities, Inc. Washington DC, USA.
4//#
5//# This library is free software; you can redistribute it and/or modify it
6//# under the terms of the GNU Library General Public License as published by
7//# the Free Software Foundation; either version 2 of the License, or (at your
8//# option) any later version.
9//#
10//# This library is distributed in the hope that it will be useful, but WITHOUT
11//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13//# License for more details.
14//#
15//# You should have received a copy of the GNU Library General Public License
16//# along with this library; if not, write to the Free Software Foundation,
17//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18//#
19//# Correspondence concerning AIPS++ should be addressed as follows:
20//# Internet email: casa-feedback@nrao.edu.
21//# Postal address: AIPS++ Project Office
22//# National Radio Astronomy Observatory
23//# 520 Edgemont Road
24//# Charlottesville, VA 22903-2475 USA
25
26#ifndef MS_MSOBSERVATIONGRAM_H
27#define MS_MSOBSERVATIONGRAM_H
28
29
30//# Includes
31#include <casacore/casa/aips.h>
32#include <casacore/ms/MSSel/MSObservationParse.h>
33#include <casacore/casa/BasicSL/String.h>
34
35namespace casacore { //# NAMESPACE CASACORE - BEGIN
36
37//# Forward Declarations
38class MeasurementSet;
39class TableExprNode;
40
41// <summary>
42// Global functions for flex/bison scanner/parser for MSObservationGram
43// </summary>
44
45// <use visibility=local>
46
47// <reviewed reviewer="" date="" tests="">
48// </reviewed>
49
50// <prerequisite>
51//# Classes you should understand before using this one.
52// <li> MSObservationGram.l and .y (flex and bison grammar)
53// </prerequisite>
54
55// <synopsis>
56// Global functions are needed to define the input of the flex scanner
57// and to start the bison parser.
58// The input is taken from a string.
59// </synopsis>
60
61// <motivation>
62// It is necessary to be able to give an image expression in ASCII.
63// This can be used in glish.
64// </motivation>
65// <todo asof="$DATE:$">
66//# A List of bugs, limitations, extensions or planned refinements.
67// </todo>
68
69
70// <group name=MSObservationGramFunctions>
72// Declare the bison parser (is implemented by bison command).
74 const MSObservation& obsSubTable,
75 const TableExprNode& colAsTEN,
76 const String& command,
77 Vector<Int>& idList);
78
80 const TableExprNode& colAsTEN,
81 const String& command,
82 Vector<Int>& selectedIDs);
83 // The yyerror function for the parser.
84 // It throws an exception with the current token.
85 void MSObservationGramerror (const char*);
86
87 // Give the table expression node.
88 //const TableExprNode *msObservationGramParseNode();
90
91 // Give the current position in the string.
92 // This can be used when parse errors occur.
94
95 // Declare the input routine for flex/bison.
96 int msObservationGramInput (char* buf, int max_size);
97
98 // A function to remove escaped characters.
99 //String msObservationGramRemoveEscapes (const String& in);
100
101 // A function to remove quotes from a quoted string.
102 //String msObservationGramRemoveQuotes (const String& in);
103
104 // </group>
105
106} //# NAMESPACE CASACORE - END
107
108#endif
String: the storage and methods of handling collections of characters.
Definition String.h:223
this file contains all the compiler specific defines
Definition mainpage.dox:28
int Int
Definition aipstype.h:48
void msObservationGramParseDeleteNode()
Give the table expression node.
Int & msObservationGramPosition()
Give the current position in the string.
void MSObservationGramerror(const char *)
The yyerror function for the parser.
int msObservationGramInput(char *buf, int max_size)
Declare the input routine for flex/bison.
TableExprNode msObservationGramParseCommand(const MeasurementSet *ms, const MSObservation &obsSubTable, const TableExprNode &colAsTEN, const String &command, Vector< Int > &idList)
Declare the bison parser (is implemented by bison command).
TableExprNode baseMSObservationGramParseCommand(MSObservationParse *parser, const TableExprNode &colAsTEN, const String &command, Vector< Int > &selectedIDs)