casa
$Rev:20696$
|
00001 //# MSPointingEnums.h: Definitions for the MeasurementSet POINTING table 00002 //# Copyright (C) 1999,2000 00003 //# Associated Universities, Inc. Washington DC, USA. 00004 //# 00005 //# This library is free software; you can redistribute it and/or modify it 00006 //# under the terms of the GNU Library General Public License as published by 00007 //# the Free Software Foundation; either version 2 of the License, or (at your 00008 //# option) any later version. 00009 //# 00010 //# This library is distributed in the hope that it will be useful, but WITHOUT 00011 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00012 //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00013 //# License for more details. 00014 //# 00015 //# You should have received a copy of the GNU Library General Public License 00016 //# along with this library; if not, write to the Free Software Foundation, 00017 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. 00018 //# 00019 //# Correspondence concerning AIPS++ should be addressed as follows: 00020 //# Internet email: aips2-request@nrao.edu. 00021 //# Postal address: AIPS++ Project Office 00022 //# National Radio Astronomy Observatory 00023 //# 520 Edgemont Road 00024 //# Charlottesville, VA 22903-2475 USA 00025 //# 00026 //# 00027 //# $Id: MSPointingEnums.h 18093 2004-11-30 17:51:10Z ddebonis $ 00028 00029 #ifndef MS_MSPOINTINGENUMS_H 00030 #define MS_MSPOINTINGENUMS_H 00031 00032 #include <casa/aips.h> 00033 00034 namespace casa { //# NAMESPACE CASA - BEGIN 00035 00036 // <use visibility=export> 00037 00038 // <summary> Enums for the MeasurementSet POINTING table </summary> 00039 // <reviewed reviewer="UNKNOWN" date="before2004/08/25" tests="" demos=""> 00040 // </reviewed> 00041 // <etymology> 00042 // This class contains the enums for the MeasurementSet POINTING table 00043 // </etymology> 00044 // <synopsis> 00045 // This class does nothing. It is merely a container for the enumerations 00046 // used by the MSPointing class. These enumerations define the 00047 // standard columns and keywords. 00048 // </synopsis> 00049 00050 // <example> 00051 // See the documentation for MeasurementSet for examples on the use of these 00052 // enumerations. 00053 // </example> 00054 // <todo asof="1999/01/14"> 00055 // All the todo items which may be related to this class are 00056 // grouped with the todo items for MeasurementSet 00057 // </todo> 00058 // 00059 00060 class MSPointingEnums { 00061 public: 00062 // The POINTING table colums with predefined meaning. 00063 // Keys: ANTENNA_ID, TIME, INTERVAL 00064 enum PredefinedColumns { 00065 // "True" columns are defined.<BR> 00066 // TYPE - UNIT - MEASURE 00067 UNDEFINED_COLUMN=0, 00068 // Antenna id <BR> 00069 // Int 00070 ANTENNA_ID, 00071 // Antenna pointing direction (e.g. RA, DEC) as polynomial in time.<BR> 00072 // Double(2,NUM_POLY+1) - rad - DIRECTION. 00073 DIRECTION, 00074 // Time interval <BR> 00075 // Double - s 00076 INTERVAL, 00077 // Pointing Name. <BR> 00078 // String 00079 NAME, 00080 // Polynomial order for *_DIR columns <BR> 00081 // Int 00082 NUM_POLY, 00083 // Target direction <BR> 00084 // Double(2,NUM_POLY+1) - rad - DIRECTION 00085 TARGET, 00086 // Time midpoint for interval. <BR> 00087 // Double - s - EPOCH 00088 TIME, 00089 // Time origin for the directions and rates. <BR> 00090 // Double - s - EPOCH 00091 TIME_ORIGIN, 00092 // Track flag - true if on position <BR> 00093 // Bool 00094 TRACKING, 00095 // Number of required columns <BR> 00096 NUMBER_REQUIRED_COLUMNS=TRACKING, 00097 // Encoder values <BR> 00098 // Double(2) 00099 ENCODER, 00100 // On source flag - true if on source <BR> 00101 // Bool 00102 ON_SOURCE, 00103 // Over the top flag - true if antenna has been driven over the top <BR> 00104 // Bool 00105 OVER_THE_TOP, 00106 // Pointing model id <BR> 00107 // Int 00108 POINTING_MODEL_ID, 00109 // Pointing offset as polynomial in time<BR> 00110 // Double(2,NUM_POLY+1) - rad - DIRECTION. 00111 POINTING_OFFSET, 00112 // Offset from source as polynomial in time<BR> 00113 // Double(2,NUM_POLY+1) - rad - DIRECTION. 00114 SOURCE_OFFSET, 00115 // Not a column, but just a final enum specifying the number of enums. 00116 NUMBER_PREDEFINED_COLUMNS=SOURCE_OFFSET 00117 }; 00118 00119 // Keywords with a predefined meaning 00120 enum PredefinedKeywords { 00121 // 00122 // "True" keywords are defined. 00123 UNDEFINED_KEYWORD=0, 00124 // 00125 // Not a keyword, but just a final enum specifying the number of enums. 00126 NUMBER_PREDEFINED_KEYWORDS=0 00127 }; 00128 }; 00129 00130 } //# NAMESPACE CASA - END 00131 00132 #endif