source: trunk/src/STCalTsys.h@ 2915

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

New Development: No

JIRA Issue: No

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...

Refactoring STCalibration and its derived classes.
Fix for threshold of time gap analysis.


File size: 1.2 KB
RevLine 
[2696]1//
2// C++ Interface: STCalTsys
3//
4// Description:
5//
6//
[2703]7// Author: Takeshi Nakazato <takeshi.nakazato@nao.ac.jp>, (C) 2012
[2696]8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
[2703]12#ifndef ASAP_CALTSYS_H
13#define ASAP_CALTSYS_H
[2696]14
[2703]15#include <memory>
16#include <vector>
[2696]17
[2703]18#include <casa/aips.h>
19#include <casa/Arrays/Vector.h>
20#include <casa/BasicSL/String.h>
21#include <casa/Utilities/CountedPtr.h>
22
23#include <scimath/Mathematics/InterpolateArray1D.h>
24
25#include "RowAccumulator.h"
[2696]26#include "Scantable.h"
[2703]27#include "STDefs.h"
[2696]28#include "STApplyTable.h"
[2703]29#include "STCalibration.h"
30#include "STCalTsysTable.h"
[2696]31
32namespace asap {
33
34/**
[2703]35 * Calibration operations on Scantable objects
36 * @author TakeshiNakazato
37 */
38class STCalTsys : public STCalibration {
[2696]39public:
[2703]40 STCalTsys(casa::CountedPtr<Scantable> &s, vector<int> &iflist);
[2696]41
[2703]42 ~STCalTsys() {;}
[2742]43
[2703]44private:
[2786]45 void setupSelector(const STSelector &sel);
[2915]46 virtual void appenddata(casa::uInt scanno, casa::uInt cycleno,
47 casa::uInt beamno, casa::uInt ifno, casa::uInt polno,
48 casa::uInt freqid, casa::Double time, casa::Float elevation,
49 casa::Vector<casa::Float> any_data);
[2696]50
[2703]51 vector<int> iflist_;
[2696]52};
53
54}
55#endif
Note: See TracBrowser for help on using the repository browser.