source: trunk/src/STApplyTable.h@ 3126

Last change on this file since 3126 was 3106, checked in by Takeshi Nakazato, 8 years ago

New Development: No

JIRA Issue: No

Ready for Test: Yes/No

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


Check-in asap modifications from Jim regarding casacore namespace conversion.

File size: 2.9 KB
RevLine 
[2696]1//
2// C++ Interface: STApplyTable
3//
4// Description:
5//
6// Base class for application tables.
7//
[2703]8// Author: Takeshi Nakazato <takeshi.nakazato@nao.ac.jp> (C) 2012
[2696]9//
10// Copyright: See COPYING file that comes with this distribution
11//
12//
[2703]13#ifndef ASAP_APPLY_TABLE_H
14#define ASAP_APPLY_TABLE_H
[2696]15
16#include <casa/Arrays/Vector.h>
17#include <casa/Logging/LogIO.h>
18#include <tables/Tables/Table.h>
19#include <tables/Tables/ScalarColumn.h>
20#include <measures/TableMeasures/ScalarMeasColumn.h>
21
22#include "Scantable.h"
23#include "STSelector.h"
[2720]24#include "STCalEnum.h"
[2696]25
26namespace asap {
27
28/**
29Abstract base class for all application tables.
30
31@author Takeshi Nakazato
32@date $Date:$
33@version $Revision:$
34*/
35class STApplyTable {
36public:
37 STApplyTable() {;}
[3106]38 STApplyTable(const Scantable& parent, const casacore::String& name);
39 STApplyTable(const casacore::String &name);
[2696]40
41 virtual ~STApplyTable();
42
43 /**
44 * Add extra columns. To be implemented in derived class
45 */
46 virtual void setup() = 0;
47
48 /***
49 * Name of the table
50 ***/
[3106]51 virtual const casacore::String& name() const = 0;
[2696]52
[3106]53 const casacore::Table& table() const { return table_; }
54 casacore::Table table() { return table_; }
[2696]55 void attach();
56 void attachBaseColumns();
57 virtual void attachOptionalColumns() = 0;
58
[3106]59 casacore::uInt nrow() {return table_.nrow();}
[2696]60
[3106]61 casacore::Vector<casacore::uInt> getScan() const {return scanCol_.getColumn();}
62 casacore::Vector<casacore::uInt> getCycle() const {return cycleCol_.getColumn();}
63 casacore::Vector<casacore::uInt> getBeam() const {return beamCol_.getColumn();}
64 casacore::Vector<casacore::uInt> getIF() const {return ifCol_.getColumn();}
65 casacore::Vector<casacore::uInt> getPol() const {return polCol_.getColumn();}
66 casacore::Vector<casacore::Double> getTime() const {return timeCol_.getColumn();}
[2696]67
[2720]68 void setSelection(STSelector &sel, bool sortByTime=false);
[2696]69 void unsetSelection();
[3106]70 casacore::String caltype();
[2696]71
[3106]72 void save(const casacore::String &name);
[2703]73
[3106]74 virtual casacore::uInt nchan(casacore::uInt ifno) = 0;
[2720]75
76 // static methods
[3106]77 static STCalEnum::CalType getCalType(const casacore::String &name);
78 static STCalEnum::CalType getCalType(casacore::CountedPtr<STApplyTable> tab);
[2720]79 static STCalEnum::CalType getCalType(STApplyTable *tab);
80
[2696]81protected:
[3106]82 void setbasedata(casacore::uInt irow, casacore::uInt scanno, casacore::uInt cycleno,
83 casacore::uInt beamno, casacore::uInt ifno, casacore::uInt polno,
84 casacore::uInt freqid, casacore::Double time);
85 casacore::Block<casacore::Double> getFrequenciesRow(casacore::uInt id);
[2696]86
[3106]87 casacore::Table table_, originaltable_;
88 casacore::ScalarColumn<casacore::uInt> scanCol_, cycleCol_, beamCol_, ifCol_, polCol_, freqidCol_;
89 casacore::ScalarColumn<casacore::Double> timeCol_;
90 casacore::MEpoch::ScalarColumn timeMeasCol_;
[2696]91 STSelector sel_;
[3106]92 casacore::LogIO os_;
[2696]93
94private:
[3106]95 static STCalEnum::CalType stringToType(const casacore::String &caltype);
[2696]96};
97
98}
99
100#endif
Note: See TracBrowser for help on using the repository browser.