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 <casa/Exceptions/Error.h>
|
---|
25 |
|
---|
26 | #include <coordinates/Coordinates/SpectralCoordinate.h>
|
---|
27 |
|
---|
28 | #include <tables/Tables/Table.h>
|
---|
29 | #include <tables/Tables/ArrayColumn.h>
|
---|
30 | #include <tables/Tables/ScalarColumn.h>
|
---|
31 |
|
---|
32 | #include <measures/TableMeasures/ScalarMeasColumn.h>
|
---|
33 |
|
---|
34 | #include <casa/Arrays/Vector.h>
|
---|
35 | #include <casa/Quanta/Quantum.h>
|
---|
36 |
|
---|
37 | #include "Logger.h"
|
---|
38 | #include "STHeader.h"
|
---|
39 | #include "STFrequencies.h"
|
---|
40 | #include "STWeather.h"
|
---|
41 | #include "STFocus.h"
|
---|
42 | #include "STTcal.h"
|
---|
43 | #include "STMolecules.h"
|
---|
44 | #include "STSelector.h"
|
---|
45 | #include "STHistory.h"
|
---|
46 | #include "STPol.h"
|
---|
47 | #include "STFit.h"
|
---|
48 | #include "STFitEntry.h"
|
---|
49 |
|
---|
50 | namespace asap {
|
---|
51 |
|
---|
52 | /**
|
---|
53 | * This class contains and wraps a casa::Table, which is used to store
|
---|
54 | * all the information. This can be either a MemoryTable or a
|
---|
55 | * disk based Table.
|
---|
56 | * It provides access functions to the underlying table
|
---|
57 | * It contains n subtables:
|
---|
58 | * @li weather
|
---|
59 | * @li frequencies
|
---|
60 | * @li molecules
|
---|
61 | * @li tcal
|
---|
62 | * @li focus
|
---|
63 | * @li fits
|
---|
64 | *
|
---|
65 | * @brief The main ASAP data container
|
---|
66 | * @author Malte Marquarding
|
---|
67 | * @date
|
---|
68 | * @version
|
---|
69 | */
|
---|
70 | class Scantable : private Logger
|
---|
71 | {
|
---|
72 |
|
---|
73 | friend class STMath;
|
---|
74 |
|
---|
75 | public:
|
---|
76 | /**
|
---|
77 | * Default constructor
|
---|
78 | */
|
---|
79 | explicit Scantable(casa::Table::TableType ttype = casa::Table::Memory);
|
---|
80 |
|
---|
81 | /**
|
---|
82 | * Create a Scantable object form an existing table on disk
|
---|
83 | * @param[in] name the name of the existing Scantable
|
---|
84 | */
|
---|
85 | explicit Scantable(const std::string& name, casa::Table::TableType ttype = casa::Table::Memory);
|
---|
86 |
|
---|
87 | /// @fixme this is only sensible for MemoryTables....
|
---|
88 | Scantable(const Scantable& other, bool clear=true);
|
---|
89 |
|
---|
90 | /**
|
---|
91 | * Destructor
|
---|
92 | */
|
---|
93 | virtual ~Scantable();
|
---|
94 |
|
---|
95 | /**
|
---|
96 | * get a const reference to the underlying casa::Table
|
---|
97 | * @return const \ref casa::Table reference
|
---|
98 | */
|
---|
99 | const casa::Table& table() const;
|
---|
100 |
|
---|
101 | /**
|
---|
102 | * get a reference to the underlying casa::Table with the Selection
|
---|
103 | * object applied if set
|
---|
104 | * @return casa::Table reference
|
---|
105 | */
|
---|
106 | casa::Table& table();
|
---|
107 |
|
---|
108 |
|
---|
109 | /**
|
---|
110 | * Get a handle to the selection object
|
---|
111 | * @return constant STSelector reference
|
---|
112 | */
|
---|
113 | const STSelector& getSelection() const { return selector_; }
|
---|
114 |
|
---|
115 | /**
|
---|
116 | * Set the data to be a subset as defined by the STSelector
|
---|
117 | * @param selection a STSelector object
|
---|
118 | */
|
---|
119 | void setSelection(const STSelector& selection);
|
---|
120 |
|
---|
121 | /**
|
---|
122 | * unset the selection of the data
|
---|
123 | */
|
---|
124 | void unsetSelection();
|
---|
125 | /**
|
---|
126 | * set the header
|
---|
127 | * @param[in] sth an STHeader object
|
---|
128 | */
|
---|
129 | void setHeader( const STHeader& sth );
|
---|
130 |
|
---|
131 | /**
|
---|
132 | * get the header information
|
---|
133 | * @return an STHeader object
|
---|
134 | */
|
---|
135 | STHeader getHeader( ) const;
|
---|
136 |
|
---|
137 | /**
|
---|
138 | * Checks if the "other" Scantable is conformant with this,
|
---|
139 | * i.e. if header values are the same.
|
---|
140 | * @param[in] other another Scantable
|
---|
141 | * @return true or false
|
---|
142 | */
|
---|
143 | bool conformant( const Scantable& other);
|
---|
144 |
|
---|
145 | /**
|
---|
146 | *
|
---|
147 | * @param stype The type of the source, 0 = on, 1 = off
|
---|
148 | */
|
---|
149 | void setSourceType(int stype);
|
---|
150 |
|
---|
151 |
|
---|
152 | /**
|
---|
153 | * The number of scans in the table
|
---|
154 | * @return number of scans in the table
|
---|
155 | */
|
---|
156 | int nscan() const;
|
---|
157 |
|
---|
158 | casa::MEpoch::Types getTimeReference() const;
|
---|
159 |
|
---|
160 |
|
---|
161 | casa::MEpoch getEpoch(int whichrow) const;
|
---|
162 |
|
---|
163 | /**
|
---|
164 | * Get global antenna position
|
---|
165 | * @return casa::MPosition
|
---|
166 | */
|
---|
167 | casa::MPosition getAntennaPosition() const;
|
---|
168 |
|
---|
169 | /**
|
---|
170 | * the @ref casa::MDirection for a specific row
|
---|
171 | * @param[in] whichrow the row number
|
---|
172 | * return casa::MDirection
|
---|
173 | */
|
---|
174 | casa::MDirection getDirection( int whichrow ) const;
|
---|
175 |
|
---|
176 | /**
|
---|
177 | * get the direction type as a string, e.g. "J2000"
|
---|
178 | * @param[in] whichrow the row number
|
---|
179 | * return the direction string
|
---|
180 | */
|
---|
181 | std::string getDirectionString( int whichrow ) const;
|
---|
182 |
|
---|
183 | /**
|
---|
184 | * set the direction type as a string, e.g. "J2000"
|
---|
185 | * @param[in] refstr the direction type
|
---|
186 | */
|
---|
187 | void setDirectionRefString(const std::string& refstr="");
|
---|
188 |
|
---|
189 | /**
|
---|
190 | * get the direction reference string
|
---|
191 | * @return a string describing the direction reference
|
---|
192 | */
|
---|
193 | std::string getDirectionRefString() const;
|
---|
194 |
|
---|
195 | /**
|
---|
196 | * Return the Flux unit of the data, e.g. "Jy" or "K"
|
---|
197 | * @return string
|
---|
198 | */
|
---|
199 | std::string getFluxUnit() const;
|
---|
200 |
|
---|
201 | /**
|
---|
202 | * Set the Flux unit of the data
|
---|
203 | * @param unit a string representing the unit, e.g "Jy" or "K"
|
---|
204 | */
|
---|
205 | void setFluxUnit( const std::string& unit );
|
---|
206 |
|
---|
207 | /**
|
---|
208 | * Set the Stokes type of the data
|
---|
209 | * @param feedtype a string representing the type, e.g "circular" or "linear"
|
---|
210 | */
|
---|
211 | void setFeedType( const std::string& feedtype );
|
---|
212 |
|
---|
213 | /**
|
---|
214 | *
|
---|
215 | * @param instrument a string representing an insturment. see xxx
|
---|
216 | */
|
---|
217 | void setInstrument( const std::string& instrument );
|
---|
218 |
|
---|
219 | /**
|
---|
220 | * (Re)calculate the azimuth and elevationnfor all rows
|
---|
221 | */
|
---|
222 | void calculateAZEL();
|
---|
223 |
|
---|
224 | /**
|
---|
225 | * "hard" flag the data, this flags everything selected in setSelection()
|
---|
226 | * param[in] msk a boolean mask of length nchan describing the points to
|
---|
227 | * to be flagged
|
---|
228 | */
|
---|
229 | //void flag( const std::vector<bool>& msk = std::vector<bool>());
|
---|
230 | void flag( const std::vector<bool>& msk = std::vector<bool>(), bool unflag=false);
|
---|
231 |
|
---|
232 | /**
|
---|
233 | * Flag the data in a row-based manner. (CAS-1433 Wataru Kawasaki)
|
---|
234 | * param[in] rows list of row numbers to be flagged
|
---|
235 | */
|
---|
236 | void flagRow( const std::vector<casa::uInt>& rows = std::vector<casa::uInt>(), bool unflag=false);
|
---|
237 |
|
---|
238 | /**
|
---|
239 | * Get flagRow info at the specified row. If true, the whole data
|
---|
240 | * at the row should be flagged.
|
---|
241 | */
|
---|
242 | bool getFlagRow(int whichrow) const
|
---|
243 | { return (flagrowCol_(whichrow) > 0); }
|
---|
244 |
|
---|
245 | /**
|
---|
246 | * Flag the data outside a specified range (in a channel-based manner).
|
---|
247 | * (CAS-1807 Wataru Kawasaki)
|
---|
248 | */
|
---|
249 | void clip(const casa::Float uthres, const casa::Float dthres, bool clipoutside, bool unflag);
|
---|
250 |
|
---|
251 | /**
|
---|
252 | * Return a list of row numbers with respect to the original table.
|
---|
253 | * @return a list of unsigned ints
|
---|
254 | */
|
---|
255 | std::vector<unsigned int> rownumbers() const;
|
---|
256 |
|
---|
257 |
|
---|
258 | /**
|
---|
259 | * Get the number of beams in the data or a specific scan
|
---|
260 | * @param scanno the scan number to get the number of beams for.
|
---|
261 | * If scanno<0 the number is retrieved from the header.
|
---|
262 | * @return an integer number
|
---|
263 | */
|
---|
264 | int nbeam(int scanno=-1) const;
|
---|
265 | /**
|
---|
266 | * Get the number of IFs in the data or a specific scan
|
---|
267 | * @param scanno the scan number to get the number of IFs for.
|
---|
268 | * If scanno<0 the number is retrieved from the header.
|
---|
269 | * @return an integer number
|
---|
270 | */
|
---|
271 | int nif(int scanno=-1) const;
|
---|
272 | /**
|
---|
273 | * Get the number of polarizations in the data or a specific scan
|
---|
274 | * @param scanno the scan number to get the number of polarizations for.
|
---|
275 | * If scanno<0 the number is retrieved from the header.
|
---|
276 | * @return an integer number
|
---|
277 | */
|
---|
278 | int npol(int scanno=-1) const;
|
---|
279 |
|
---|
280 | std::string getPolType() const;
|
---|
281 |
|
---|
282 |
|
---|
283 | /**
|
---|
284 | * Get the number of integartion cycles
|
---|
285 | * @param scanno the scan number to get the number of rows for.
|
---|
286 | * If scanno<0 the number is retrieved from the header.
|
---|
287 | * @return the number of rows (for the specified scanno)
|
---|
288 | */
|
---|
289 | int nrow(int scanno=-1) const;
|
---|
290 |
|
---|
291 | int getBeam(int whichrow) const;
|
---|
292 | std::vector<uint> getBeamNos() { return getNumbers(beamCol_); }
|
---|
293 |
|
---|
294 | int getIF(int whichrow) const;
|
---|
295 | std::vector<uint> getIFNos() { return getNumbers(ifCol_); }
|
---|
296 |
|
---|
297 | int getPol(int whichrow) const;
|
---|
298 | std::vector<uint> getPolNos() { return getNumbers(polCol_); }
|
---|
299 |
|
---|
300 | std::vector<uint> getScanNos() { return getNumbers(scanCol_); }
|
---|
301 | int getScan(int whichrow) const { return scanCol_(whichrow); }
|
---|
302 |
|
---|
303 | //TT addition
|
---|
304 | std::vector<uint> getMolNos() {return getNumbers(mmolidCol_); }
|
---|
305 |
|
---|
306 | /**
|
---|
307 | * Get the number of channels in the data or a specific IF. This currently
|
---|
308 | * varies only with IF number
|
---|
309 | * @param ifno the IF number to get the number of channels for.
|
---|
310 | * If ifno<0 the number is retrieved from the header.
|
---|
311 | * @return an integer number
|
---|
312 | */
|
---|
313 | int nchan(int ifno=-1) const;
|
---|
314 | int getChannels(int whichrow) const;
|
---|
315 |
|
---|
316 | int ncycle(int scanno=-1) const;
|
---|
317 | int getCycle(int whichrow) const { return cycleCol_(whichrow); }
|
---|
318 |
|
---|
319 | double getInterval(int whichrow) const
|
---|
320 | { return integrCol_(whichrow); }
|
---|
321 |
|
---|
322 | float getTsys(int whichrow) const
|
---|
323 | { return casa::Vector<casa::Float>(tsysCol_(whichrow))(0); }
|
---|
324 | float getElevation(int whichrow) const
|
---|
325 | { return elCol_(whichrow); }
|
---|
326 | float getAzimuth(int whichrow) const
|
---|
327 | { return azCol_(whichrow); }
|
---|
328 | float getParAngle(int whichrow) const
|
---|
329 | { return paraCol_(whichrow); }
|
---|
330 | int getTcalId(int whichrow) const
|
---|
331 | { return mtcalidCol_(whichrow); }
|
---|
332 |
|
---|
333 | std::string getSourceName(int whichrow) const
|
---|
334 | { return srcnCol_(whichrow); }
|
---|
335 |
|
---|
336 | std::vector<bool> getMask(int whichrow) const;
|
---|
337 | std::vector<float> getSpectrum(int whichrow,
|
---|
338 | const std::string& poltype = "" ) const;
|
---|
339 |
|
---|
340 | void setSpectrum(const std::vector<float>& spec, int whichrow);
|
---|
341 |
|
---|
342 | std::string getPolarizationLabel(int index, const std::string& ptype) const
|
---|
343 | { return STPol::getPolLabel(index, ptype ); }
|
---|
344 |
|
---|
345 | /**
|
---|
346 | * Write the Scantable to disk
|
---|
347 | * @param filename the output file name
|
---|
348 | */
|
---|
349 | void makePersistent(const std::string& filename);
|
---|
350 |
|
---|
351 | std::vector<std::string> getHistory() const
|
---|
352 | { return historyTable_.getHistory(); };
|
---|
353 |
|
---|
354 | void addHistory(const std::string& hist) { historyTable_.addEntry(hist); }
|
---|
355 |
|
---|
356 | void appendToHistoryTable(const STHistory& otherhist)
|
---|
357 | { historyTable_.append(otherhist); }
|
---|
358 |
|
---|
359 | std::string summary(bool verbose=false);
|
---|
360 | std::string getTime(int whichrow=-1, bool showdate=true) const;
|
---|
361 | double getIntTime(int whichrow) const { return integrCol_(whichrow); }
|
---|
362 |
|
---|
363 | // returns unit, conversion frame, doppler, base-frame
|
---|
364 |
|
---|
365 | /**
|
---|
366 | * Get the frequency set up
|
---|
367 | * This is forwarded to the STFrequencies subtable
|
---|
368 | * @return unit, frame, doppler
|
---|
369 | */
|
---|
370 | std::vector<std::string> getCoordInfo() const
|
---|
371 | { return freqTable_.getInfo(); };
|
---|
372 |
|
---|
373 | void setCoordInfo(std::vector<string> theinfo)
|
---|
374 | { return freqTable_.setInfo(theinfo); };
|
---|
375 |
|
---|
376 |
|
---|
377 | std::vector<double> getAbcissa(int whichrow) const;
|
---|
378 |
|
---|
379 | std::string getAbcissaLabel(int whichrow) const;
|
---|
380 | std::vector<double> getRestFrequencies() const
|
---|
381 | { return moleculeTable_.getRestFrequencies(); }
|
---|
382 | std::vector<double> getRestFrequency(int id) const
|
---|
383 | { return moleculeTable_.getRestFrequency(id); }
|
---|
384 |
|
---|
385 | /**
|
---|
386 | void setRestFrequencies(double rf, const std::string& name = "",
|
---|
387 | const std::string& = "Hz");
|
---|
388 | **/
|
---|
389 | // Modified by Takeshi Nakazato 05/09/2008
|
---|
390 | /***
|
---|
391 | void setRestFrequencies(vector<double> rf, const vector<std::string>& name = "",
|
---|
392 | const std::string& = "Hz");
|
---|
393 | ***/
|
---|
394 | void setRestFrequencies(vector<double> rf,
|
---|
395 | const vector<std::string>& name = vector<std::string>(1,""),
|
---|
396 | const std::string& = "Hz");
|
---|
397 |
|
---|
398 | //void setRestFrequencies(const std::string& name);
|
---|
399 | void setRestFrequencies(const vector<std::string>& name);
|
---|
400 |
|
---|
401 | void shift(int npix);
|
---|
402 |
|
---|
403 | void convertDirection(const std::string& newframe);
|
---|
404 |
|
---|
405 | STFrequencies& frequencies() { return freqTable_; }
|
---|
406 | const STFrequencies& frequencies() const { return freqTable_; }
|
---|
407 | STWeather& weather() { return weatherTable_; }
|
---|
408 | const STWeather& weather() const { return weatherTable_; }
|
---|
409 | STFocus& focus() { return focusTable_; }
|
---|
410 | const STFocus& focus() const { return focusTable_; }
|
---|
411 | STTcal& tcal() { return tcalTable_; }
|
---|
412 | const STTcal& tcal() const { return tcalTable_; }
|
---|
413 | STMolecules& molecules() { return moleculeTable_; }
|
---|
414 | const STMolecules& molecules() const { return moleculeTable_; }
|
---|
415 | STHistory& history() { return historyTable_; }
|
---|
416 | const STHistory& history() const { return historyTable_; }
|
---|
417 | STFit& fit() { return fitTable_; }
|
---|
418 | const STFit& fit() const { return fitTable_; }
|
---|
419 |
|
---|
420 | std::vector<std::string> columnNames() const;
|
---|
421 |
|
---|
422 | void addFit(const STFitEntry& fit, int row);
|
---|
423 | STFitEntry getFit(int row) const
|
---|
424 | { STFitEntry fe; fitTable_.getEntry(fe, mfitidCol_(row)); return fe; }
|
---|
425 |
|
---|
426 | //Added by TT
|
---|
427 | /**
|
---|
428 | * Get the antenna name
|
---|
429 | * @return antenna name string
|
---|
430 | */
|
---|
431 | std::string getAntennaName() const;
|
---|
432 |
|
---|
433 | /**
|
---|
434 | * For GBT MS data only. check a scan list
|
---|
435 | * against the information found in GBT_GO table for
|
---|
436 | * scan number orders to get correct pairs.
|
---|
437 | * @param[in] scan list
|
---|
438 | * @return status
|
---|
439 | */
|
---|
440 | int checkScanInfo(const std::vector<int>& scanlist) const;
|
---|
441 |
|
---|
442 | /**
|
---|
443 | * Get the direction as a vector, for a specific row
|
---|
444 | * @param[in] whichrow the row numbyyer
|
---|
445 | * @return the direction in a vector
|
---|
446 | */
|
---|
447 | std::vector<double> getDirectionVector(int whichrow) const;
|
---|
448 |
|
---|
449 | /**
|
---|
450 | * Reshape spectrum
|
---|
451 | * @param[in] nmin, nmax minimum and maximum channel
|
---|
452 | * @param[in] irow row number
|
---|
453 | *
|
---|
454 | * 30/07/2008 Takeshi Nakazato
|
---|
455 | **/
|
---|
456 | void reshapeSpectrum( int nmin, int nmax ) throw( casa::AipsError );
|
---|
457 | void reshapeSpectrum( int nmin, int nmax, int irow ) ;
|
---|
458 |
|
---|
459 | /**
|
---|
460 | * Change channel number under fixed bandwidth
|
---|
461 | * @param[in] nchan, dnu new channel number and spectral resolution
|
---|
462 | * @param[in] irow row number
|
---|
463 | *
|
---|
464 | * 27/08/2008 Takeshi Nakazato
|
---|
465 | **/
|
---|
466 | void regridChannel( int nchan, double dnu ) ;
|
---|
467 | void regridChannel( int nchan, double dnu, int irow ) ;
|
---|
468 |
|
---|
469 |
|
---|
470 | private:
|
---|
471 |
|
---|
472 | casa::Matrix<casa::Float> getPolMatrix( casa::uInt whichrow ) const;
|
---|
473 |
|
---|
474 | /**
|
---|
475 | * Turns a time vale into a formatted string
|
---|
476 | * @param x
|
---|
477 | * @return
|
---|
478 | */
|
---|
479 | std::string formatSec(casa::Double x) const;
|
---|
480 |
|
---|
481 | std::string formatTime(const casa::MEpoch& me, bool showdate)const;
|
---|
482 |
|
---|
483 | /**
|
---|
484 | * Turns a casa::MDirection into a nicely formatted string
|
---|
485 | * @param md an casa::MDirection
|
---|
486 | * @return
|
---|
487 | */
|
---|
488 | std::string formatDirection(const casa::MDirection& md) const;
|
---|
489 |
|
---|
490 |
|
---|
491 | /**
|
---|
492 | * Create a unique file name for the paged (temporary) table
|
---|
493 | * @return just the name
|
---|
494 | */
|
---|
495 | static casa::String generateName();
|
---|
496 |
|
---|
497 | /**
|
---|
498 | * attach to cached columns
|
---|
499 | */
|
---|
500 | void attach();
|
---|
501 |
|
---|
502 | /**
|
---|
503 | * Set up the main casa::Table
|
---|
504 | */
|
---|
505 | void setupMainTable();
|
---|
506 |
|
---|
507 | void attachSubtables();
|
---|
508 | void copySubtables(const Scantable& other);
|
---|
509 |
|
---|
510 | /**
|
---|
511 | * Convert an "old" asap1 style row index into a new index
|
---|
512 | * @param[in] therow
|
---|
513 | * @return and index into @table_
|
---|
514 | */
|
---|
515 | int rowToScanIndex(int therow);
|
---|
516 |
|
---|
517 | std::vector<uint> getNumbers(casa::ScalarColumn<casa::uInt>& col);
|
---|
518 |
|
---|
519 | static const casa::uInt version_ = 2;
|
---|
520 |
|
---|
521 | STSelector selector_;
|
---|
522 |
|
---|
523 | casa::Table::TableType type_;
|
---|
524 |
|
---|
525 | // the actual data
|
---|
526 | casa::Table table_;
|
---|
527 | casa::Table originalTable_;
|
---|
528 |
|
---|
529 | STTcal tcalTable_;
|
---|
530 | STFrequencies freqTable_;
|
---|
531 | STWeather weatherTable_;
|
---|
532 | STFocus focusTable_;
|
---|
533 | STMolecules moleculeTable_;
|
---|
534 | STHistory historyTable_;
|
---|
535 | STFit fitTable_;
|
---|
536 |
|
---|
537 | // Cached Columns to avoid reconstructing them for each row get/put
|
---|
538 | casa::ScalarColumn<casa::Double> integrCol_;
|
---|
539 | casa::MDirection::ScalarColumn dirCol_;
|
---|
540 | casa::MEpoch::ScalarColumn timeCol_;
|
---|
541 | casa::ScalarColumn<casa::Float> azCol_;
|
---|
542 | casa::ScalarColumn<casa::Float> elCol_;
|
---|
543 | casa::ScalarColumn<casa::Float> paraCol_;
|
---|
544 | casa::ScalarColumn<casa::String> srcnCol_, fldnCol_;
|
---|
545 | casa::ScalarColumn<casa::uInt> scanCol_, beamCol_, ifCol_, polCol_, cycleCol_, flagrowCol_;
|
---|
546 | casa::ScalarColumn<casa::Int> rbeamCol_, srctCol_;
|
---|
547 | casa::ArrayColumn<casa::Float> specCol_, tsysCol_;
|
---|
548 | casa::ArrayColumn<casa::uChar> flagsCol_;
|
---|
549 |
|
---|
550 | // id in frequencies table
|
---|
551 | casa::ScalarColumn<casa::uInt> mfreqidCol_;
|
---|
552 | // id in tcal table
|
---|
553 | casa::ScalarColumn<casa::uInt> mtcalidCol_;
|
---|
554 |
|
---|
555 | casa::ArrayColumn<casa::String> histitemCol_;
|
---|
556 | casa::ScalarColumn<casa::Int> mfitidCol_;
|
---|
557 | casa::ScalarColumn<casa::uInt> mweatheridCol_;
|
---|
558 |
|
---|
559 | casa::ScalarColumn<casa::uInt> mfocusidCol_;
|
---|
560 |
|
---|
561 | casa::ScalarColumn<casa::uInt> mmolidCol_;
|
---|
562 |
|
---|
563 | static std::map<std::string, STPol::STPolFactory *> factories_;
|
---|
564 | void initFactories();
|
---|
565 |
|
---|
566 | /**
|
---|
567 | * Add an auxiliary column to the main table and attach it to a
|
---|
568 | * cached column. Use for adding new columns that the original asap2
|
---|
569 | * tables do not have.
|
---|
570 | * @param[in] col reference to the cached column to be attached
|
---|
571 | * @param[in] colName column name in asap table
|
---|
572 | * @param[in] defValue default value to fill in the column
|
---|
573 | *
|
---|
574 | * 25/10/2009 Wataru Kawasaki
|
---|
575 | */
|
---|
576 | template<class T, class T2> void attachAuxColumnDef(casa::ScalarColumn<T>&,
|
---|
577 | const casa::String&,
|
---|
578 | const T2&);
|
---|
579 | template<class T, class T2> void attachAuxColumnDef(casa::ArrayColumn<T>&,
|
---|
580 | const casa::String&,
|
---|
581 | const casa::Array<T2>&);
|
---|
582 | };
|
---|
583 |
|
---|
584 |
|
---|
585 | } // namespace
|
---|
586 |
|
---|
587 | #endif
|
---|