casacore
Loading...
Searching...
No Matches
MSStateIndex.h
Go to the documentation of this file.
1//# MSStateIndex: index or lookup in a MeasurementSet FIELD subtable
2//# Copyright (C) 2000,2001
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_MSSTATEINDEX_H
27#define MS_MSSTATEINDEX_H
28
29//# includes
30#include <casacore/casa/aips.h>
31#include <casacore/ms/MeasurementSets/MSState.h>
32#include <casacore/ms/MSSel/MSSelectionError.h>
33#include <casacore/ms/MeasurementSets/MSStateColumns.h>
34#include <casacore/casa/Arrays/Vector.h>
35#include <casacore/casa/BasicSL/String.h>
36
37namespace casacore { //# NAMESPACE CASACORE - BEGIN
38
39//# forward declarations
40
41// <summary>
42// Class to handle lookup or indexing into a MS FIELD subtable
43// </summary>
44
45// <use visibility=export>
46//
47// <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos="">
48// </reviewed>
49
50// <prerequisite>
51// <li> MeasurementSet
52// <li> MSState
53// </prerequisite>
54//
55// <etymology>
56// From "MeasurementSet", "FIELD subtable" and "index".
57// </etymology>
58//
59// <synopsis>
60// This class provides lookup and indexing into an MS FIELD
61// subtable. These services include returning rows numbers
62// (which for the FIELD subtable are FIELD_ID's) associated
63// with specific data in the subtable.
64// </synopsis>
65//
66// <example>
67// </example>
68//
69// <motivation>
70// Collect together all subtable indexing and lookup for the
71// FIELD subtable, for encapsulation and efficiency.
72// </motivation>
73//
74// <thrown>
75// <li>
76// <li>
77// </thrown>
78//
79
81{
82public:
83 // Construct from an MS FIELD subtable
84 MSStateIndex(const MSState &state);
85
86 // Null destructor
87 virtual ~MSStateIndex() {}
88
91
92 //ADD for file name wildcard selection
95
96 // Look up FIELD_ID's for a given pattern/regex for source name/code
98 const Bool regex=False);
100 const Bool regex=False);
101 // Look up FIELD_ID's for a given source id
102 Vector<Int> matchStateId(const Int& sourceId);
104
106
109 Vector<Int> matchStateIDGTAndLT(const Int n0, const int n1);
110private:
111 // Disallow null constructor
113
114 // FIELD subtable column accessor
116
117 // Vector cache of field id's
120 Int matchAnyRegex(const Vector<String>& strList, const Regex& regex, const Int pos=0);
121};
122
123
124} //# NAMESPACE CASACORE - END
125
126#endif
127
Vector< Int > matchStateObsMode(const String &name)
ADD for file name wildcard selection.
MSStateIndex(const MSState &state)
Construct from an MS FIELD subtable.
Vector< Int > matchStateId(const Vector< Int > &sourceIds)
MSStateIndex()
Disallow null constructor.
Vector< Int > matchStateIntent(const Vector< String > &names)
Vector< Int > matchStateIDGT(const Int n)
Vector< Int > matchStateIntent(const String &name)
Vector< Int > matchStateIDLT(const Int n)
Vector< Int > maskStateIDs(const Vector< Int > &ids)
Vector< Int > matchStateObsMode(const Vector< String > &names)
Vector< Int > matchStateIDGTAndLT(const Int n0, const int n1)
virtual ~MSStateIndex()
Null destructor.
Int matchAnyRegex(const Vector< String > &strList, const Regex &regex, const Int pos=0)
Vector< Int > matchStateId(const Int &sourceId)
Look up FIELD_ID's for a given source id.
Vector< Int > stateIds_p
Vector cache of field id's.
MSStateColumns msStateCols_p
FIELD subtable column accessor.
Vector< Int > matchStateObsModeRegexOrPattern(const String &pattern, const Bool regex=False)
Vector< Int > matchStateRegexOrPattern(const String &pattern, const Bool regex=False)
Look up FIELD_ID's for a given pattern/regex for source name/code.
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
TableExprNode pattern(const TableExprNode &node)
Definition ExprNode.h:1491
const Bool False
Definition aipstype.h:42
TableExprNode regex(const TableExprNode &node)
Functions for regular expression matching and pattern matching.
Definition ExprNode.h:1487
int Int
Definition aipstype.h:48
bool Bool
Define the standard types used by Casacore.
Definition aipstype.h:40