source: trunk/src/STApplyTable.h

Last change on this file 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
Line 
1//
2// C++ Interface: STApplyTable
3//
4// Description:
5//
6// Base class for application tables.
7//
8// Author: Takeshi Nakazato <takeshi.nakazato@nao.ac.jp> (C) 2012
9//
10// Copyright: See COPYING file that comes with this distribution
11//
12//
13#ifndef ASAP_APPLY_TABLE_H
14#define ASAP_APPLY_TABLE_H
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"
24#include "STCalEnum.h"
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() {;}
38  STApplyTable(const Scantable& parent, const casacore::String& name);
39  STApplyTable(const casacore::String &name);
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   ***/
51  virtual const casacore::String& name() const = 0;
52
53  const casacore::Table& table() const { return table_; }
54  casacore::Table table() { return table_; }
55  void attach();
56  void attachBaseColumns();
57  virtual void attachOptionalColumns() = 0;
58
59  casacore::uInt nrow() {return table_.nrow();}
60
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();}
67
68  void setSelection(STSelector &sel, bool sortByTime=false);
69  void unsetSelection();
70  casacore::String caltype();
71
72  void save(const casacore::String &name);
73
74  virtual casacore::uInt nchan(casacore::uInt ifno) = 0;
75
76  // static methods
77  static STCalEnum::CalType getCalType(const casacore::String &name);
78  static STCalEnum::CalType getCalType(casacore::CountedPtr<STApplyTable> tab);
79  static STCalEnum::CalType getCalType(STApplyTable *tab);
80
81protected:
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);
86
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_;
91  STSelector sel_;
92  casacore::LogIO os_;
93
94private:
95  static STCalEnum::CalType stringToType(const casacore::String &caltype);
96};
97
98}
99
100#endif
Note: See TracBrowser for help on using the repository browser.