1 | //
|
---|
2 | // C++ Interface: STCalSkyPSAlma
|
---|
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_PS_ALMA_H
|
---|
13 | #define ASAP_CALSKY_PS_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 "STCalibration.h"
|
---|
29 | #include "STCalSkyTable.h"
|
---|
30 |
|
---|
31 | namespace asap {
|
---|
32 |
|
---|
33 | /**
|
---|
34 | * Calibration operations on Scantable objects
|
---|
35 | * @author TakeshiNakazato
|
---|
36 | */
|
---|
37 | class STCalSkyPSAlma : public STCalibration {
|
---|
38 | public:
|
---|
39 | STCalSkyPSAlma(casa::CountedPtr<Scantable> &s);
|
---|
40 |
|
---|
41 | virtual ~STCalSkyPSAlma() {;}
|
---|
42 |
|
---|
43 | protected:
|
---|
44 | virtual void setupSelector(const STSelector &sel);
|
---|
45 | virtual void appenddata(casa::uInt scanno, casa::uInt cycleno,
|
---|
46 | casa::uInt beamno, casa::uInt ifno, casa::uInt polno,
|
---|
47 | casa::uInt freqid, casa::Double time, casa::Float elevation,
|
---|
48 | const casa::Vector<casa::Float> &any_data,
|
---|
49 | const casa::Vector<casa::uChar> &channel_flag);
|
---|
50 | };
|
---|
51 |
|
---|
52 | }
|
---|
53 | #endif
|
---|