source: branches/newfiller/external-alma/atnf/PKSIO/SrcType.h@ 2803

Last change on this file since 2803 was 1757, checked in by Kana Sugimoto, 14 years ago

New Development: Yes

JIRA Issue: Yes (CAS-2211)

Ready for Test: Yes

Interface Changes: Yes

What Interface Changed: ASAP 3.0.0 interface changes

Test Programs:

Put in Release Notes: Yes

Module(s): all the CASA sd tools and tasks are affected.

Description: Merged ATNF-ASAP 3.0.0 developments to CASA (alma) branch.

Note you also need to update casa/code/atnf.


File size: 2.5 KB
Line 
1//#---------------------------------------------------------------------------
2//# SrcType.h: Class to define source type.
3//#---------------------------------------------------------------------------
4//# Copyright (C) 2000-2008
5//# Associated Universities, Inc. Washington DC, USA.
6//#
7//# This library is free software; you can redistribute it and/or modify it
8//# under the terms of the GNU Library General Public License as published by
9//# the Free Software Foundation; either version 2 of the License, or (at your
10//# option) any later version.
11//#
12//# This library is distributed in the hope that it will be useful, but WITHOUT
13//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
15//# License for more details.
16//#
17//# You should have received a copy of the GNU Library General Public License
18//# along with this library; if not, write to the Free Software Foundation,
19//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
20//#
21//# Correspondence concerning AIPS++ should be addressed as follows:
22//# Internet email: aips2-request@nrao.edu.
23//# Postal address: AIPS++ Project Office
24//# National Radio Astronomy Observatory
25//# 520 Edgemont Road
26//# Charlottesville, VA 22903-2475 USA
27//#
28//# $Id$
29//#---------------------------------------------------------------------------
30//# Original: 2010/02/08, Takeshi Nakazato, NAOJ
31//#---------------------------------------------------------------------------
32
33#ifndef ATNF_SRCTYPE_H
34#define ATNF_SRCTYPE_H
35
36// <sumamry>
37// enum to define source type (scan intent)
38//</summary>
39class SrcType {
40 public:
41 enum type { PSON = 0,
42 PSOFF = 1,
43 NOD = 2,
44 FSON = 3,
45 FSOFF = 4,
46 SKY = 6,
47 HOT = 7,
48 WARM = 8,
49 COLD = 9,
50 PONCAL = 10,
51 POFFCAL = 11,
52 NODCAL = 12,
53 FONCAL = 13,
54 FOFFCAL = 14,
55 FSLO = 20,
56 FLOOFF = 21,
57 FLOSKY = 26,
58 FLOHOT = 27,
59 FLOWARM = 28,
60 FLOCOLD = 29,
61 FSHI = 30,
62 FHIOFF = 31,
63 FHISKY = 36,
64 FHIHOT = 37,
65 FHIWARM = 38,
66 FHICOLD = 39,
67 NOTYPE = 99 } ;
68} ;
69
70#endif
Note: See TracBrowser for help on using the repository browser.