Last change
on this file since 2996 was 2720, checked in by Takeshi Nakazato, 12 years ago |
New Development: Yes
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...
First version of applycal for single dish calibration.
Added new classes for the operation (STApplyCal, Calibrator, PSAlmaCalibrator,
Locator, BisectionLocator, Interpolator1D, NearestInterpolator1D).
Also, modified existing classes to fit with implementation of applycal.
|
File size:
733 bytes
|
Line | |
---|
1 | //
|
---|
2 | // C++ Interface: PSAlmaCalibrator
|
---|
3 | //
|
---|
4 | // Description:
|
---|
5 | //
|
---|
6 | //
|
---|
7 | // Author: Takeshi Nakazato <takeshi.nakazato@nao.ac.jp>, (C) 2012
|
---|
8 | //
|
---|
9 | // Copyright: See COPYING file that comes with this distribution
|
---|
10 | //
|
---|
11 | //
|
---|
12 | #ifndef ASAP_PS_ALMA_CALIBRATOR_H
|
---|
13 | #define ASAP_PS_ALMA_CALIBRATOR_H
|
---|
14 |
|
---|
15 | #include <memory>
|
---|
16 |
|
---|
17 | #include <casa/aips.h>
|
---|
18 | #include <casa/Arrays/Vector.h>
|
---|
19 | #include <casa/BasicSL/String.h>
|
---|
20 | #include <casa/Utilities/CountedPtr.h>
|
---|
21 |
|
---|
22 | #include "Calibrator.h"
|
---|
23 |
|
---|
24 | namespace asap {
|
---|
25 |
|
---|
26 | /**
|
---|
27 | * Calibration operation for position switch (ALMA)
|
---|
28 | * @author TakeshiNakazato
|
---|
29 | */
|
---|
30 | class PSAlmaCalibrator : public Calibrator {
|
---|
31 | public:
|
---|
32 | PSAlmaCalibrator();
|
---|
33 | PSAlmaCalibrator(unsigned int nchan);
|
---|
34 | virtual ~PSAlmaCalibrator() {;}
|
---|
35 |
|
---|
36 | void calibrate();
|
---|
37 | };
|
---|
38 |
|
---|
39 | }
|
---|
40 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.