casacore
|
#include <MSRange.h>
Public Types | |
enum | { UNCHECKED , UNSELECTED , ALL } |
Public Member Functions | |
MSRange () | |
Default constructor, only useful to assign to. More... | |
MSRange (const MeasurementSet &ms) | |
Construct from an MS. More... | |
MSRange (const MSSelector &msSel) | |
construct from an MSSelector, if this constructor is used, the data will be channel selected and polarization converted as specified in the MSSelector object, and the current selection is used in the range. More... | |
MSRange (const MSRange &other) | |
Copy constructor. More... | |
MSRange & | operator= (const MSRange &other) |
Assignment. More... | |
Record | range (const Vector< String > &items, Bool useFlags=True, Bool OneBased=False) |
Return the range of values for each of the items specified in the record. More... | |
Record | range (const Vector< Int > &items, Bool useFlags=True, Bool OneBased=False) |
Same as previous function, with Vector of MSS::Field keys instead of Strings. More... | |
Record | range (MSS::Field item, Bool useFlags=True) |
Similar to above, with a single enum, for convenience. More... | |
void | setBlockSize (Int blockSize=10) |
Set the block size (in Mbytes) to use when reading the data column. More... | |
Protected Member Functions | |
Bool | checkShapes () |
check the data description selection (one or more with same shape, or varying shape) More... | |
void | scalarRange (Record &out, const String &item, const ScalarColumn< Int > &id, Bool oneBased) |
get the range of a ScalarColumn<Int>, correct for 1-based indexing if oneBased is True, and add to out record. More... | |
Vector< Int > | scalarRange (const ScalarColumn< Int > &id) |
get the range of a ScalarColumn<Int> More... | |
void | minMax (Matrix< Float > &minmax, const Vector< Bool > &funcSel, const ArrayColumn< Complex > &data1, const ArrayColumn< Complex > &data2, const ArrayColumn< Bool > &flag, Int dataType, Bool useFlags) |
get the minimum and maximum of a Complex data column, after application of some function to convert to Float (e.g., real, amplitude,...). More... | |
void | minMax (Float &mini, Float &maxi, const ArrayColumn< Float > &data, const ArrayColumn< Bool > &flag, Bool useFlags) |
get the minimum and maximum of a Float data column This function reads the data in blocks of size blockSize, as set by the setBlockSize function. More... | |
Vector< Int > | ifrNumbers (const ScalarColumn< Int > &ant1, const ScalarColumn< Int > &ant2) |
Get the range of interferometer numbers given the antenna1 and antenna2 columns. More... | |
Private Types | |
enum | { Amp , Phase , Real , Imag , Data , nFuncType } |
The function types. More... | |
enum | { Observed , Corrected , Model , Ratio , Residual , ObsResidual , ObsFloat , nDataType } |
The data types. More... | |
Private Attributes | |
MeasurementSet | ms_p |
Int | blockSize_p |
Vector< Int > | ddId_p |
Vector< uInt > | spwId_p |
Vector< uInt > | polId_p |
Bool | constantShape_p |
const MSSelector * | sel_p |
MSRange determines ranges of values in a MeasurementSet
Public interface
MSRange is a class that determines ranges of values in an MS
This class is used to determine the range of values present for the various columns in a MeasurementSet. This class is initialized from a MeasurementSet. If the MS contains more than one DATA_DESC_ID, it can be preselected on this to allow a consistent set of frequencies to be returned. The ms DO provides access to this class from glish and GUIs.
Finding out the range of values in a column is often needed before a sensible selection of data can be made. This class, formerly part of MSSelector, separates out this functionality.
anonymous enum |
|
private |
|
private |
casacore::MSRange::MSRange | ( | ) |
Default constructor, only useful to assign to.
|
explicit |
Construct from an MS.
|
explicit |
construct from an MSSelector, if this constructor is used, the data will be channel selected and polarization converted as specified in the MSSelector object, and the current selection is used in the range.
casacore::MSRange::MSRange | ( | const MSRange & | other | ) |
Copy constructor.
|
protected |
check the data description selection (one or more with same shape, or varying shape)
|
protected |
Get the range of interferometer numbers given the antenna1 and antenna2 columns.
|
protected |
get the minimum and maximum of a Float data column This function reads the data in blocks of size blockSize, as set by the setBlockSize function.
|
protected |
get the minimum and maximum of a Complex data column, after application of some function to convert to Float (e.g., real, amplitude,...).
This function reads the data in blocks of size blockSize, as set by the setBlockSize function.
Record casacore::MSRange::range | ( | const Vector< Int > & | items, |
Bool | useFlags = True , |
||
Bool | OneBased = False |
||
) |
Same as previous function, with Vector of MSS::Field keys instead of Strings.
Record casacore::MSRange::range | ( | const Vector< String > & | items, |
Bool | useFlags = True , |
||
Bool | OneBased = False |
||
) |
Return the range of values for each of the items specified in the record.
For index-like items a list of values is returned, for non-index items the minimum and maximum are returned. Items with varying array shape will not be returned by this function (i.e. you may need to preselect the MS passed to MSRange). See the enum description in MSSelector for the list of supported items. Use the data flags if useFlags is True. Correct for one-based indexing if oneBased is True.
Record casacore::MSRange::range | ( | MSS::Field | item, |
Bool | useFlags = True |
||
) |
Similar to above, with a single enum, for convenience.
|
protected |
get the range of a ScalarColumn<Int>
|
protected |
get the range of a ScalarColumn<Int>, correct for 1-based indexing if oneBased is True, and add to out record.
void casacore::MSRange::setBlockSize | ( | Int | blockSize = 10 | ) |
Set the block size (in Mbytes) to use when reading the data column.
The default is 10 MB. Actual memory used is higher due to temporaries and caching.
|
private |
|
private |