Last change
on this file since 2765 was 2757, checked in by Takeshi Nakazato, 12 years ago |
New Development: No
JIRA Issue: Yes CAS-4770
Ready for Test: Yes
Interface Changes: No
What Interface Changed: Please list interface changes
Test Programs:
Put in Release Notes: No
Module(s): Module Names change impacts.
Description: Describe your changes here...
First version of Calibrator class for OTF scan without OFF.
|
File size:
974 bytes
|
Rev | Line | |
---|
[2757] | 1 | //
|
---|
| 2 | // C++ Interface: STCalSkyOtfAlma
|
---|
| 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_CALSKY_OTF_ALMA_H
|
---|
| 13 | #define ASAP_CALSKY_OTF_ALMA_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 <scimath/Mathematics/InterpolateArray1D.h>
|
---|
| 23 |
|
---|
| 24 | #include "RowAccumulator.h"
|
---|
| 25 | #include "Scantable.h"
|
---|
| 26 | #include "STDefs.h"
|
---|
| 27 | #include "STApplyTable.h"
|
---|
| 28 | #include "STCalSkyPSAlma.h"
|
---|
| 29 |
|
---|
| 30 | namespace asap {
|
---|
| 31 |
|
---|
| 32 | /**
|
---|
| 33 | * Calibration operations on Scantable objects
|
---|
| 34 | * @author TakeshiNakazato
|
---|
| 35 | */
|
---|
| 36 | class STCalSkyOtfAlma : public STCalSkyPSAlma {
|
---|
| 37 | public:
|
---|
| 38 | STCalSkyOtfAlma(casa::CountedPtr<Scantable> &s, bool israster=false);
|
---|
| 39 |
|
---|
| 40 | virtual ~STCalSkyOtfAlma() {;}
|
---|
| 41 |
|
---|
| 42 | protected:
|
---|
| 43 | virtual void setupSelector();
|
---|
| 44 | //virtual void fillCalTable();
|
---|
| 45 |
|
---|
| 46 | private:
|
---|
| 47 | bool israster_;
|
---|
| 48 | };
|
---|
| 49 |
|
---|
| 50 | }
|
---|
| 51 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.