source: trunk/src/STCalTsys.h @ 2955

Last change on this file since 2955 was 2955, checked in by Takeshi Nakazato, 10 years ago

New Development: No

JIRA Issue: Yes CAS-6585, CAS-6571

Ready for Test: Yes

Interface Changes: Yes/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...

Added FLAGTRA column to sky and Tsys caltable.
To support previous versions of caltabls that don't have FLAGTRA
column, the code automatically add FLAGTRA column and initialize
it with initial value (uChar)0 if no FLAGTRA exists.


File size: 1.4 KB
Line 
1//
2// C++ Interface: STCalTsys
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_CALTSYS_H
13#define ASAP_CALTSYS_H
14
15#include <memory>
16#include <vector>
17
18#include <casa/aips.h>
19#include <casa/Arrays/Vector.h>
20#include <casa/BasicSL/String.h>
21#include <casa/Utilities/CountedPtr.h>
22#include <casa/Containers/Record.h>
23
24#include <scimath/Mathematics/InterpolateArray1D.h>
25
26#include "RowAccumulator.h"
27#include "Scantable.h"
28#include "STDefs.h"
29#include "STApplyTable.h"
30#include "STCalibration.h"
31#include "STCalTsysTable.h"
32
33namespace asap {
34
35/**
36 * Calibration operations on Scantable objects
37 * @author TakeshiNakazato
38 */
39class STCalTsys : public STCalibration {
40public:
41  STCalTsys(casa::CountedPtr<Scantable> &s, vector<int> &iflist);
42  STCalTsys(casa::CountedPtr<Scantable> &s, casa::Record &iflist, bool average=false);
43
44  ~STCalTsys() {;}
45 
46private:
47  void setupSelector(const STSelector &sel);
48  virtual void appenddata(casa::uInt scanno, casa::uInt cycleno,
49                          casa::uInt beamno, casa::uInt ifno, casa::uInt polno,
50                          casa::uInt freqid, casa::Double time, casa::Float elevation,
51                          const casa::Vector<casa::Float> &any_data,
52                          const casa::Vector<casa::uChar> &channel_flag);
53
54  vector<int> iflist_;
55  casa::Record tsysspw_;
56  bool do_average_;
57};
58
59}
60#endif
Note: See TracBrowser for help on using the repository browser.