casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
SrcType.h
Go to the documentation of this file.
00001 //#---------------------------------------------------------------------------
00002 //# SrcType.h: Class to define source type.
00003 //#---------------------------------------------------------------------------
00004 //# Copyright (C) 2000-2008
00005 //# Associated Universities, Inc. Washington DC, USA.
00006 //#
00007 //# This library is free software; you can redistribute it and/or modify it
00008 //# under the terms of the GNU Library General Public License as published by
00009 //# the Free Software Foundation; either version 2 of the License, or (at your
00010 //# option) any later version.
00011 //#
00012 //# This library is distributed in the hope that it will be useful, but WITHOUT
00013 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00014 //# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
00015 //# License for more details.
00016 //#
00017 //# You should have received a copy of the GNU Library General Public License
00018 //# along with this library; if not, write to the Free Software Foundation,
00019 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
00020 //#
00021 //# Correspondence concerning AIPS++ should be addressed as follows:
00022 //#        Internet email: aips2-request@nrao.edu.
00023 //#        Postal address: AIPS++ Project Office
00024 //#                        National Radio Astronomy Observatory
00025 //#                        520 Edgemont Road
00026 //#                        Charlottesville, VA 22903-2475 USA
00027 //#
00028 //# $Id$
00029 //#---------------------------------------------------------------------------
00030 //# Original: 2010/02/08, Takeshi Nakazato, NAOJ
00031 //#---------------------------------------------------------------------------
00032 
00033 #ifndef ATNF_SRCTYPE_H
00034 #define ATNF_SRCTYPE_H
00035 
00036 // <sumamry>
00037 // enum to define source type (scan intent)
00038 //</summary>
00039 class SrcType {
00040  public:
00041   enum type { PSON     = 0,
00042               PSOFF    = 1,
00043               NOD      = 2,
00044               FSON     = 3,
00045               FSOFF    = 4,
00046               SKY      = 6,
00047               HOT      = 7,
00048               WARM     = 8,
00049               COLD     = 9,
00050               PONCAL   = 10,
00051               POFFCAL  = 11,
00052               NODCAL   = 12,
00053               FONCAL   = 13,
00054               FOFFCAL  = 14,
00055               FSLO     = 20,
00056               FLOOFF   = 21,
00057               FLOSKY   = 26,
00058               FLOHOT   = 27,
00059               FLOWARM  = 28,
00060               FLOCOLD  = 29,
00061               FSHI     = 30,
00062               FHIOFF   = 31,
00063               FHISKY   = 36,
00064               FHIHOT   = 37,
00065               FHIWARM  = 38,
00066               FHICOLD  = 39,
00067               NOTYPE   = 99 } ;
00068 } ; 
00069 
00070 #endif