source: trunk/src/Scantable.h @ 972

Last change on this file since 972 was 972, checked in by mar637, 18 years ago

Completed Ticket #7 - storing of fits.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.7 KB
Line 
1//
2// C++ Interface: Scantable
3//
4// Description:
5//
6//
7// Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2005
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#ifndef ASAPSCANTABLE_H
13#define ASAPSCANTABLE_H
14
15// STL
16#include <string>
17#include <vector>
18// AIPS++
19#include <casa/aips.h>
20#include <casa/Arrays/MaskedArray.h>
21#include <casa/BasicSL/String.h>
22#include <casa/Utilities/CountedPtr.h>
23
24#include <coordinates/Coordinates/SpectralCoordinate.h>
25
26#include <tables/Tables/Table.h>
27#include <tables/Tables/ArrayColumn.h>
28#include <tables/Tables/ScalarColumn.h>
29
30#include <measures/TableMeasures/ScalarMeasColumn.h>
31
32#include "Logger.h"
33#include "STHeader.h"
34#include "STFrequencies.h"
35#include "STWeather.h"
36#include "STFocus.h"
37#include "STTcal.h"
38#include "STMolecules.h"
39#include "STSelector.h"
40#include "STHistory.h"
41#include "STPol.h"
42#include "STFit.h"
43#include "STFitEntry.h"
44
45namespace asap {
46
47/**
48  * This class contains and wraps a casa::Table, which is used to store
49  * all the information. This can be either a MemoryTable or a
50  * disk based Table.
51  * It provides access functions to the underlying table
52  * It contains n subtables:
53  * @li weather
54  * @li frequencies
55  * @li molecules
56  * @li tcal
57  * @li focus
58  * @li fits
59  *
60  * @brief The main ASAP data container
61  * @author Malte Marquarding
62  * @date
63  * @version
64*/
65class Scantable : private Logger
66{
67
68friend class STMath;
69
70public:
71  /**
72   * Default constructor
73   */
74  Scantable(casa::Table::TableType ttype = casa::Table::Memory);
75
76  /**
77   * Create a Scantable object form an existing table on disk
78   * @param[in] name the name of the existing Scantable
79   */
80  Scantable(const std::string& name, casa::Table::TableType ttype = casa::Table::Memory);
81
82  /// @fixme this is only sensible for MemoryTables....
83  Scantable(const Scantable& other, bool clear=true);
84
85  /**
86   * Destructor
87   */
88  virtual ~Scantable();
89
90  /**
91   * get a const reference to the underlying casa::Table
92   * @return consantcasa::Table reference
93   */
94  const casa::Table& table() const;
95
96  /**
97   * get a reference to the underlying casa::Table with the Selection
98   * object applied if set
99   * @return casa::Table reference
100   */
101  casa::Table& table();
102
103
104  /**
105   * Get a handle to the selection object
106   * @return constant STSelector reference
107   */
108  const STSelector& getSelection() const { return selector_; }
109
110  /**
111   * Set the data to be a subset as defined by the STSelector
112   * @param selection a STSelector object
113   */
114  void setSelection(const STSelector& selection);
115
116  /**
117   * unset the selection of the data
118   */
119  void unsetSelection();
120  /**
121   * set the header
122   * @param[in] sdh an STHeader object
123   */
124  void setHeader( const STHeader& sth );
125
126  /**
127   * get the header information
128   * @return an STHeader object
129   */
130  STHeader getHeader( ) const;
131  /**
132   * Checks if the "other" Scantable is conformant with this,
133   * i.e. if  header values are the same.
134   * @param[in] other another Scantable
135   * @return true or false
136   */
137  bool conformant( const Scantable& other);
138
139  /**
140   * return the number of scans in the table
141   * @return number of scans in the table
142   */
143  int nscan() const;
144
145  //casa::MDirection::Types getDirectionReference() const;
146  casa::MEpoch::Types getTimeReference() const;
147
148  /**
149   * Get global antenna position
150   * @return casa::MPosition
151   */
152  casa::MPosition getAntennaPosition() const;
153
154  /**
155   *  Return the Flux unit of the data, e.g. "Jy" or "K"
156   * @return string
157   */
158  std::string getFluxUnit() const;
159
160  /**
161   * Set the Flux unit of the data
162   * @param unit a string representing the unit, e.g "Jy" or "K"
163   */
164  void setFluxUnit( const std::string& unit );
165
166  /**
167   *
168   * @param instrument a string representing an insturment. see xxx
169   */
170  void setInstrument( const std::string& instrument );
171
172  /**
173   * (Re)calculate the azimuth and elevationnfor all rows
174   */
175  void calculateAZEL();
176
177  /**
178   * "hard" flag the data, this flags everything selected in setSelection()
179   */
180  void flag();
181
182  /**
183   * Return a list of row numbers with respect to the original table.
184   * @return a list of unsigned ints
185   */
186  std::vector<unsigned int> rownumbers() const;
187
188
189  /**
190   * Get the number of beams in the data or a specific scan
191   * @param scanno the scan number to get the number of beams for.
192   * If scanno<0 the number is retrieved from the header.
193   * @return an integer number
194   */
195  int nbeam(int scanno=-1) const;
196  /**
197   * Get the number of IFs in the data or a specific scan
198   * @param scanno the scan number to get the number of IFs for.
199   * If scanno<0 the number is retrieved from the header.
200   * @return an integer number
201   */
202  int nif(int scanno=-1) const;
203  /**
204   * Get the number of polarizations in the data or a specific scan
205   * @param scanno the scan number to get the number of polarizations for.
206   * If scanno<0 the number is retrieved from the header.
207   * @return an integer number
208   */
209  int npol(int scanno=-1) const;
210
211  std::string getPolType() const;
212
213  /**
214   * Get the number of channels in the data or a specific IF. This currently
215   * varies only with IF number
216   * @param ifno the IF number to get the number of channels for.
217   * If ifno<0 the number is retrieved from the header.
218   * @return an integer number
219   */
220  int nchan(int ifno=-1) const;
221
222  /**
223   * Get the number of integartion cycles
224   * @param scanno the scan number to get the number of rows for.
225   * If scanno<0 the number is retrieved from the header.
226   * @return
227   */
228  int nrow(int scanno=-1) const;
229
230  int ncycle(int scanno=-1) const;
231
232  int getBeam(int whichrow) const;
233  int getIF(int whichrow) const;
234  int getPol(int whichrow) const;
235  int getCycle(int whichrow) const { return cycleCol_(whichrow); }
236  int getScan(int whichrow) const { return scanCol_(whichrow); }
237  int getChannels(int whichrow) const;
238
239  double getInterval(int whichrow) const
240    { return integrCol_(whichrow); }
241
242  float getTsys(int whichrow) const
243    { return casa::Vector<casa::Float>(tsysCol_(whichrow))(0); }
244  float getElevation(int whichrow) const
245    { return elCol_(whichrow); }
246  float getAzimuth(int whichrow) const
247    { return azCol_(whichrow); }
248  float getParAngle(int whichrow) const
249    { return paraCol_(whichrow); }
250
251  std::string getSourceName(int whichrow) const
252    { return srcnCol_(whichrow); }
253
254  std::vector<bool> getMask(int whichrow) const;
255  std::vector<float> getSpectrum(int whichrow,
256                                 const std::string& poltype = "" ) const;
257
258  void setSpectrum(const std::vector<float>& spec, int whichrow);
259
260  std::string getPolarizationLabel(int index, const std::string& ptype) const
261    { return STPol::getPolLabel(index, ptype ); }
262
263  /**
264   * Write the Scantable to disk
265   * @param filename the output file name
266   */
267  void makePersistent(const std::string& filename);
268
269  std::vector<std::string> getHistory() const
270    { return historyTable_.getHistory(); };
271
272  void addHistory(const std::string& hist) { historyTable_.addEntry(hist); }
273
274  void appendToHistoryTable(const STHistory& otherhist)
275    { historyTable_.append(otherhist); }
276
277  std::string summary(bool verbose=false);
278  std::string getTime(int whichrow=-1, bool showdate=true) const;
279
280  // returns unit, conversion frame, doppler, base-frame
281
282  /**
283   * Get the frequency set up
284   * This is forwarded to the STFrequencies subtable
285   * @return unit, frame, doppler
286   */
287  std::vector<std::string> getCoordInfo() const
288    { return freqTable_.getInfo(); };
289
290  void setCoordInfo(std::vector<string> theinfo)
291    { return freqTable_.setInfo(theinfo); };
292
293
294  std::vector<double> getAbcissa(int whichrow) const;
295
296  std::string getAbcissaLabel(int whichrow) const;
297  std::vector<double> getRestFrequencies() const
298    { return moleculeTable_.getRestFrequencies(); }
299
300  void setRestFrequencies(double rf, const std::string& = "Hz");
301  void setRestFrequencies(const std::string& name);
302
303  STFrequencies& frequencies() { return freqTable_; }
304  STWeather& weather() { return weatherTable_; }
305  STFocus& focus() { return focusTable_; }
306  STTcal& tcal() { return tcalTable_; }
307  STMolecules& molecules() { return moleculeTable_; }
308  STHistory& history() { return historyTable_; }
309  STFit& fit() { return fitTable_; }
310
311  std::vector<std::string> columnNames() const;
312
313  void addFit(const STFitEntry& fit, int row);
314  STFitEntry getFit(int row) const
315    { STFitEntry fe; fitTable_.getEntry(fe, mfitidCol_(row)); return fe; }
316
317private:
318
319  casa::Matrix<casa::Float> getPolMatrix( casa::uInt whichrow ) const;
320
321  /**
322   * Turns a time vale into a formatted string
323   * @param x
324   * @return
325   */
326  std::string formatSec(casa::Double x) const;
327
328  std::string formatTime(const casa::MEpoch& me, bool showdate)const;
329
330  /**
331   *  Turns a casa::MDirection into a nicely formatted string
332   * @param md an casa::MDirection
333   * @return
334   */
335  std::string formatDirection(const casa::MDirection& md) const;
336
337
338  /**
339   * Create a unique file name for the paged (temporary) table
340   * @return just the name
341   */
342  static casa::String generateName();
343
344  /**
345   * attach to cached columns
346   */
347  void attach();
348
349  /**
350   * Set up the main casa::Table
351   */
352  void setupMainTable();
353
354  void attachSubtables();
355  void copySubtables(const Scantable& other);
356
357  /**
358   * Convert an "old" asap1 style row index into a new index
359   * @param[in] therow
360   * @return and index into @table_
361   */
362  int rowToScanIndex(int therow);
363
364  static const unsigned int version_ = 2;
365
366  STSelector selector_;
367
368  casa::Table::TableType type_;
369
370  // the actual data
371  casa::Table table_;
372  casa::Table originalTable_;
373
374  STTcal tcalTable_;
375  STFrequencies freqTable_;
376  STWeather weatherTable_;
377  STFocus focusTable_;
378  STMolecules moleculeTable_;
379  STHistory historyTable_;
380  STFit fitTable_;
381
382  // Cached Columns to avoid reconstructing them for each row get/put
383  casa::ScalarColumn<casa::Double> integrCol_;
384  casa::MDirection::ScalarColumn dirCol_;
385  casa::MEpoch::ScalarColumn timeCol_;
386  casa::ScalarColumn<casa::Float> azCol_;
387  casa::ScalarColumn<casa::Float> elCol_;
388  casa::ScalarColumn<casa::Float> paraCol_;
389  casa::ScalarColumn<casa::String> srcnCol_, fldnCol_;
390  casa::ScalarColumn<casa::uInt> scanCol_, beamCol_, ifCol_, polCol_, cycleCol_;
391  casa::ScalarColumn<casa::Int> rbeamCol_;
392  casa::ArrayColumn<casa::Float> specCol_, tsysCol_;
393  casa::ArrayColumn<casa::uChar> flagsCol_;
394
395  // id in frequencies table
396  casa::ScalarColumn<casa::uInt> mfreqidCol_;
397  // id in tcal table
398  casa::ScalarColumn<casa::uInt> mtcalidCol_;
399
400  casa::ArrayColumn<casa::String> histitemCol_;
401  casa::ScalarColumn<casa::Int> mfitidCol_;
402  casa::ScalarColumn<casa::uInt> mweatheridCol_;
403
404  casa::ScalarColumn<casa::uInt> mfocusidCol_;
405
406  casa::ScalarColumn<casa::uInt> mmolidCol_;
407
408  static std::map<std::string, STPol::STPolFactory *> factories_;
409  void initFactories();
410
411};
412
413
414} // namespace
415
416#endif
Note: See TracBrowser for help on using the repository browser.