Last change
on this file since 3137 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:
1.2 KB
|
Rev | Line | |
---|
[810] | 1 | //
|
---|
| 2 | // C++ Interface: STTcal
|
---|
| 3 | //
|
---|
| 4 | // Description:
|
---|
| 5 | //
|
---|
| 6 | //
|
---|
| 7 | // Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2006
|
---|
| 8 | //
|
---|
| 9 | // Copyright: See COPYING file that comes with this distribution
|
---|
| 10 | //
|
---|
| 11 | //
|
---|
| 12 | #ifndef ASAPSTTCAL_H
|
---|
| 13 | #define ASAPSTTCAL_H
|
---|
| 14 |
|
---|
| 15 | #include <casa/aips.h>
|
---|
| 16 | #include <casa/BasicSL/String.h>
|
---|
| 17 | #include <tables/Tables/Table.h>
|
---|
| 18 | #include <tables/Tables/ScalarColumn.h>
|
---|
| 19 | #include <tables/Tables/ArrayColumn.h>
|
---|
| 20 |
|
---|
| 21 | #include "STSubTable.h"
|
---|
| 22 |
|
---|
| 23 | namespace asap {
|
---|
| 24 |
|
---|
| 25 | /**
|
---|
| 26 | The Tcal subtable of the Scantable
|
---|
| 27 |
|
---|
| 28 | @author Malte Marquarding
|
---|
| 29 | */
|
---|
| 30 | class STTcal : public STSubTable {
|
---|
| 31 | public:
|
---|
[849] | 32 | STTcal() {;}
|
---|
[3106] | 33 | explicit STTcal(casacore::Table tab);
|
---|
[1353] | 34 | explicit STTcal( const Scantable& parent);
|
---|
[810] | 35 |
|
---|
| 36 | virtual ~STTcal();
|
---|
| 37 |
|
---|
[849] | 38 | STTcal& operator=(const STTcal& other);
|
---|
| 39 |
|
---|
[3106] | 40 | casacore::uInt addEntry( const casacore::String& time,
|
---|
| 41 | const casacore::Vector<casacore::Float>& tcal);
|
---|
| 42 | void getEntry( casacore::String& time, casacore::Vector<casacore::Float>& tcal,
|
---|
| 43 | casacore::uInt id );
|
---|
[810] | 44 |
|
---|
[3106] | 45 | const casacore::String& name() const { return name_; }
|
---|
[856] | 46 |
|
---|
[810] | 47 | private:
|
---|
| 48 | void setup();
|
---|
[3106] | 49 | static const casacore::String name_;
|
---|
| 50 | //casacore::Table table_;
|
---|
| 51 | casacore::ArrayColumn<casacore::Float> tcalCol_;
|
---|
| 52 | casacore::ScalarColumn<casacore::String> timeCol_;
|
---|
[810] | 53 | };
|
---|
| 54 |
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.