casacore
Loading...
Searching...
No Matches
MSSpwParse.h
Go to the documentation of this file.
1//# MSSpwParse.h: Classes to hold results from spw grammar parser
2//# Copyright (C) 1994,1995,1997,1998,1999,2000,2001,2003
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_MSSPWPARSE_H
27#define MS_MSSPWPARSE_H
28
29//# Includes
30#include <casacore/casa/aips.h>
31#include <casacore/ms/MSSel/MSParse.h>
32#include <casacore/casa/Arrays/Matrix.h>
33#include <casacore/ms/MSSel/MSSelectionErrorHandler.h>
34
35namespace casacore { //# NAMESPACE CASACORE - BEGIN
36
37//# Forward Declarations
38
39
40// <summary>
41// Class to hold values from field grammar parser
42// </summary>
43
44// <use visibility=local>
45
46// <reviewed reviewer="" date="" tests="">
47// </reviewed>
48
49// <prerequisite>
50//# Classes you should understand before using this one.
51// </prerequisite>
52
53// <etymology>
54// MSSpwParse is the class used to parse a spectral window selection command.
55// </etymology>
56
57// <synopsis> MSSpwParse is used by the parser of spectral window
58// (Spw) sub-expression statements. The parser is written in Bison
59// and Flex in files MSSpwGram.y and .l. The statements in there use
60// the routines in this file to act upon a reduced rule. Since
61// multiple tables can be given (with a shorthand), the table names
62// are stored in a list. The variable names can be qualified by the
63// table name and will be looked up in the appropriate table.
64//
65// The class MSSpwParse only contains information about a table
66// used in the table command. Global variables (like a list and a vector)
67// are used in MSSpwParse.cc to hold further information.
68//
69// Global functions are used to operate on the information.
70// The main function is the global function msSpwCommand.
71// It executes the given STaQL command and returns the resulting ms.
72// This is, in fact, the only function to be used by a user.
73// </synopsis>
74
75// <motivation>
76// It is necessary to be able to give a ms command in ASCII.
77// This can be used in a CLI or in the table browser to get a subset
78// of a table or to sort a table.
79// </motivation>
80
81//# <todo asof="$DATE:$">
82//# A List of bugs, limitations, extensions or planned refinements.
83//# </todo>
84
85
86class MSSpwParse : public MSParse
87{
88public:
89 // Default constructor
91 // ~MSSpwParse() {if (node_p) delete node_p;node_p=0x0;};
92
93 // Associate the ms and the shorthand.
95 MSSpwParse (const MSSpectralWindow& spwSubTable, const MSDataDescription& ddSubTable,
96 const TableExprNode& columnAsTEN);
98
100 const Bool addTen=True,
101 const Bool addIDs=True);
103 const Float factor);
105 Vector<Int>& chanIDList,
106 Int nFSpec);
107
109 Vector<Int>& chanDefaultList);
111
112 // const TableExprNode *selectSpwOrSource(const String& fieldName);
113
114 // Get table expression node object.
115 static const TableExprNode* node();
117 static std::shared_ptr<MSSelectionErrorHandler> thisMSSpwErrorHandler;
119 static Vector<Int> selectedIDs() {return idList;}
121 static void reset() {idList.resize(0);chanList.resize(0,0);ddidList.resize(0);};
122 static void cleanupNode() {if (node_p) delete node_p;node_p=0x0;}
125
127private:
134};
135
136} //# NAMESPACE CASACORE - END
137
138#endif
MeasurementSet * ms()
Get ms object.
void selectChannelsFromDefaultList(Vector< Int > &spwIds, Vector< Int > &chanDefaultList)
static Matrix< Int > chanList
Definition MSSpwParse.h:130
MSSpwParse(const MeasurementSet *ms)
~MSSpwParse() {if (node_p) delete node_p;node_p=0x0;};
static Vector< Int > ddidList
Definition MSSpwParse.h:129
static void cleanupErrorHandler()
Definition MSSpwParse.h:123
static TableExprNode * node_p
Definition MSSpwParse.h:128
static void reset()
Definition MSSpwParse.h:121
MSSpectralWindow & subTable()
Definition MSSpwParse.h:126
void selectChannelsFromIDList(Vector< Int > &spwIds, Vector< Int > &chanIDList, Int nFSpec)
const TableExprNode * selectSpwIdsFromFreqList(const Vector< Float > &spwIds, const Float factor)
static Vector< Int > selectedIDs()
Definition MSSpwParse.h:119
static const TableExprNode * node()
const TableExprNode *selectSpwOrSource(const String& fieldName);
static Vector< Int > selectedDDIDs()
Definition MSSpwParse.h:118
MSSpectralWindow spwSubTable_p
Definition MSSpwParse.h:131
static void cleanupNode()
Definition MSSpwParse.h:122
static void cleanup()
Definition MSSpwParse.h:124
const TableExprNode * selectSpwIdsFromIDList(const Vector< Int > &spwIds, const Bool addTen=True, const Bool addIDs=True)
MSSpwParse(const MSSpectralWindow &spwSubTable, const MSDataDescription &ddSubTable, const TableExprNode &columnAsTEN)
static Vector< Int > idList
Definition MSSpwParse.h:129
static TableExprNode columnAsTEN_p
Definition MSSpwParse.h:133
static MSSpwParse * thisMSSParser
Definition MSSpwParse.h:116
static Matrix< Int > selectedChanIDs()
Definition MSSpwParse.h:120
const TableExprNode * endOfCeremony(const TableExprNode &ten)
static std::shared_ptr< MSSelectionErrorHandler > thisMSSpwErrorHandler
Definition MSSpwParse.h:117
MSSpwParse()
Default constructor.
MSDataDescription ddSubTable_p
Definition MSSpwParse.h:132
void resize(size_t nx, size_t ny, bool copyValues=false)
void resize(size_t len, bool copyValues=false)
Definition Vector.h:164
this file contains all the compiler specific defines
Definition mainpage.dox:28
float Float
Definition aipstype.h:52
int Int
Definition aipstype.h:48
bool Bool
Define the standard types used by Casacore.
Definition aipstype.h:40
const Bool True
Definition aipstype.h:41