1 | //#---------------------------------------------------------------------------
|
---|
2 | //# SDMemTable.h: A MemoryTable container for single dish integrations
|
---|
3 | //#---------------------------------------------------------------------------
|
---|
4 | //# Copyright (C) 2004
|
---|
5 | //# Malte Marquarding, ATNF
|
---|
6 | //#
|
---|
7 | //# This program is free software; you can redistribute it and/or modify it
|
---|
8 | //# under the terms of the GNU General Public License as published by the Free
|
---|
9 | //# Software Foundation; either version 2 of the License, or (at your option)
|
---|
10 | //# any later version.
|
---|
11 | //#
|
---|
12 | //# This program is distributed in the hope that it will be useful, but
|
---|
13 | //# WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
---|
15 | //# Public License for more details.
|
---|
16 | //#
|
---|
17 | //# You should have received a copy of the GNU General Public License along
|
---|
18 | //# with this program; if not, write to the Free Software Foundation, Inc.,
|
---|
19 | //# 675 Massachusetts Ave, Cambridge, MA 02139, USA.
|
---|
20 | //#
|
---|
21 | //# Correspondence concerning this software should be addressed as follows:
|
---|
22 | //# Internet email: Malte.Marquarding@csiro.au
|
---|
23 | //# Postal address: Malte Marquarding,
|
---|
24 | //# Australia Telescope National Facility,
|
---|
25 | //# P.O. Box 76,
|
---|
26 | //# Epping, NSW, 2121,
|
---|
27 | //# AUSTRALIA
|
---|
28 | //#
|
---|
29 | //# $Id:
|
---|
30 | //#---------------------------------------------------------------------------
|
---|
31 | #ifndef _SDMEMTABLE_H
|
---|
32 | #define _SDMEMTABLE_H
|
---|
33 |
|
---|
34 | // STL
|
---|
35 | #include <string>
|
---|
36 | #include <vector>
|
---|
37 | // AIPS++
|
---|
38 | #include <casa/aips.h>
|
---|
39 | #include <casa/BasicSL/String.h>
|
---|
40 | #include <tables/Tables/Table.h>
|
---|
41 | #include <casa/Arrays/MaskedArray.h>
|
---|
42 |
|
---|
43 | #include <coordinates/Coordinates/SpectralCoordinate.h>
|
---|
44 |
|
---|
45 | namespace asap {
|
---|
46 |
|
---|
47 | class SDContainer;
|
---|
48 | class SDHeader;
|
---|
49 | class SDFrequencyTable;
|
---|
50 |
|
---|
51 |
|
---|
52 | class SDMemTable {
|
---|
53 | public:
|
---|
54 | // create a new (empty) SDMemTable
|
---|
55 | SDMemTable();
|
---|
56 | // create a SDMemTable from an (aips++) table on disk
|
---|
57 | SDMemTable(const std::string& name);
|
---|
58 |
|
---|
59 | // Copy Construct a SDMemTable, if clear==True only header and
|
---|
60 | // skeleton are copied, otherwise the whole table is copied.
|
---|
61 | SDMemTable(const SDMemTable& other, Bool clear=False);
|
---|
62 |
|
---|
63 | // Copy Construct a SDMemTable, give a scanid constraint
|
---|
64 | // see also getScan()
|
---|
65 | SDMemTable(const Table& tab, const std::string& expr);
|
---|
66 |
|
---|
67 | virtual ~SDMemTable();
|
---|
68 |
|
---|
69 | // put data from meta conatiner into the table
|
---|
70 | bool putSDContainer(const SDContainer& sdc);
|
---|
71 | bool putSDHeader(const SDHeader& sdh);
|
---|
72 | bool putSDFreqTable(const SDFrequencyTable& sdft);
|
---|
73 |
|
---|
74 | //get the dat wrapped up in a meta container
|
---|
75 | SDContainer getSDContainer(uInt whichRow=0) const;
|
---|
76 | SDHeader getSDHeader() const;
|
---|
77 | SDFrequencyTable getSDFreqTable() const;
|
---|
78 | // get spectrum,mask and tsys for the given row, at the selected
|
---|
79 | // cursor - all as stl vectors
|
---|
80 | virtual std::vector<float> getSpectrum(Int whichRow=0) const;
|
---|
81 | virtual std::vector<bool> getMask(Int whichRow=0) const;
|
---|
82 |
|
---|
83 | virtual Float getTsys(Int whichRow=0) const;
|
---|
84 | // get all as aips++ Vectors
|
---|
85 | virtual void getSpectrum(Vector<Float>& spectrum, Int whichRow=0);
|
---|
86 |
|
---|
87 | //virtual void getMask(Vector<Bool>& mask,Int whichRow=0) const;
|
---|
88 |
|
---|
89 | // get info for current row
|
---|
90 | std::string getTime(Int whichRow=0) const ;
|
---|
91 | std::string getSourceName(Int whichRow=0) const;
|
---|
92 | double getInterval(Int whichRow=0) const;
|
---|
93 |
|
---|
94 | virtual void setSpectrum(std::vector<float> spectrum, int whichRow=0);
|
---|
95 | virtual void setRestFreqs(std::vector<double> freqs, const std::string& theunit);
|
---|
96 | virtual void setCoordInfo(std::vector<string> theinfo);
|
---|
97 | // set the current value
|
---|
98 | virtual bool setIF(Int whichIF=0);
|
---|
99 | virtual bool setBeam(Int whichBeam=0);
|
---|
100 | virtual bool setPol(Int whichPol=0);
|
---|
101 |
|
---|
102 | //sets the user mask applied to all spectra
|
---|
103 | virtual bool setMask(std::vector<int> whichChans);
|
---|
104 | // Hard flags the current spectrum, not reversible
|
---|
105 | virtual void flag(int whichRow);
|
---|
106 |
|
---|
107 | // return the currently selected values
|
---|
108 | virtual Int getIF() { return IFSel_; }
|
---|
109 | virtual Int getBeam() { return beamSel_; }
|
---|
110 | virtual Int getPol() { return polSel_; }
|
---|
111 | virtual std::vector<string> getCoordInfo() const;
|
---|
112 |
|
---|
113 | // number of scans in table
|
---|
114 | virtual Int nScan() const;
|
---|
115 |
|
---|
116 | // print a summary to stdout
|
---|
117 | virtual std::string summary();
|
---|
118 |
|
---|
119 | // write to disk as aips++ table
|
---|
120 | void makePersistent(const std::string& filename);
|
---|
121 |
|
---|
122 | // get a new SDMemTable containing all rows with the same give SCANID
|
---|
123 | SDMemTable getScan(Int scanID);
|
---|
124 | SDMemTable getSource(const std::string& source);
|
---|
125 |
|
---|
126 | const TableRecord& getHeader() const {return table_.keywordSet();}
|
---|
127 | // get a handle to the "raw" aips++ table
|
---|
128 | const Table& table() { return table_; }
|
---|
129 |
|
---|
130 | // return the number of values
|
---|
131 | Int nBeam() const;
|
---|
132 | Int nIF() const;
|
---|
133 | Int nPol() const;
|
---|
134 | Int nChan() const;
|
---|
135 |
|
---|
136 | // return the number of rows (integrations) in the table
|
---|
137 | Int nRow() const { return table_.nrow(); }
|
---|
138 |
|
---|
139 | // return a row as a Masked array, internally converting uChar flags
|
---|
140 | // to bool mask
|
---|
141 | MaskedArray<Float> rowAsMaskedArray(uInt whichRow,
|
---|
142 | Bool useSelection = False);
|
---|
143 |
|
---|
144 | SpectralCoordinate getCoordinate(uInt whichIdx) const;
|
---|
145 | Bool setCoordinate(const SpectralCoordinate& speccord, uInt whichIdx);
|
---|
146 |
|
---|
147 | Int nCoordinates() const;
|
---|
148 |
|
---|
149 | std::vector<double> getAbscissa(int whichRow=0);
|
---|
150 | std::string getAbscissaString(Int whichRow=0);
|
---|
151 |
|
---|
152 | private:
|
---|
153 | // utility func for nice printout
|
---|
154 | String formatSec(Double x);
|
---|
155 | void setup();
|
---|
156 | // the current cursor into the array
|
---|
157 | Int IFSel_,beamSel_,polSel_;
|
---|
158 | std::vector<bool> chanMask_;
|
---|
159 | // the underlying memory table
|
---|
160 | Table table_;
|
---|
161 | };
|
---|
162 |
|
---|
163 | }// namespace
|
---|
164 | #endif
|
---|