source: trunk/src/STCalEnum.h @ 2725

Last change on this file since 2725 was 2721, checked in by Takeshi Nakazato, 11 years ago

New Development: No

JIRA Issue: Yes CAS-4770 and its sub-tickets

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...

Add header file that forgot to add in previous commit.


File size: 1.0 KB
Line 
1//
2// C++ Interface: STCalEnum
3//
4// Description:
5//
6// Apply any apply tables to target data.
7//
8// Author: Takeshi Nakazato <takeshi.nakazato@nao.ac.jp> (C) 2012
9//
10// Copyright: See COPYING file that comes with this distribution
11//
12//
13#ifndef ASAP_CAL_ENUM_H
14#define ASAP_CAL_ENUM_H
15
16#include <casa/BasicSL/String.h>
17#include <casa/Utilities/CountedPtr.h>
18
19//#include "STApplyTable.h"
20
21namespace asap {
22
23/**
24Apply any apply tables to target data
25
26@author Takeshi Nakazato
27@date $Date:$
28@version $Revision:$
29*/
30class STCalEnum  {
31public:
32  enum InterpolationType {NearestInterpolation = 0,
33                          LinearInterpolation,
34                          PolynomialInterpolation,
35                          CSplineInterpolation};
36  enum InterpolationAxis {TimeAxis = 0,
37                          FrequencyAxis,
38                          NumAxis};
39  enum CalType {DefaultType = 0,
40                CalTsys,
41                CalPSAlma,
42                CalPS,
43                CalNod,
44                CalFS,
45                NoType};
46};
47
48}
49
50#endif
Note: See TracBrowser for help on using the repository browser.