Last change
on this file since 2777 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:
1.3 KB
|
Rev | Line | |
---|
[2703] | 1 | //
|
---|
| 2 | // C++ Interface: STCalibration
|
---|
| 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 ASAPSTCALIBRATION_H
|
---|
| 13 | #define ASAPSTCALIBRATION_H
|
---|
| 14 |
|
---|
| 15 | #include <casa/aips.h>
|
---|
| 16 | #include <casa/Arrays/Vector.h>
|
---|
| 17 | #include <casa/BasicSL/String.h>
|
---|
| 18 | #include <casa/Utilities/CountedPtr.h>
|
---|
[2749] | 19 | #include <casa/Logging/LogIO.h>
|
---|
[2757] | 20 | #include <casa/Containers/Record.h>
|
---|
[2703] | 21 |
|
---|
| 22 | #include <scimath/Mathematics/InterpolateArray1D.h>
|
---|
| 23 |
|
---|
| 24 | #include "Scantable.h"
|
---|
| 25 | #include "STDefs.h"
|
---|
| 26 | #include "STApplyTable.h"
|
---|
| 27 |
|
---|
| 28 | namespace asap {
|
---|
| 29 |
|
---|
| 30 | /**
|
---|
| 31 | * Calibration operations on Scantable objects
|
---|
| 32 | * @author TakeshiNakazato
|
---|
| 33 | */
|
---|
| 34 | class STCalibration {
|
---|
| 35 | public:
|
---|
| 36 | STCalibration(casa::CountedPtr<Scantable> &s);
|
---|
| 37 |
|
---|
[2742] | 38 | void calibrate();
|
---|
[2703] | 39 |
|
---|
| 40 | virtual ~STCalibration() {;}
|
---|
| 41 |
|
---|
| 42 | void save(casa::String name) {applytable_->save(name);}
|
---|
[2747] | 43 | //const STApplyTable &applytable() {return *applytable_;}
|
---|
| 44 | const casa::CountedPtr<STApplyTable> applytable() {return applytable_;}
|
---|
[2757] | 45 |
|
---|
| 46 | void setOption(casa::Record &rec) {options_ = rec;}
|
---|
| 47 |
|
---|
[2703] | 48 | protected:
|
---|
[2742] | 49 | virtual void setupSelector() = 0;
|
---|
| 50 | virtual void fillCalTable() = 0;
|
---|
| 51 |
|
---|
| 52 | STSelector sel_;
|
---|
[2703] | 53 | casa::CountedPtr<Scantable> scantable_;
|
---|
| 54 | casa::CountedPtr<STApplyTable> applytable_;
|
---|
[2749] | 55 | casa::LogIO os_;
|
---|
[2757] | 56 | casa::Record options_;
|
---|
[2703] | 57 | };
|
---|
| 58 |
|
---|
| 59 | }
|
---|
| 60 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.