source: trunk/src/MSFiller.cpp@ 3126

Last change on this file since 3126 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: 69.0 KB
RevLine 
[1974]1//
2// C++ Interface: MSFiller
3//
4// Description:
5//
[2291]6// This class is specific filler for MS format
7// New version that is implemented using TableVisitor instead of TableIterator
[1974]8//
[2291]9// Takeshi Nakazato <takeshi.nakazato@nao.ac.jp>, (C) 2011
[1974]10//
11// Copyright: See COPYING file that comes with this distribution
12//
13//
14
[2291]15#include <assert.h>
[1974]16#include <iostream>
17#include <map>
[2745]18#include <set>
[1974]19
[3084]20#include <tables/TaQL/ExprNode.h>
[1974]21#include <tables/Tables/TableIter.h>
[1987]22#include <tables/Tables/TableColumn.h>
[1974]23#include <tables/Tables/ScalarColumn.h>
24#include <tables/Tables/ArrayColumn.h>
[3084]25#include <tables/TaQL/TableParse.h>
[2002]26#include <tables/Tables/TableRow.h>
[1974]27
[2002]28#include <casa/Containers/RecordField.h>
[1974]29#include <casa/Logging/LogIO.h>
30#include <casa/Arrays/Slicer.h>
31#include <casa/Quanta/MVTime.h>
[1987]32#include <casa/OS/Path.h>
[1974]33
34#include <measures/Measures/Stokes.h>
35#include <measures/Measures/MEpoch.h>
[1987]36#include <measures/Measures/MCEpoch.h>
37#include <measures/Measures/MFrequency.h>
38#include <measures/Measures/MCFrequency.h>
39#include <measures/Measures/MPosition.h>
40#include <measures/Measures/MCPosition.h>
41#include <measures/Measures/MDirection.h>
42#include <measures/Measures/MCDirection.h>
43#include <measures/Measures/MeasConvert.h>
[1974]44#include <measures/TableMeasures/ScalarMeasColumn.h>
[1987]45#include <measures/TableMeasures/ArrayMeasColumn.h>
46#include <measures/TableMeasures/ScalarQuantColumn.h>
47#include <measures/TableMeasures/ArrayQuantColumn.h>
[1974]48
[3033]49#include <ms/MSSel/MSAntennaIndex.h>
[2021]50
[1974]51#include <atnf/PKSIO/SrcType.h>
52
53#include "MSFiller.h"
54#include "STHeader.h"
55
[2258]56#include "MathUtils.h"
57
[3106]58using namespace casacore;
[2017]59using namespace std ;
60
61namespace asap {
[1988]62
[2291]63class BaseMSFillerVisitor: public TableVisitor {
64 uInt lastRecordNo ;
65 Int lastObservationId ;
66 Int lastFeedId ;
67 Int lastFieldId ;
68 Int lastDataDescId ;
69 Int lastScanNo ;
70 Int lastStateId ;
71 Double lastTime ;
72protected:
73 const Table &table;
74 uInt count;
75public:
76 BaseMSFillerVisitor(const Table &table)
77 : table(table)
78 {
79 count = 0;
80 }
81
[2744]82 virtual void enterObservationId(const uInt /*recordNo*/, Int /*columnValue*/) { }
83 virtual void leaveObservationId(const uInt /*recordNo*/, Int /*columnValue*/) { }
84 virtual void enterFeedId(const uInt /*recordNo*/, Int /*columnValue*/) { }
85 virtual void leaveFeedId(const uInt /*recordNo*/, Int /*columnValue*/) { }
86 virtual void enterFieldId(const uInt /*recordNo*/, Int /*columnValue*/) { }
87 virtual void leaveFieldId(const uInt /*recordNo*/, Int /*columnValue*/) { }
88 virtual void enterDataDescId(const uInt /*recordNo*/, Int /*columnValue*/) { }
89 virtual void leaveDataDescId(const uInt /*recordNo*/, Int /*columnValue*/) { }
90 virtual void enterScanNo(const uInt /*recordNo*/, Int /*columnValue*/) { }
91 virtual void leaveScanNo(const uInt /*recordNo*/, Int /*columnValue*/) { }
92 virtual void enterStateId(const uInt /*recordNo*/, Int /*columnValue*/) { }
93 virtual void leaveStateId(const uInt /*recordNo*/, Int /*columnValue*/) { }
94 virtual void enterTime(const uInt /*recordNo*/, Double /*columnValue*/) { }
95 virtual void leaveTime(const uInt /*recordNo*/, Double /*columnValue*/) { }
[2291]96
[2744]97 virtual Bool visitRecord(const uInt /*recordNo*/,
98 const Int /*ObservationId*/,
99 const Int /*feedId*/,
100 const Int /*fieldId*/,
101 const Int /*dataDescId*/,
102 const Int /*scanNo*/,
103 const Int /*stateId*/,
104 const Double /*time*/) { return True ; }
[2291]105
106 virtual Bool visit(Bool isFirst, const uInt recordNo,
107 const uInt nCols, void const *const colValues[]) {
[3073]108 (void)nCols;
[2291]109 Int observationId, feedId, fieldId, dataDescId, scanNo, stateId;
110 Double time;
111 { // prologue
112 uInt i = 0;
113 {
114 const Int *col = (const Int *)colValues[i++];
115 observationId = col[recordNo];
116 }
117 {
118 const Int *col = (const Int *)colValues[i++];
119 feedId = col[recordNo];
120 }
121 {
122 const Int *col = (const Int *)colValues[i++];
123 fieldId = col[recordNo];
124 }
125 {
126 const Int *col = (const Int *)colValues[i++];
127 dataDescId = col[recordNo];
128 }
129 {
130 const Int *col = (const Int *)colValues[i++];
131 scanNo = col[recordNo];
132 }
133 {
134 const Int *col = (const Int *)colValues[i++];
135 stateId = col[recordNo];
136 }
137 {
138 const Double *col = (const Double *)colValues[i++];
139 time = col[recordNo];
140 }
141 assert(nCols == i);
142 }
143
144 if (isFirst) {
145 enterObservationId(recordNo, observationId);
146 enterFeedId(recordNo, feedId);
147 enterFieldId(recordNo, fieldId);
148 enterDataDescId(recordNo, dataDescId);
149 enterScanNo(recordNo, scanNo);
150 enterStateId(recordNo, stateId);
151 enterTime(recordNo, time);
152 } else {
153 if (lastObservationId != observationId) {
154 leaveTime(lastRecordNo, lastTime);
155 leaveStateId(lastRecordNo, lastStateId);
156 leaveScanNo(lastRecordNo, lastScanNo);
157 leaveDataDescId(lastRecordNo, lastDataDescId);
158 leaveFieldId(lastRecordNo, lastFieldId);
159 leaveFeedId(lastRecordNo, lastFeedId);
160 leaveObservationId(lastRecordNo, lastObservationId);
161
162 enterObservationId(recordNo, observationId);
163 enterFeedId(recordNo, feedId);
164 enterFieldId(recordNo, fieldId);
165 enterDataDescId(recordNo, dataDescId);
166 enterScanNo(recordNo, scanNo);
167 enterStateId(recordNo, stateId);
168 enterTime(recordNo, time);
169 } else if (lastFeedId != feedId) {
170 leaveTime(lastRecordNo, lastTime);
171 leaveStateId(lastRecordNo, lastStateId);
172 leaveScanNo(lastRecordNo, lastScanNo);
173 leaveDataDescId(lastRecordNo, lastDataDescId);
174 leaveFieldId(lastRecordNo, lastFieldId);
175 leaveFeedId(lastRecordNo, lastFeedId);
176
177 enterFeedId(recordNo, feedId);
178 enterFieldId(recordNo, fieldId);
179 enterDataDescId(recordNo, dataDescId);
180 enterScanNo(recordNo, scanNo);
181 enterStateId(recordNo, stateId);
182 enterTime(recordNo, time);
183 } else if (lastFieldId != fieldId) {
184 leaveTime(lastRecordNo, lastTime);
185 leaveStateId(lastRecordNo, lastStateId);
186 leaveScanNo(lastRecordNo, lastScanNo);
187 leaveDataDescId(lastRecordNo, lastDataDescId);
188 leaveFieldId(lastRecordNo, lastFieldId);
189
190 enterFieldId(recordNo, fieldId);
191 enterDataDescId(recordNo, dataDescId);
192 enterScanNo(recordNo, scanNo);
193 enterStateId(recordNo, stateId);
194 enterTime(recordNo, time);
195 } else if (lastDataDescId != dataDescId) {
196 leaveTime(lastRecordNo, lastTime);
197 leaveStateId(lastRecordNo, lastStateId);
198 leaveScanNo(lastRecordNo, lastScanNo);
199 leaveDataDescId(lastRecordNo, lastDataDescId);
200
201 enterDataDescId(recordNo, dataDescId);
202 enterScanNo(recordNo, scanNo);
203 enterStateId(recordNo, stateId);
204 enterTime(recordNo, time);
205 } else if (lastScanNo != scanNo) {
206 leaveTime(lastRecordNo, lastTime);
207 leaveStateId(lastRecordNo, lastStateId);
208 leaveScanNo(lastRecordNo, lastScanNo);
209
210 enterScanNo(recordNo, scanNo);
211 enterStateId(recordNo, stateId);
212 enterTime(recordNo, time);
213 } else if (lastStateId != stateId) {
214 leaveTime(lastRecordNo, lastTime);
215 leaveStateId(lastRecordNo, lastStateId);
216
217 enterStateId(recordNo, stateId);
218 enterTime(recordNo, time);
219 } else if (lastTime != time) {
220 leaveTime(lastRecordNo, lastTime);
221 enterTime(recordNo, time);
222 }
223 }
224 count++;
225 Bool result = visitRecord(recordNo, observationId, feedId, fieldId, dataDescId,
226 scanNo, stateId, time);
227
228 { // epilogue
229 lastRecordNo = recordNo;
230
231 lastObservationId = observationId;
232 lastFeedId = feedId;
233 lastFieldId = fieldId;
234 lastDataDescId = dataDescId;
235 lastScanNo = scanNo;
236 lastStateId = stateId;
237 lastTime = time;
238 }
239 return result ;
240 }
241
242 virtual void finish() {
243 if (count > 0) {
244 leaveTime(lastRecordNo, lastTime);
245 leaveStateId(lastRecordNo, lastStateId);
246 leaveScanNo(lastRecordNo, lastScanNo);
247 leaveDataDescId(lastRecordNo, lastDataDescId);
248 leaveFieldId(lastRecordNo, lastFieldId);
249 leaveFeedId(lastRecordNo, lastFeedId);
250 leaveObservationId(lastRecordNo, lastObservationId);
251 }
252 }
253};
254
255class MSFillerVisitor: public BaseMSFillerVisitor, public MSFillerUtils {
256public:
257 MSFillerVisitor(const Table &from, Scantable &to)
258 : BaseMSFillerVisitor(from),
[2844]259 scantable(to)
[2291]260 {
261 antennaId = 0 ;
262 rowidx = 0 ;
263 tablerow = TableRow( scantable.table() ) ;
264 feedEntry = Vector<Int>( 64, -1 ) ;
265 nbeam = 0 ;
266 ifmap.clear() ;
267 const TableDesc &desc = table.tableDesc() ;
268 if ( desc.isColumn( "DATA" ) )
269 dataColumnName = "DATA" ;
270 else if ( desc.isColumn( "FLOAT_DATA" ) )
271 dataColumnName = "FLOAT_DATA" ;
272 getpt = False ;
[2775]273 isWeather_ = False ;
[2291]274 isSysCal = False ;
[2295]275 isTcal = False ;
[2291]276 cycleNo = 0 ;
277 numSysCalRow = 0 ;
278 header = scantable.getHeader() ;
279 fluxUnit( header.fluxunit ) ;
280
281 // MS subtables
282 const TableRecord &hdr = table.keywordSet();
283 obstab = hdr.asTable( "OBSERVATION" ) ;
284 spwtab = hdr.asTable( "SPECTRAL_WINDOW" ) ;
285 statetab = hdr.asTable( "STATE" ) ;
286 ddtab = hdr.asTable( "DATA_DESCRIPTION" ) ;
287 poltab = hdr.asTable( "POLARIZATION" ) ;
288 fieldtab = hdr.asTable( "FIELD" ) ;
289 anttab = hdr.asTable( "ANTENNA" ) ;
[2292]290 if ( hdr.isDefined( "SYSCAL" ) )
291 sctab = hdr.asTable( "SYSCAL" ) ;
292 if ( hdr.isDefined( "SOURCE" ) )
293 srctab = hdr.asTable( "SOURCE" ) ;
[2291]294
295 // attach to columns
296 // MS MAIN
297 intervalCol.attach( table, "INTERVAL" ) ;
298 flagRowCol.attach( table, "FLAG_ROW" ) ;
299 flagCol.attach( table, "FLAG" ) ;
300 if ( dataColumnName.compare( "DATA" ) == 0 )
301 dataCol.attach( table, dataColumnName ) ;
302 else
303 floatDataCol.attach( table, dataColumnName ) ;
304
305 // set dummy epoch
306 mf.set( currentTime ) ;
307
308 //
309 // add rows to scantable
310 //
311 // number of polarization is up to 4
312 uInt addrow = table.nrow() * maxNumPol() ;
313 scantable.table().addRow( addrow ) ;
314
315 // attach to columns
316 // Scantable MAIN
317 TableRecord &r = tablerow.record() ;
318 timeRF.attachToRecord( r, "TIME" ) ;
319 intervalRF.attachToRecord( r, "INTERVAL" ) ;
320 directionRF.attachToRecord( r, "DIRECTION" ) ;
321 azimuthRF.attachToRecord( r, "AZIMUTH" ) ;
322 elevationRF.attachToRecord( r, "ELEVATION" ) ;
323 scanRateRF.attachToRecord( r, "SCANRATE" ) ;
324 weatherIdRF.attachToRecord( r, "WEATHER_ID" ) ;
325 cycleNoRF.attachToRecord( r, "CYCLENO" ) ;
326 flagRowRF.attachToRecord( r, "FLAGROW" ) ;
327 polNoRF.attachToRecord( r, "POLNO" ) ;
328 tcalIdRF.attachToRecord( r, "TCAL_ID" ) ;
329 spectraRF.attachToRecord( r, "SPECTRA" ) ;
330 flagtraRF.attachToRecord( r, "FLAGTRA" ) ;
331 tsysRF.attachToRecord( r, "TSYS" ) ;
332 beamNoRF.attachToRecord( r, "BEAMNO" ) ;
333 ifNoRF.attachToRecord( r, "IFNO" ) ;
334 freqIdRF.attachToRecord( r, "FREQ_ID" ) ;
335 moleculeIdRF.attachToRecord( r, "MOLECULE_ID" ) ;
336 sourceNameRF.attachToRecord( r, "SRCNAME" ) ;
337 sourceProperMotionRF.attachToRecord( r, "SRCPROPERMOTION" ) ;
338 sourceDirectionRF.attachToRecord( r, "SRCDIRECTION" ) ;
339 sourceVelocityRF.attachToRecord( r, "SRCVELOCITY" ) ;
340 focusIdRF.attachToRecord( r, "FOCUS_ID" ) ;
341 fieldNameRF.attachToRecord( r, "FIELDNAME" ) ;
342 sourceTypeRF.attachToRecord( r, "SRCTYPE" ) ;
343 scanNoRF.attachToRecord( r, "SCANNO" ) ;
344
345 // put values
346 RecordFieldPtr<Int> refBeamNoRF( r, "REFBEAMNO" ) ;
347 *refBeamNoRF = -1 ;
348 RecordFieldPtr<Int> fitIdRF( r, "FIT_ID" ) ;
349 *fitIdRF = -1 ;
350 RecordFieldPtr<Float> opacityRF( r, "OPACITY" ) ;
351 *opacityRF = 0.0 ;
352 }
353
[2744]354 virtual void enterObservationId(const uInt /*recordNo*/, Int columnValue) {
[2291]355 //printf("%u: ObservationId: %d\n", recordNo, columnValue);
356 // update header
357 if ( header.observer.empty() )
358 getScalar( String("OBSERVER"), (uInt)columnValue, obstab, header.observer ) ;
359 if ( header.project.empty() )
360 getScalar( "PROJECT", (uInt)columnValue, obstab, header.project ) ;
361 if ( header.utc == 0.0 ) {
362 Vector<MEpoch> amp ;
363 getArrayMeas( "TIME_RANGE", (uInt)columnValue, obstab, amp ) ;
[2710]364 obsEpoch = amp[0];
365 header.utc = obsEpoch.get( "d" ).getValue() ;
[2291]366 }
367 if ( header.antennaname.empty() )
368 getScalar( "TELESCOPE_NAME", (uInt)columnValue, obstab, header.antennaname ) ;
369 }
[2744]370 virtual void leaveObservationId(const uInt /*recordNo*/, Int /*columnValue*/) {
[2291]371 // update header
372 header.nbeam = max( header.nbeam, (Int)nbeam ) ;
373
374 nbeam = 0 ;
375 feedEntry = -1 ;
376 }
[2744]377 virtual void enterFeedId(const uInt /*recordNo*/, Int columnValue) {
[2291]378 //printf("%u: FeedId: %d\n", recordNo, columnValue);
379
380 // update feed entry
381 if ( allNE( feedEntry, columnValue ) ) {
382 feedEntry[nbeam] = columnValue ;
383 nbeam++ ;
384 }
385
386 // put values
387 *beamNoRF = (uInt)columnValue ;
388 *focusIdRF = (uInt)0 ;
389 }
[2744]390 virtual void leaveFeedId(const uInt /*recordNo*/, Int /*columnValue*/) {
391 uInt nelem = feedEntry.nelements() ;
[2291]392 if ( nbeam > nelem ) {
393 feedEntry.resize( nelem+64, True ) ;
394 Slicer slice( IPosition( 1, nelem ), IPosition( 1, feedEntry.nelements()-1 ) ) ;
395 feedEntry( slice ) = -1 ;
396 }
397 }
[2744]398 virtual void enterFieldId(const uInt /*recordNo*/, Int columnValue) {
[2291]399 //printf("%u: FieldId: %d\n", recordNo, columnValue);
400 // update sourceId and fieldName
401 getScalar( "SOURCE_ID", (uInt)columnValue, fieldtab, sourceId ) ;
402 String fieldName ;
403 getScalar( "NAME", (uInt)columnValue, fieldtab, fieldName ) ;
404 fieldName += "__" + String::toString( columnValue ) ;
405
406 // put values
407 *fieldNameRF = fieldName ;
408 }
[2744]409 virtual void leaveFieldId(const uInt /*recordNo*/, Int /*columnValue*/) {
[2291]410 sourceId = -1 ;
411 }
[2744]412 virtual void enterDataDescId(const uInt /*recordNo*/, Int columnValue) {
[2291]413 //printf("%u: DataDescId: %d\n", recordNo, columnValue);
414 // update polarization and spectral window ids
415 getScalar( "POLARIZATION_ID", (uInt)columnValue, ddtab, polId ) ;
416 getScalar( "SPECTRAL_WINDOW_ID", (uInt)columnValue, ddtab, spwId ) ;
417
418 // polarization setup
419 getScalar( "NUM_CORR", (uInt)polId, poltab, npol ) ;
420 Vector<Int> corrtype ;
421 getArray( "CORR_TYPE", (uInt)polId, poltab, corrtype ) ;
422 polnos = getPolNos( corrtype ) ;
423
424 // process SOURCE table
425 String sourceName ;
426 Vector<Double> sourcePM, restFreqs, sysVels ;
427 Vector<String> transition ;
428 processSource( sourceId, spwId, sourceName, sourceDir, sourcePM,
429 restFreqs, transition, sysVels ) ;
430
431 // spectral setup
432 uInt freqId ;
433 Double reffreq, bandwidth ;
434 String freqref ;
435 getScalar( "NUM_CHAN", (uInt)spwId, spwtab, nchan ) ;
436 Bool iswvr = (Bool)(nchan == 4) ;
437 map<Int,uInt>::iterator iter = ifmap.find( spwId ) ;
438 if ( iter == ifmap.end() ) {
[2710]439 //MEpoch me ;
440 //getScalarMeas( "TIME", recordNo, table, me ) ;
441 //spectralSetup( spwId, me, antpos, sourceDir,
442 spectralSetup(spwId, obsEpoch, antpos, sourceDir,
443 freqId, nchan,
444 freqref, reffreq, bandwidth);
[2291]445 ifmap.insert( pair<Int,uInt>(spwId,freqId) ) ;
446 }
447 else {
448 freqId = iter->second ;
449 }
450 sp.resize( npol, nchan ) ;
451 fl.resize( npol, nchan ) ;
452
453
454 // molecular setup
455 STMolecules mtab = scantable.molecules() ;
456 uInt molId = mtab.addEntry( restFreqs, transition, transition ) ;
457
458 // process SYSCAL table
459 if ( isSysCal )
460 processSysCal( spwId ) ;
461
462 // update header
463 if ( !iswvr ) {
464 header.nchan = max( header.nchan, nchan ) ;
465 header.bandwidth = max( header.bandwidth, bandwidth ) ;
466 if ( header.reffreq == -1.0 )
467 header.reffreq = reffreq ;
468 header.npol = max( header.npol, npol ) ;
469 if ( header.poltype.empty() )
470 header.poltype = getPolType( corrtype[0] ) ;
471 if ( header.freqref.empty() )
472 header.freqref = freqref ;
473 }
474
475 // put values
476 *ifNoRF = (uInt)spwId ;
477 *freqIdRF = freqId ;
478 *moleculeIdRF = molId ;
479 *sourceNameRF = sourceName ;
480 sourceProperMotionRF.define( sourcePM ) ;
481 Vector<Double> srcD = sourceDir.getAngle().getValue( "rad" ) ;
482 sourceDirectionRF.define( srcD ) ;
483 if ( !sysVels.empty() )
484 *sourceVelocityRF = sysVels[0] ;
485 else {
486 *sourceVelocityRF = (Double)0.0 ;
487 }
488 }
[2744]489 virtual void leaveDataDescId(const uInt /*recordNo*/, Int /*columnValue*/) {
[2291]490 npol = 0 ;
491 nchan = 0 ;
492 numSysCalRow = 0 ;
493 }
[2744]494 virtual void enterScanNo(const uInt /*recordNo*/, Int columnValue) {
[2291]495 //printf("%u: ScanNo: %d\n", recordNo, columnValue);
496 // put value
[2869]497 // CAS-5841: SCANNO should be consistent with MS SCAN_NUMBER
498 *scanNoRF = (uInt)columnValue ;
[2291]499 }
[2744]500 virtual void leaveScanNo(const uInt /*recordNo*/, Int /*columnValue*/) {
[2291]501 cycleNo = 0 ;
502 }
[2744]503 virtual void enterStateId(const uInt /*recordNo*/, Int columnValue) {
[2291]504 //printf("%u: StateId: %d\n", recordNo, columnValue);
505 // SRCTYPE
506 Int srcType = getSrcType( columnValue ) ;
507
508 // update header
509 if ( header.obstype.empty() )
510 getScalar( "OBS_MODE", (uInt)columnValue, statetab, header.obstype ) ;
511
512 // put value
513 *sourceTypeRF = srcType ;
514 }
[2744]515 virtual void leaveStateId(const uInt /*recordNo*/, Int /*columnValue*/) { }
[2291]516 virtual void enterTime(const uInt recordNo, Double columnValue) {
517 //printf("%u: Time: %f\n", recordNo, columnValue);
518 currentTime = MEpoch( Quantity( columnValue, "s" ), MEpoch::UTC ) ;
519
520 // DIRECTION, AZEL, and SCANRATE
521 Vector<Double> direction, azel ;
522 Vector<Double> scanrate( 2, 0.0 ) ;
523 if ( getpt )
524 getDirection( direction, azel, scanrate ) ;
525 else
526 getSourceDirection( direction, azel, scanrate ) ;
527
528 // INTERVAL
529 Double interval = intervalCol.asdouble( recordNo ) ;
530
531 // WEATHER_ID
532 uInt wid = 0 ;
[2775]533 if ( isWeather_ )
[2291]534 wid = getWeatherId() ;
535
536 // put value
537 Double t = currentTime.get( "d" ).getValue() ;
538 *timeRF = t ;
539 *intervalRF = interval ;
540 directionRF.define( direction ) ;
541 *azimuthRF = (Float)azel[0] ;
542 *elevationRF = (Float)azel[1] ;
543 scanRateRF.define( scanrate ) ;
544 *weatherIdRF = wid ;
545 }
[2744]546 virtual void leaveTime(const uInt /*recordNo*/, Double /*columnValue*/) { }
[2291]547 virtual Bool visitRecord(const uInt recordNo,
[2744]548 const Int /*observationId*/,
549 const Int /*feedId*/,
550 const Int /*fieldId*/,
551 const Int /*dataDescId*/,
552 const Int /*scanNo*/,
553 const Int /*stateId*/,
554 const Double /*time*/)
[2291]555 {
556 //printf("%u: %d, %d, %d, %d, %d, %d, %f\n", recordNo,
557 //observationId, feedId, fieldId, dataDescId, scanNo, stateId, time);
558
559 // SPECTRA and FLAGTRA
560 //Matrix<Float> sp;
561 //Matrix<uChar> fl;
562 spectraAndFlagtra( recordNo, sp, fl ) ;
563
564 // FLAGROW
565 Bool flr = flagRowCol.asBool( recordNo ) ;
566
567 // TSYS
568 Matrix<Float> tsys ;
569 uInt scIdx = getSysCalIndex() ;
570 if ( numSysCalRow > 0 ) {
571 tsys = sysCalTsysCol( syscalRow[scIdx] ) ;
572 }
573 else {
574 tsys.resize( npol, 1 ) ;
575 tsys = 1.0 ;
576 }
577
578 // TCAL_ID
579 Block<uInt> tcalids( npol, 0 ) ;
580 if ( numSysCalRow > 0 ) {
581 tcalids = getTcalId( syscalTime[scIdx] ) ;
582 }
[2746]583 else {
584 tcalids = getDummyTcalId( spwId ) ;
585 }
[2291]586
587 // put value
588 *cycleNoRF = cycleNo ;
589 *flagRowRF = (uInt)flr ;
590
591 // for each polarization component
592 for ( Int ipol = 0 ; ipol < npol ; ipol++ ) {
593 // put value depending on polarization component
594 *polNoRF = polnos[ipol] ;
595 *tcalIdRF = tcalids[ipol] ;
596 spectraRF.define( sp.row( ipol ) ) ;
597 flagtraRF.define( fl.row( ipol ) ) ;
598 tsysRF.define( tsys.row( ipol ) ) ;
599
600 // commit row
601 tablerow.put( rowidx ) ;
602 rowidx++ ;
603 }
604
605 // increment CYCLENO
606 cycleNo++ ;
607
608 return True ;
609 }
610 virtual void finish()
611 {
612 BaseMSFillerVisitor::finish();
613 //printf("Total: %u\n", count);
614 // remove redundant rows
615 //cout << "filled " << rowidx << " rows out of " << scantable.nrow() << " rows" << endl ;
[2744]616 if ( scantable.nrow() > (Int)rowidx ) {
[2291]617 uInt numRemove = scantable.nrow() - rowidx ;
618 //cout << "numRemove = " << numRemove << endl ;
619 Vector<uInt> rows( numRemove ) ;
620 indgen( rows, rowidx ) ;
621 scantable.table().removeRow( rows ) ;
622 }
623
624 // antenna name and station name
625 String antennaName ;
626 getScalar( "NAME", (uInt)antennaId, anttab, antennaName ) ;
627 String stationName ;
628 getScalar( "STATION", (uInt)antennaId, anttab, stationName ) ;
629
630 // update header
631 header.nif = ifmap.size() ;
632 header.antennaposition = antpos.get( "m" ).getValue() ;
633 if ( header.antennaname.empty() || header.antennaname == antennaName )
634 header.antennaname = antennaName ;
635 else
636 header.antennaname += "//" + antennaName ;
637 if ( !stationName.empty() && stationName != antennaName )
638 header.antennaname += "@" + stationName ;
639 if ( header.fluxunit.empty() || header.fluxunit == "CNTS" )
640 header.fluxunit = "K" ;
641 header.epoch = "UTC" ;
642 header.equinox = 2000.0 ;
643 if (header.freqref == "TOPO") {
644 header.freqref = "TOPOCENT";
645 } else if (header.freqref == "GEO") {
646 header.freqref = "GEOCENTR";
647 } else if (header.freqref == "BARY") {
648 header.freqref = "BARYCENT";
649 } else if (header.freqref == "GALACTO") {
650 header.freqref = "GALACTOC";
651 } else if (header.freqref == "LGROUP") {
652 header.freqref = "LOCALGRP";
653 } else if (header.freqref == "CMB") {
654 header.freqref = "CMBDIPOL";
655 } else if (header.freqref == "REST") {
656 header.freqref = "SOURCE";
657 }
658 scantable.setHeader( header ) ;
659 }
660 void setAntenna( Int id )
661 {
662 antennaId = id ;
663
664 Vector< Quantum<Double> > pos ;
665 getArrayQuant( "POSITION", (uInt)antennaId, anttab, pos ) ;
666 antpos = MPosition( MVPosition( pos ), MPosition::ITRF ) ;
667 mf.set( antpos ) ;
668 }
669 void setPointingTable( const Table &tab, String columnToUse="DIRECTION" )
670 {
671 // input POINTING table must be
672 // 1) selected by antenna
673 // 2) sorted by TIME
674 ROScalarColumn<Double> tcol( tab, "TIME" ) ;
675 ROArrayColumn<Double> dcol( tab, columnToUse ) ;
676 tcol.getColumn( pointingTime ) ;
677 dcol.getColumn( pointingDirection ) ;
678 const TableRecord &rec = dcol.keywordSet() ;
679 String pointingRef = rec.asRecord( "MEASINFO" ).asString( "Ref" ) ;
680 MDirection::getType( dirType, pointingRef ) ;
681 getpt = True ;
[2580]682
683 // initialize toj2000 and toazel
684 initConvert() ;
[2291]685 }
[2775]686 void setWeatherTime( const Vector<Double> &t, const Vector<Double> &it,
687 const Vector<uInt> &idx )
[2291]688 {
[2775]689 isWeather_ = True ;
690 weatherTime_ = t ;
691 weatherInterval_ = it ;
692 weatherIndex_ = idx;
[2291]693 }
694 void setSysCalRecord( const Record &r )
695 //void setSysCalRecord( const map< String,Vector<uInt> > &r )
696 {
697 isSysCal = True ;
[2295]698 isTcal = True ;
[2291]699 syscalRecord = r ;
[2295]700 if ( syscalRecord.nfields() == 0 )
701 isTcal = False ;
[2291]702
703 const TableDesc &desc = sctab.tableDesc() ;
704 uInt nrow = sctab.nrow() ;
705 syscalRow.resize( nrow ) ;
706 syscalTime.resize( nrow ) ;
707 syscalInterval.resize( nrow ) ;
708 String tsysCol = "NONE" ;
709 Vector<String> tsysCols = stringToVector( "TSYS_SPECTRUM,TSYS" ) ;
710 for ( uInt i = 0 ; i < tsysCols.nelements() ; i++ ) {
711 if ( tsysCol == "NONE" && desc.isColumn( tsysCols[i] ) )
712 tsysCol = tsysCols[i] ;
713 }
714 sysCalTsysCol.attach( sctab, tsysCol ) ;
715 }
716 STHeader getHeader() { return header ; }
717 uInt getNumBeam() { return nbeam ; }
718 uInt getFilledRowNum() { return rowidx ; }
719private:
[2580]720 void initConvert()
721 {
722 toj2000 = MDirection::Convert( dirType, MDirection::Ref( MDirection::J2000, mf ) ) ;
723 toazel = MDirection::Convert( dirType, MDirection::Ref( MDirection::AZELGEO, mf ) ) ;
724 }
725
[2291]726 void fluxUnit( String &u )
727 {
728 ROTableColumn col( table, dataColumnName ) ;
729 const TableRecord &rec = col.keywordSet() ;
730 if ( rec.isDefined( "UNIT" ) )
731 u = rec.asString( "UNIT" ) ;
732 else if ( rec.isDefined( "QuantumUnits" ) )
733 u = rec.asString( "QuantumUnits" ) ;
734 if ( u.empty() )
735 u = "K" ;
736 }
737 void processSource( Int sourceId, Int spwId,
738 String &name, MDirection &dir, Vector<Double> &pm,
739 Vector<Double> &rf, Vector<String> &trans, Vector<Double> &vel )
740 {
741 // find row
742 uInt nrow = srctab.nrow() ;
743 Int idx = -1 ;
744 ROTableRow row( srctab ) ;
745 for ( uInt irow = 0 ; irow < nrow ; irow++ ) {
746 const TableRecord &r = row.get( irow ) ;
747 if ( r.asInt( "SOURCE_ID" ) == sourceId ) {
748 Int tmpSpwId = r.asInt( "SPECTRAL_WINDOW_ID" ) ;
749 if ( tmpSpwId == spwId || tmpSpwId == -1 ) {
750 idx = (Int)irow ;
751 break ;
752 }
753 }
754 }
755
756 // fill
757 Int numLines = 0 ;
758 if ( idx != -1 ) {
759 const TableRecord &r = row.get( idx ) ;
760 name = r.asString( "NAME" ) ;
761 getScalarMeas( "DIRECTION", idx, srctab, dir ) ;
762 pm = r.toArrayDouble( "PROPER_MOTION" ) ;
763 numLines = r.asInt( "NUM_LINES" ) ;
764 }
765 else {
766 name = "" ;
767 pm = Vector<Double>( 2, 0.0 ) ;
768 dir = MDirection( Quantum<Double>(0.0,Unit("rad")), Quantum<Double>(0.0,Unit("rad")) ) ;
769 }
770 if ( !getpt ) {
771 String ref = dir.getRefString() ;
772 MDirection::getType( dirType, ref ) ;
[2580]773
774 // initialize toj2000 and toazel
775 initConvert() ;
[2291]776 }
777
778 rf.resize( numLines ) ;
779 trans.resize( numLines ) ;
780 vel.resize( numLines ) ;
781 if ( numLines > 0 ) {
782 Block<Bool> isDefined = row.getDefined() ;
783 Vector<String> colNames = row.columnNames() ;
784 Vector<Int> indexes( 3, -1 ) ;
785 Vector<String> cols = stringToVector( "REST_FREQUENCY,TRANSITION,SYSVEL" ) ;
786 for ( uInt icol = 0 ; icol < colNames.nelements() ; icol++ ) {
787 if ( anyEQ( indexes, -1 ) ) {
788 for ( uInt jcol = 0 ; jcol < cols.nelements() ; jcol++ ) {
789 if ( colNames[icol] == cols[jcol] )
790 indexes[jcol] = icol ;
791 }
792 }
793 }
794 if ( indexes[0] != -1 && isDefined[indexes[0]] == True ) {
795 Vector< Quantum<Double> > qrf ;
796 getArrayQuant( "REST_FREQUENCY", idx, srctab, qrf ) ;
797 for ( int i = 0 ; i < numLines ; i++ )
798 rf[i] = qrf[i].getValue( "Hz" ) ;
799 }
800 if ( indexes[1] != -1 && isDefined[indexes[1]] == True ) {
801 getArray( "TRANSITION", idx, srctab, trans ) ;
802 }
803 if ( indexes[2] != -1 && isDefined[indexes[2]] == True ) {
804 Vector< Quantum<Double> > qsv ;
805 getArrayQuant( "SYSVEL", idx, srctab, qsv ) ;
806 for ( int i = 0 ; i < numLines ; i++ )
807 vel[i] = qsv[i].getValue( "m/s" ) ;
808 }
809 }
810 }
[3073]811 void spectralSetup( Int &spwId, MEpoch &/*me*/, MPosition &/*mp*/, MDirection &/*md*/,
[2291]812 uInt &freqId, Int &nchan,
813 String &freqref, Double &reffreq, Double &bandwidth )
814 {
815 // fill
816 Int measFreqRef ;
817 getScalar( "MEAS_FREQ_REF", spwId, spwtab, measFreqRef ) ;
[3073]818 //MFrequency::Types freqRef = MFrequency::castType( measFreqRef ) ;
[2291]819 //freqref = MFrequency::showType( freqRef ) ;
[2754]820 //freqref = "LSRK" ;
821 freqref = "TOPO";
[2291]822 Quantum<Double> q ;
823 getScalarQuant( "TOTAL_BANDWIDTH", spwId, spwtab, q ) ;
824 bandwidth = q.getValue( "Hz" ) ;
825 getScalarQuant( "REF_FREQUENCY", spwId, spwtab, q ) ;
826 reffreq = q.getValue( "Hz" ) ;
827 Double refpix = 0.5 * ( (Double)nchan-1.0 ) ;
828 Int refchan = ( nchan - 1 ) / 2 ;
829 Bool even = (Bool)( nchan % 2 == 0 ) ;
830 Vector< Quantum<Double> > qa ;
831 getArrayQuant( "CHAN_WIDTH", spwId, spwtab, qa ) ;
[2554]832// Double increment = qa[refchan].getValue( "Hz" ) ;
833 Double increment = abs(qa[refchan].getValue( "Hz" )) ;
[2291]834 getArrayQuant( "CHAN_FREQ", spwId, spwtab, qa ) ;
835 if ( nchan == 1 ) {
836 Int netSideband ;
837 getScalar( "NET_SIDEBAND", spwId, spwtab, netSideband ) ;
838 if ( netSideband == 1 ) increment *= -1.0 ;
839 }
840 else {
841 if ( qa[0].getValue( "Hz" ) > qa[1].getValue( "Hz" ) )
842 increment *= -1.0 ;
843 }
844 Double refval = qa[refchan].getValue( "Hz" ) ;
845 if ( even )
846 refval = 0.5 * ( refval + qa[refchan+1].getValue( "Hz" ) ) ;
847
848 // add new row to FREQUENCIES
849 Table ftab = scantable.frequencies().table() ;
850 freqId = ftab.nrow() ;
851 ftab.addRow() ;
852 TableRow row( ftab ) ;
853 TableRecord &r = row.record() ;
854 RecordFieldPtr<uInt> idRF( r, "ID" ) ;
855 *idRF = freqId ;
856 RecordFieldPtr<Double> refpixRF( r, "REFPIX" ) ;
857 RecordFieldPtr<Double> refvalRF( r, "REFVAL" ) ;
858 RecordFieldPtr<Double> incrRF( r, "INCREMENT" ) ;
859 *refpixRF = refpix ;
860 *refvalRF = refval ;
861 *incrRF = increment ;
862 row.put( freqId ) ;
863 }
864 void spectraAndFlagtra( uInt recordNo, Matrix<Float> &sp, Matrix<uChar> &fl )
865 {
866 Matrix<Bool> b = flagCol( recordNo ) ;
867 if ( dataColumnName.compare( "FLOAT_DATA" ) == 0 ) {
868 sp = floatDataCol( recordNo ) ;
869 convertArray( fl, b ) ;
870 }
871 else {
872 Bool notyet = True ;
873 Matrix<Complex> c = dataCol( recordNo ) ;
874 for ( Int ipol = 0 ; ipol < npol ; ipol++ ) {
875 if ( ( header.poltype == "linear" || header.poltype == "circular" )
876 && ( polnos[ipol] == 2 || polnos[ipol] == 3 ) ) {
877 if ( notyet ) {
878 Vector<Float> tmp = ComplexToReal( c.row( ipol ) ) ;
879 IPosition start( 1, 0 ) ;
880 IPosition end( 1, 2*nchan-1 ) ;
881 IPosition inc( 1, 2 ) ;
882 if ( polnos[ipol] == 2 ) {
883 sp.row( ipol ) = tmp( start, end, inc ) ;
884 Vector<Bool> br = b.row( ipol ) ;
885 Vector<uChar> flr = fl.row( ipol ) ;
886 convertArray( flr, br ) ;
887 start = IPosition( 1, 1 ) ;
888 Int jpol = ipol+1 ;
889 while( polnos[jpol] != 3 && jpol < npol )
890 jpol++ ;
891 sp.row( jpol ) = tmp( start, end, inc ) ;
892 flr.reference( fl.row( jpol ) ) ;
893 convertArray( flr, br ) ;
894 }
895 else if ( polnos[ipol] == 3 ) {
896 sp.row( ipol ) = sp.row( ipol ) * (Float)(-1.0) ;
897 Int jpol = ipol+1 ;
898 while( polnos[jpol] != 2 && jpol < npol )
899 jpol++ ;
900 Vector<Bool> br = b.row( ipol ) ;
901 Vector<uChar> flr = fl.row( jpol ) ;
902 sp.row( jpol ) = tmp( start, end, inc ) ;
903 convertArray( flr, br ) ;
904 start = IPosition( 1, 1 ) ;
905 sp.row( ipol ) = tmp( start, end, inc ) * (Float)(-1.0) ;
906 flr.reference( fl.row( ipol ) ) ;
907 convertArray( flr, br ) ;
908 }
909 notyet = False ;
910 }
911 }
912 else {
913 Vector<Float> tmp = ComplexToReal( c.row( ipol ) ) ;
914 IPosition start( 1, 0 ) ;
915 IPosition end( 1, 2*nchan-1 ) ;
916 IPosition inc( 1, 2 ) ;
917 sp.row( ipol ) = tmp( start, end, inc ) ;
918 Vector<Bool> br = b.row( ipol ) ;
919 Vector<uChar> flr = fl.row( ipol ) ;
920 convertArray( flr, br ) ;
921 }
922 }
923 }
924 }
925 uInt binarySearch( Vector<Double> &timeList, Double target )
926 {
927 Int low = 0 ;
928 Int high = timeList.nelements() ;
929 uInt idx = 0 ;
930
931 while ( low <= high ) {
932 idx = (Int)( 0.5 * ( low + high ) ) ;
933 Double t = timeList[idx] ;
934 if ( t < target )
935 low = idx + 1 ;
936 else if ( t > target )
937 high = idx - 1 ;
938 else {
939 return idx ;
940 }
941 }
942
943 idx = max( 0, min( low, high ) ) ;
944 return idx ;
945 }
946 void getDirection( Vector<Double> &dir, Vector<Double> &azel, Vector<Double> &srate )
947 {
948 // @todo At the moment, do binary search every time
949 // if this is bottleneck, frequency of binary search must be reduced
950 Double t = currentTime.get( "s" ).getValue() ;
951 uInt idx = min( binarySearch( pointingTime, t ), pointingTime.nelements()-1 ) ;
952 Matrix<Double> d ;
953 if ( pointingTime[idx] == t )
954 d = pointingDirection.xyPlane( idx ) ;
955 else if ( pointingTime[idx] < t ) {
956 if ( idx == pointingTime.nelements()-1 )
957 d = pointingDirection.xyPlane( idx ) ;
958 else
959 d = interp( pointingTime[idx], pointingTime[idx+1], t,
960 pointingDirection.xyPlane( idx ), pointingDirection.xyPlane( idx+1 ) ) ;
961 }
962 else {
963 if ( idx == 0 )
964 d = pointingDirection.xyPlane( idx ) ;
965 else
966 d = interp( pointingTime[idx-1], pointingTime[idx], t,
967 pointingDirection.xyPlane( idx-1 ), pointingDirection.xyPlane( idx ) ) ;
968 }
[2580]969 mf.set( currentTime ) ;
[2291]970 Quantum< Vector<Double> > tmp( d.column( 0 ), Unit( "rad" ) ) ;
971 if ( dirType != MDirection::J2000 ) {
972 dir = toj2000( tmp ).getAngle( "rad" ).getValue() ;
973 }
974 else {
975 dir = d.column( 0 ) ;
976 }
977 if ( dirType != MDirection::AZELGEO ) {
978 azel = toazel( tmp ).getAngle( "rad" ).getValue() ;
979 }
980 else {
981 azel = d.column( 0 ) ;
982 }
983 if ( d.ncolumn() > 1 )
984 srate = d.column( 1 ) ;
985 }
[2744]986 void getSourceDirection( Vector<Double> &dir, Vector<Double> &azel, Vector<Double> &/*srate*/ )
[2291]987 {
988 dir = sourceDir.getAngle( "rad" ).getValue() ;
[2580]989 mf.set( currentTime ) ;
[2291]990 azel = toazel( Quantum< Vector<Double> >( dir, Unit("rad") ) ).getAngle( "rad" ).getValue() ;
991 if ( dirType != MDirection::J2000 ) {
992 dir = toj2000( Quantum< Vector<Double> >( dir, Unit("rad") ) ).getAngle( "rad" ).getValue() ;
993 }
994 }
995 String detectSeparator( String &s )
996 {
997 String tmp = s.substr( 0, s.find_first_of( "," ) ) ;
[2941]998 const Char *separators[] = { ":", "#", ".", "_" } ;
[2291]999 uInt nsep = 4 ;
1000 for ( uInt i = 0 ; i < nsep ; i++ ) {
1001 if ( tmp.find( separators[i] ) != String::npos )
1002 return separators[i] ;
1003 }
1004 return "" ;
1005 }
1006 Int getSrcType( Int stateId )
1007 {
1008 // get values
1009 Bool sig ;
1010 getScalar( "SIG", stateId, statetab, sig ) ;
1011 Bool ref ;
1012 getScalar( "REF", stateId, statetab, ref ) ;
1013 Double cal ;
1014 getScalar( "CAL", stateId, statetab, cal ) ;
1015 String obsmode ;
1016 getScalar( "OBS_MODE", stateId, statetab, obsmode ) ;
1017 String sep = detectSeparator( obsmode ) ;
1018
1019 Int srcType = SrcType::NOTYPE ;
1020 if ( sep == ":" )
1021 srcTypeGBT( srcType, sep, obsmode, sig, ref, cal ) ;
1022 else if ( sep == "." || sep == "#" )
1023 srcTypeALMA( srcType, sep, obsmode ) ;
1024 else if ( sep == "_" )
1025 srcTypeOldALMA( srcType, sep, obsmode, sig, ref ) ;
1026 else
1027 srcTypeDefault( srcType, sig, ref ) ;
1028
1029 return srcType ;
1030 }
1031 void srcTypeDefault( Int &st, Bool &sig, Bool &ref )
1032 {
1033 if ( sig ) st = SrcType::SIG ;
1034 else if ( ref ) st = SrcType::REF ;
1035 }
1036 void srcTypeGBT( Int &st, String &sep, String &mode, Bool &sig, Bool &ref, Double &cal )
1037 {
1038 Int epos = mode.find_first_of( sep ) ;
1039 Int nextpos = mode.find_first_of( sep, epos+1 ) ;
1040 String m1 = mode.substr( 0, epos ) ;
1041 String m2 = mode.substr( epos+1, nextpos-epos-1 ) ;
1042 if ( m1 == "Nod" ) {
1043 st = SrcType::NOD ;
1044 }
1045 else if ( m1 == "OffOn" ) {
1046 if ( m2 == "PSWITCHON" ) st = SrcType::PSON ;
1047 if ( m2 == "PSWITCHOFF" ) st = SrcType::PSOFF ;
1048 }
1049 else {
1050 if ( m2 == "FSWITCH" ) {
1051 if ( sig ) st = SrcType::FSON ;
1052 else if ( ref ) st = SrcType::FSOFF ;
1053 }
1054 }
1055 if ( cal > 0.0 ) {
1056 if ( st == SrcType::NOD )
1057 st = SrcType::NODCAL ;
1058 else if ( st == SrcType::PSON )
1059 st = SrcType::PONCAL ;
1060 else if ( st == SrcType::PSOFF )
1061 st = SrcType::POFFCAL ;
1062 else if ( st == SrcType::FSON )
1063 st = SrcType::FONCAL ;
1064 else if ( st == SrcType::FSOFF )
1065 st = SrcType::FOFFCAL ;
1066 else
1067 st = SrcType::CAL ;
1068 }
1069 }
1070 void srcTypeALMA( Int &st, String &sep, String &mode )
1071 {
1072 Int epos = mode.find_first_of( "," ) ;
1073 String first = mode.substr( 0, epos ) ;
1074 epos = first.find_first_of( sep ) ;
1075 Int nextpos = first.find_first_of( sep, epos+1 ) ;
1076 String m1 = first.substr( 0, epos ) ;
1077 String m2 = first.substr( epos+1, nextpos-epos-1 ) ;
[3061]1078 if ( m1.find( "CALIBRATE_ATMOSPHERE" ) == 0 ) {
[3060]1079 if (m2.find( "ON_SOURCE" ) == 0 || m2.find("HOT") == 0 || m2.find("AMBIENT") == 0)
[2291]1080 st = SrcType::PONCAL ;
1081 else if ( m2.find( "OFF_SOURCE" ) == 0 )
1082 st = SrcType::POFFCAL ;
1083 }
[3061]1084 else if ( m1.find( "CALIBRATE_" ) == 0 ) {
1085 st = SrcType::CAL ;
1086 }
[2291]1087 else if ( m1.find( "OBSERVE_TARGET" ) == 0 ) {
1088 if ( m2.find( "ON_SOURCE" ) == 0 )
1089 st = SrcType::PSON ;
1090 else if ( m2.find( "OFF_SOURCE" ) == 0 )
1091 st = SrcType::PSOFF ;
1092 }
1093 }
1094 void srcTypeOldALMA( Int &st, String &sep, String &mode, Bool &sig, Bool &ref )
1095 {
1096 Int epos = mode.find_first_of( "," ) ;
1097 String first = mode.substr( 0, epos ) ;
1098 string substr[4] ;
1099 int numSubstr = split( first, substr, 4, sep ) ;
1100 String m1( substr[0] ) ;
1101 String m2( substr[2] ) ;
1102 if ( numSubstr == 4 ) {
1103 if ( m1.find( "CALIBRATE" ) == 0 ) {
1104 if ( m2.find( "ON" ) == 0 )
1105 st = SrcType::PONCAL ;
1106 else if ( m2.find( "OFF" ) == 0 )
1107 st = SrcType::POFFCAL ;
1108 }
1109 else if ( m1.find( "OBSERVE" ) == 0 ) {
1110 if ( m2.find( "ON" ) == 0 )
1111 st = SrcType::PSON ;
1112 else if ( m2.find( "OFF" ) == 0 )
1113 st = SrcType::PSOFF ;
1114 }
1115 }
1116 else {
1117 if ( sig ) st = SrcType::SIG ;
1118 else if ( ref ) st = SrcType::REF ;
1119 }
1120 }
1121 Block<uInt> getPolNos( Vector<Int> &corr )
1122 {
1123 Block<uInt> polnos( npol ) ;
1124 for ( Int ipol = 0 ; ipol < npol ; ipol++ ) {
1125 if ( corr[ipol] == Stokes::I || corr[ipol] == Stokes::RR || corr[ipol] == Stokes::XX )
1126 polnos[ipol] = 0 ;
1127 else if ( corr[ipol] == Stokes::Q || corr[ipol] == Stokes::LL || corr[ipol] == Stokes::YY )
1128 polnos[ipol] = 1 ;
1129 else if ( corr[ipol] == Stokes::U || corr[ipol] == Stokes::RL || corr[ipol] == Stokes::XY )
1130 polnos[ipol] = 2 ;
1131 else if ( corr[ipol] == Stokes::V || corr[ipol] == Stokes::LR || corr[ipol] == Stokes::YX )
1132 polnos[ipol] = 3 ;
1133 }
1134 return polnos ;
1135 }
1136 String getPolType( Int &corr )
1137 {
1138 String poltype = "" ;
1139 if ( corr == Stokes::I || corr == Stokes::Q || corr == Stokes::U || corr == Stokes::V )
1140 poltype = "stokes" ;
1141 else if ( corr == Stokes::XX || corr == Stokes::YY || corr == Stokes::XY || corr == Stokes::YX )
1142 poltype = "linear" ;
1143 else if ( corr == Stokes::RR || corr == Stokes::LL || corr == Stokes::RL || corr == Stokes::LR )
1144 poltype = "circular" ;
1145 else if ( corr == Stokes::Plinear || corr == Stokes::Pangle )
1146 poltype = "linpol" ;
1147 return poltype ;
1148 }
1149 uInt getWeatherId()
1150 {
1151 // if only one row, return 0
[2775]1152 if ( weatherTime_.nelements() == 1 )
[2291]1153 return 0 ;
1154
1155 // @todo At the moment, do binary search every time
1156 // if this is bottleneck, frequency of binary search must be reduced
1157 Double t = currentTime.get( "s" ).getValue() ;
[2775]1158 uInt idx = min( binarySearch( weatherTime_, t ), weatherTime_.nelements()-1 ) ;
1159 if ( weatherTime_[idx] < t ) {
1160 if ( idx != weatherTime_.nelements()-1 ) {
1161 if ( weatherTime_[idx+1] - t < 0.5 * weatherInterval_[idx+1] )
[2291]1162 idx++ ;
1163 }
1164 }
[2775]1165 else if ( weatherTime_[idx] > t ) {
[2291]1166 if ( idx != 0 ) {
[2775]1167 if ( weatherTime_[idx] - t > 0.5 * weatherInterval_[idx] )
[2291]1168 idx-- ;
1169 }
1170 }
[2775]1171 return weatherIndex_[idx] ;
[2291]1172 }
1173 void processSysCal( Int &spwId )
1174 {
1175 // get feedId from row
1176 Int feedId = (Int)tablerow.record().asuInt( "BEAMNO" ) ;
1177
1178 uInt nrow = sctab.nrow() ;
1179 ROScalarColumn<Int> col( sctab, "ANTENNA_ID" ) ;
1180 Vector<Int> aids = col.getColumn() ;
1181 col.attach( sctab, "FEED_ID" ) ;
1182 Vector<Int> fids = col.getColumn() ;
1183 col.attach( sctab, "SPECTRAL_WINDOW_ID" ) ;
1184 Vector<Int> sids = col.getColumn() ;
1185 ROScalarColumn<Double> timeCol( sctab, "TIME" ) ;
1186 ROScalarColumn<Double> intCol( sctab, "INTERVAL" ) ;
1187 for ( uInt irow = 0 ; irow < nrow ; irow++ ) {
1188 if ( aids[irow] == antennaId
1189 && fids[irow] == feedId
1190 && sids[irow] == spwId ) {
1191 syscalRow[numSysCalRow] = irow ;
1192 syscalTime[numSysCalRow] = timeCol( irow ) ;
1193 syscalInterval[numSysCalRow] = intCol( irow ) ;
1194 numSysCalRow++ ;
1195 }
1196 }
1197 }
1198 uInt getSysCalIndex()
1199 {
1200 // if only one row, return 0
1201 if ( numSysCalRow == 1 || !isSysCal )
1202 return 0 ;
1203
1204 // @todo At the moment, do binary search every time
1205 // if this is bottleneck, frequency of binary search must be reduced
1206 Double t = currentTime.get( "s" ).getValue() ;
1207 Vector<Double> tslice = syscalTime( Slice(0, numSysCalRow) ) ;
1208 uInt idx = min( binarySearch( tslice, t ), numSysCalRow-1 ) ;
1209 if ( syscalTime[idx] < t ) {
1210 if ( idx != numSysCalRow-1 ) {
1211 if ( syscalTime[idx+1] - t < 0.5 * syscalInterval[idx+1] )
1212 idx++ ;
1213 }
1214 }
1215 else if ( syscalTime[idx] > t ) {
1216 if ( idx != 0 ) {
1217 if ( syscalTime[idx] - t > 0.5 * syscalInterval[idx] )
1218 idx-- ;
1219 }
1220 }
1221 return idx ;
1222 }
1223 Block<uInt> getTcalId( Double &t )
1224 {
1225 // return 0 if no SysCal table
[2295]1226 if ( !isSysCal or !isTcal ) {
[2291]1227 return Block<uInt>( 4, 0 ) ;
1228 }
1229
1230 // get feedId from row
1231 Int feedId = (Int)tablerow.record().asuInt( "BEAMNO" ) ;
1232
1233 // key
1234 String key = keyTcal( feedId, spwId, t ) ;
1235
1236 // retrieve ids
1237 Vector<uInt> ids = syscalRecord.asArrayuInt( key ) ;
1238 //Vector<uInt> ids = syscalRecord[key] ;
1239 uInt np = ids[1] - ids[0] + 1 ;
1240 Block<uInt> tcalids( np ) ;
1241 if ( np > 0 ) {
1242 tcalids[0] = ids[0] ;
1243 if ( np > 1 ) {
1244 tcalids[1] = ids[1] ;
1245 for ( uInt ip = 2 ; ip < np ; ip++ )
1246 tcalids[ip] = ids[0] + ip - 1 ;
1247 }
1248 }
1249 return tcalids ;
1250 }
[2744]1251 Block<uInt> getDummyTcalId( Int spwId )
1252 {
1253 Block<uInt> idList(4, 0);
1254 uInt nfields = syscalRecord.nfields();
1255 Int idx = -1;
1256 for (uInt i = 0; i< nfields ; i++ ) {
1257 String spw = "SPW" + String::toString(spwId);
1258 if (syscalRecord.name(i).find(spw) != String::npos) {
1259 idx = i;
1260 break;
1261 }
1262 }
1263 if ( idx > -1) {
1264 Vector<uInt> tmp = syscalRecord.asArrayuInt(idx);
1265 for (uInt j = 0 ; j < 4 ; j++) {
1266 idList[j] = tmp[0];
1267 }
1268 }
1269 return idList;
1270 }
[2291]1271 uInt maxNumPol()
1272 {
1273 ROScalarColumn<Int> numCorrCol( poltab, "NUM_CORR" ) ;
1274 return max( numCorrCol.getColumn() ) ;
1275 }
1276
1277 Scantable &scantable;
1278 Int antennaId;
1279 uInt rowidx;
1280 String dataColumnName;
1281 TableRow tablerow;
1282 STHeader header;
1283 Vector<Int> feedEntry;
1284 uInt nbeam;
1285 Int npol;
1286 Int nchan;
1287 Int sourceId;
1288 Int polId;
1289 Int spwId;
1290 uInt cycleNo;
1291 MDirection sourceDir;
1292 MPosition antpos;
1293 MEpoch currentTime;
[2710]1294 MEpoch obsEpoch;
[2580]1295 MeasFrame mf;
1296 MDirection::Convert toj2000;
1297 MDirection::Convert toazel;
[2291]1298 map<Int,uInt> ifmap;
1299 Block<uInt> polnos;
1300 Bool getpt;
1301 Vector<Double> pointingTime;
1302 Cube<Double> pointingDirection;
1303 MDirection::Types dirType;
[2775]1304 Bool isWeather_;
1305 Vector<Double> weatherTime_;
1306 Vector<Double> weatherInterval_;
1307 Vector<uInt> weatherIndex_;
[2291]1308 Bool isSysCal;
[2295]1309 Bool isTcal;
[2291]1310 Record syscalRecord;
1311 //map< String,Vector<uInt> > syscalRecord;
1312 uInt numSysCalRow ;
1313 Vector<uInt> syscalRow;
1314 Vector<Double> syscalTime;
1315 Vector<Double> syscalInterval;
1316 //String tsysCol;
1317 //String tcalCol;
1318
1319 // MS subtables
1320 Table obstab;
1321 Table sctab;
1322 Table spwtab;
1323 Table statetab;
1324 Table ddtab;
1325 Table poltab;
1326 Table fieldtab;
1327 Table anttab;
1328 Table srctab;
1329 Matrix<Float> sp;
1330 Matrix<uChar> fl;
1331
1332 // MS MAIN columns
1333 ROTableColumn intervalCol;
1334 ROTableColumn flagRowCol;
1335 ROArrayColumn<Float> floatDataCol;
1336 ROArrayColumn<Complex> dataCol;
1337 ROArrayColumn<Bool> flagCol;
1338
1339 // MS SYSCAL columns
1340 ROArrayColumn<Float> sysCalTsysCol;
1341
1342 // Scantable MAIN columns
1343 RecordFieldPtr<Double> timeRF,intervalRF,sourceVelocityRF;
1344 RecordFieldPtr< Vector<Double> > directionRF,scanRateRF,
1345 sourceProperMotionRF,sourceDirectionRF;
1346 RecordFieldPtr<Float> azimuthRF,elevationRF;
1347 RecordFieldPtr<uInt> weatherIdRF,cycleNoRF,flagRowRF,polNoRF,tcalIdRF,
1348 ifNoRF,freqIdRF,moleculeIdRF,beamNoRF,focusIdRF,scanNoRF;
1349 RecordFieldPtr< Vector<Float> > spectraRF,tsysRF;
1350 RecordFieldPtr< Vector<uChar> > flagtraRF;
1351 RecordFieldPtr<String> sourceNameRF,fieldNameRF;
1352 RecordFieldPtr<Int> sourceTypeRF;
1353};
1354
1355class BaseTcalVisitor: public TableVisitor {
1356 uInt lastRecordNo ;
1357 Int lastAntennaId ;
1358 Int lastFeedId ;
1359 Int lastSpwId ;
1360 Double lastTime ;
1361protected:
1362 const Table &table;
1363 uInt count;
1364public:
1365 BaseTcalVisitor(const Table &table)
1366 : table(table)
1367 {
1368 count = 0;
1369 }
1370
[2744]1371 virtual void enterAntennaId(const uInt /*recordNo*/, Int /*columnValue*/) { }
1372 virtual void leaveAntennaId(const uInt /*recordNo*/, Int /*columnValue*/) { }
1373 virtual void enterFeedId(const uInt /*recordNo*/, Int /*columnValue*/) { }
1374 virtual void leaveFeedId(const uInt /*recordNo*/, Int /*columnValue*/) { }
1375 virtual void enterSpwId(const uInt /*recordNo*/, Int /*columnValue*/) { }
1376 virtual void leaveSpwId(const uInt /*recordNo*/, Int /*columnValue*/) { }
1377 virtual void enterTime(const uInt /*recordNo*/, Double /*columnValue*/) { }
1378 virtual void leaveTime(const uInt /*recordNo*/, Double /*columnValue*/) { }
[2291]1379
[2744]1380 virtual Bool visitRecord(const uInt /*recordNo*/,
1381 const Int /*antennaId*/,
1382 const Int /*feedId*/,
1383 const Int /*spwId*/,
1384 const Double /*time*/) { return True ; }
[2291]1385
1386 virtual Bool visit(Bool isFirst, const uInt recordNo,
1387 const uInt nCols, void const *const colValues[]) {
[3073]1388 (void)nCols;
[2291]1389 Int antennaId, feedId, spwId;
1390 Double time;
1391 { // prologue
1392 uInt i = 0;
1393 {
1394 const Int *col = (const Int *)colValues[i++];
1395 antennaId = col[recordNo];
1396 }
1397 {
1398 const Int *col = (const Int *)colValues[i++];
1399 feedId = col[recordNo];
1400 }
1401 {
1402 const Int *col = (const Int *)colValues[i++];
1403 spwId = col[recordNo];
1404 }
1405 {
1406 const Double *col = (const Double *)colValues[i++];
1407 time = col[recordNo];
1408 }
1409 assert(nCols == i);
1410 }
1411
1412 if (isFirst) {
1413 enterAntennaId(recordNo, antennaId);
1414 enterFeedId(recordNo, feedId);
1415 enterSpwId(recordNo, spwId);
1416 enterTime(recordNo, time);
1417 } else {
1418 if ( lastAntennaId != antennaId ) {
1419 leaveTime(lastRecordNo, lastTime);
1420 leaveSpwId(lastRecordNo, lastSpwId);
1421 leaveFeedId(lastRecordNo, lastFeedId);
1422 leaveAntennaId(lastRecordNo, lastAntennaId);
1423
1424 enterAntennaId(recordNo, antennaId);
1425 enterFeedId(recordNo, feedId);
1426 enterSpwId(recordNo, spwId);
1427 enterTime(recordNo, time);
1428 }
1429 else if (lastFeedId != feedId) {
1430 leaveTime(lastRecordNo, lastTime);
1431 leaveSpwId(lastRecordNo, lastSpwId);
1432 leaveFeedId(lastRecordNo, lastFeedId);
1433
1434 enterFeedId(recordNo, feedId);
1435 enterSpwId(recordNo, spwId);
1436 enterTime(recordNo, time);
1437 } else if (lastSpwId != spwId) {
1438 leaveTime(lastRecordNo, lastTime);
1439 leaveSpwId(lastRecordNo, lastSpwId);
1440
1441 enterSpwId(recordNo, spwId);
1442 enterTime(recordNo, time);
1443 } else if (lastTime != time) {
1444 leaveTime(lastRecordNo, lastTime);
1445 enterTime(recordNo, time);
1446 }
1447 }
1448 count++;
1449 Bool result = visitRecord(recordNo, antennaId, feedId, spwId, time);
1450
1451 { // epilogue
1452 lastRecordNo = recordNo;
1453
1454 lastAntennaId = antennaId;
1455 lastFeedId = feedId;
1456 lastSpwId = spwId;
1457 lastTime = time;
1458 }
1459 return result ;
1460 }
1461
1462 virtual void finish() {
1463 if (count > 0) {
1464 leaveTime(lastRecordNo, lastTime);
1465 leaveSpwId(lastRecordNo, lastSpwId);
1466 leaveFeedId(lastRecordNo, lastFeedId);
1467 leaveAntennaId(lastRecordNo, lastAntennaId);
1468 }
1469 }
1470};
1471
1472class TcalVisitor: public BaseTcalVisitor, public MSFillerUtils {
1473public:
1474 TcalVisitor(const Table &table, Table &tcaltab, Record &r, Int aid )
1475 //TcalVisitor(const Table &table, Table &tcaltab, map< String,Vector<uInt> > &r, Int aid )
1476 : BaseTcalVisitor( table ),
1477 tcal(tcaltab),
1478 rec(r),
1479 antenna(aid)
1480 {
1481 process = False ;
1482 rowidx = 0 ;
1483
1484 // attach to SYSCAL columns
1485 timeCol.attach( table, "TIME" ) ;
1486
1487 // add rows
1488 uInt addrow = table.nrow() * 4 ;
1489 tcal.addRow( addrow ) ;
1490
1491 // attach to TCAL columns
1492 row = TableRow( tcal ) ;
1493 TableRecord &trec = row.record() ;
1494 idRF.attachToRecord( trec, "ID" ) ;
1495 timeRF.attachToRecord( trec, "TIME" ) ;
1496 tcalRF.attachToRecord( trec, "TCAL" ) ;
1497 }
1498
[2744]1499 virtual void enterAntennaId(const uInt /*recordNo*/, Int columnValue) {
[2291]1500 if ( columnValue == antenna )
1501 process = True ;
1502 }
[2744]1503 virtual void leaveAntennaId(const uInt /*recordNo*/, Int /*columnValue*/) {
[2291]1504 process = False ;
1505 }
[2744]1506 virtual void enterFeedId(const uInt /*recordNo*/, Int /*columnValue*/) { }
1507 virtual void leaveFeedId(const uInt /*recordNo*/, Int /*columnValue*/) { }
1508 virtual void enterSpwId(const uInt /*recordNo*/, Int /*columnValue*/) { }
1509 virtual void leaveSpwId(const uInt /*recordNo*/, Int /*columnValue*/) { }
1510 virtual void enterTime(const uInt recordNo, Double /*columnValue*/) {
[2291]1511 qtime = timeCol( recordNo ) ;
1512 }
[2744]1513 virtual void leaveTime(const uInt /*recordNo*/, Double /*columnValue*/) { }
[2291]1514 virtual Bool visitRecord(const uInt recordNo,
[2744]1515 const Int /*antennaId*/,
[2291]1516 const Int feedId,
1517 const Int spwId,
[2744]1518 const Double /*time*/)
[2291]1519 {
1520 //cout << "(" << recordNo << "," << antennaId << "," << feedId << "," << spwId << ")" << endl ;
1521 if ( process ) {
1522 String sTime = MVTime( qtime ).string( MVTime::YMD ) ;
1523 *timeRF = sTime ;
1524 uInt oldidx = rowidx ;
1525 Matrix<Float> subtcal = tcalCol( recordNo ) ;
1526 Vector<uInt> idminmax( 2 ) ;
1527 for ( uInt ipol = 0 ; ipol < subtcal.nrow() ; ipol++ ) {
1528 *idRF = rowidx ;
1529 tcalRF.define( subtcal.row( ipol ) ) ;
1530
1531 // commit row
1532 row.put( rowidx ) ;
1533 rowidx++ ;
1534 }
1535
1536 idminmax[0] = oldidx ;
1537 idminmax[1] = rowidx - 1 ;
1538
1539 String key = keyTcal( feedId, spwId, sTime ) ;
1540 rec.define( key, idminmax ) ;
1541 //rec[key] = idminmax ;
1542 }
1543 return True ;
1544 }
1545 virtual void finish()
1546 {
1547 BaseTcalVisitor::finish() ;
1548
1549 if ( tcal.nrow() > rowidx ) {
1550 uInt numRemove = tcal.nrow() - rowidx ;
1551 //cout << "numRemove = " << numRemove << endl ;
1552 Vector<uInt> rows( numRemove ) ;
1553 indgen( rows, rowidx ) ;
1554 tcal.removeRow( rows ) ;
1555 }
1556
1557 }
1558 void setTcalColumn( String &col )
1559 {
1560 //colName = col ;
1561 tcalCol.attach( table, col ) ;
1562 }
1563private:
1564 Table &tcal;
1565 Record &rec;
1566 //map< String,Vector<uInt> > &rec;
1567 Int antenna;
1568 uInt rowidx;
1569 Bool process;
1570 Quantum<Double> qtime;
1571 TableRow row;
1572 String colName;
1573
1574 // MS SYSCAL columns
1575 ROScalarQuantColumn<Double> timeCol;
1576 ROArrayColumn<Float> tcalCol;
1577
1578 // TCAL columns
1579 RecordFieldPtr<uInt> idRF;
1580 RecordFieldPtr<String> timeRF;
1581 RecordFieldPtr< Vector<Float> > tcalRF;
1582};
1583
[3106]1584MSFiller::MSFiller( casacore::CountedPtr<Scantable> stable )
[1974]1585 : table_( stable ),
[1987]1586 tablename_( "" ),
[1974]1587 antenna_( -1 ),
[2021]1588 antennaStr_(""),
[2206]1589 getPt_( True ),
[1974]1590 isFloatData_( False ),
1591 isData_( False ),
1592 isDoppler_( False ),
1593 isFlagCmd_( False ),
1594 isFreqOffset_( False ),
1595 isHistory_( False ),
1596 isProcessor_( False ),
1597 isSysCal_( False ),
[1993]1598 isWeather_( False ),
1599 colTsys_( "TSYS_SPECTRUM" ),
1600 colTcal_( "TCAL_SPECTRUM" )
[1974]1601{
1602 os_ = LogIO() ;
1603 os_.origin( LogOrigin( "MSFiller", "MSFiller()", WHERE ) ) ;
1604}
1605
1606MSFiller::~MSFiller()
1607{
1608 os_.origin( LogOrigin( "MSFiller", "~MSFiller()", WHERE ) ) ;
1609}
1610
[3106]1611bool MSFiller::open( const std::string &filename, const casacore::Record &rec )
[1974]1612{
1613 os_.origin( LogOrigin( "MSFiller", "open()", WHERE ) ) ;
[2258]1614 //double startSec = mathutil::gettimeofday_sec() ;
[2237]1615 //os_ << "start MSFiller::open() startsec=" << startSec << LogIO::POST ;
[1974]1616 //os_ << " filename = " << filename << endl ;
1617
1618 // parsing MS options
1619 if ( rec.isDefined( "ms" ) ) {
1620 Record msrec = rec.asRecord( "ms" ) ;
1621 if ( msrec.isDefined( "getpt" ) ) {
1622 getPt_ = msrec.asBool( "getpt" ) ;
1623 }
1624 if ( msrec.isDefined( "antenna" ) ) {
1625 if ( msrec.type( msrec.fieldNumber( "antenna" ) ) == TpInt ) {
1626 antenna_ = msrec.asInt( "antenna" ) ;
1627 }
1628 else {
[2021]1629 //antenna_ = atoi( msrec.asString( "antenna" ).c_str() ) ;
1630 antennaStr_ = msrec.asString( "antenna" ) ;
[1974]1631 }
1632 }
1633 else {
1634 antenna_ = 0 ;
1635 }
1636 }
1637
[1987]1638 MeasurementSet *tmpMS = new MeasurementSet( filename, Table::Old ) ;
1639 tablename_ = tmpMS->tableName() ;
[2021]1640 if ( antenna_ == -1 && antennaStr_.size() > 0 ) {
1641 MSAntennaIndex msAntIdx( tmpMS->antenna() ) ;
1642 Vector<Int> id = msAntIdx.matchAntennaName( antennaStr_ ) ;
1643 if ( id.size() > 0 )
1644 antenna_ = id[0] ;
[2303]1645 else {
1646 delete tmpMS ;
1647 //throw( AipsError( "Antenna " + antennaStr_ + " doesn't exist." ) ) ;
1648 os_ << LogIO::SEVERE << "Antenna " << antennaStr_ << " doesn't exist." << LogIO::POST ;
1649 return False ;
1650 }
[2021]1651 }
[2025]1652
1653 os_ << "Parsing MS options" << endl ;
[2754]1654 os_ << " getPt = " << (getPt_ ? "True" : "False") << endl ;
[2025]1655 os_ << " antenna = " << antenna_ << endl ;
[2844]1656 os_ << " antennaStr = " << antennaStr_ << LogIO::POST;
[2025]1657
[1987]1658 mstable_ = MeasurementSet( (*tmpMS)( tmpMS->col("ANTENNA1") == antenna_
1659 && tmpMS->col("ANTENNA1") == tmpMS->col("ANTENNA2") ) ) ;
[2291]1660
[1987]1661 delete tmpMS ;
[1974]1662
1663 // check which data column exists
[1987]1664 isFloatData_ = mstable_.tableDesc().isColumn( "FLOAT_DATA" ) ;
1665 isData_ = mstable_.tableDesc().isColumn( "DATA" ) ;
[1974]1666
[2258]1667 //double endSec = mathutil::gettimeofday_sec() ;
[2237]1668 //os_ << "end MSFiller::open() endSec=" << endSec << " (" << endSec-startSec << "sec)" << LogIO::POST ;
[1974]1669 return true ;
1670}
1671
1672void MSFiller::fill()
1673{
[2258]1674 //double startSec = mathutil::gettimeofday_sec() ;
[2237]1675 //os_ << "start MSFiller::fill() startSec=" << startSec << LogIO::POST ;
[1974]1676
[2291]1677 os_.origin( LogOrigin( "MSFiller", "fill()", WHERE ) ) ;
[1990]1678
[1974]1679 // Initialize header
1680 STHeader sdh ;
[2237]1681 initHeader( sdh ) ;
[2291]1682 table_->setHeader( sdh ) ;
[1974]1683
1684 // check if optional table exists
[2291]1685 const TableRecord &msrec = mstable_.keywordSet() ;
[1974]1686 isDoppler_ = msrec.isDefined( "DOPPLER" ) ;
[2004]1687 if ( isDoppler_ )
1688 if ( mstable_.doppler().nrow() == 0 )
1689 isDoppler_ = False ;
[1974]1690 isFlagCmd_ = msrec.isDefined( "FLAG_CMD" ) ;
[2004]1691 if ( isFlagCmd_ )
1692 if ( mstable_.flagCmd().nrow() == 0 )
1693 isFlagCmd_ = False ;
[1974]1694 isFreqOffset_ = msrec.isDefined( "FREQ_OFFSET" ) ;
[2004]1695 if ( isFreqOffset_ )
1696 if ( mstable_.freqOffset().nrow() == 0 )
1697 isFreqOffset_ = False ;
[1974]1698 isHistory_ = msrec.isDefined( "HISTORY" ) ;
[2004]1699 if ( isHistory_ )
1700 if ( mstable_.history().nrow() == 0 )
1701 isHistory_ = False ;
[1974]1702 isProcessor_ = msrec.isDefined( "PROCESSOR" ) ;
[2004]1703 if ( isProcessor_ )
1704 if ( mstable_.processor().nrow() == 0 )
1705 isProcessor_ = False ;
[1974]1706 isSysCal_ = msrec.isDefined( "SYSCAL" ) ;
[2004]1707 if ( isSysCal_ )
1708 if ( mstable_.sysCal().nrow() == 0 )
1709 isSysCal_ = False ;
[1974]1710 isWeather_ = msrec.isDefined( "WEATHER" ) ;
[2004]1711 if ( isWeather_ )
1712 if ( mstable_.weather().nrow() == 0 )
1713 isWeather_ = False ;
1714
[2291]1715 // column name for Tsys and Tcal
1716 if ( isSysCal_ ) {
1717 const MSSysCal &caltab = mstable_.sysCal() ;
[2159]1718 if ( !caltab.tableDesc().isColumn( colTcal_ ) ) {
[1993]1719 colTcal_ = "TCAL" ;
[2159]1720 if ( !caltab.tableDesc().isColumn( colTcal_ ) )
1721 colTcal_ = "NONE" ;
1722 }
1723 if ( !caltab.tableDesc().isColumn( colTsys_ ) ) {
[1993]1724 colTsys_ = "TSYS" ;
[2159]1725 if ( !caltab.tableDesc().isColumn( colTcal_ ) )
1726 colTsys_ = "NONE" ;
1727 }
[1993]1728 }
[2291]1729 else {
1730 colTcal_ = "NONE" ;
1731 colTsys_ = "NONE" ;
1732 }
[1974]1733
[2291]1734 // Access to MS subtables
1735 //MSField &fieldtab = mstable_.field() ;
1736 //MSPolarization &poltab = mstable_.polarization() ;
1737 //MSDataDescription &ddtab = mstable_.dataDescription() ;
1738 //MSObservation &obstab = mstable_.observation() ;
1739 //MSSource &srctab = mstable_.source() ;
1740 //MSSpectralWindow &spwtab = mstable_.spectralWindow() ;
1741 //MSSysCal &caltab = mstable_.sysCal() ;
1742 MSPointing &pointtab = mstable_.pointing() ;
1743 //MSState &stattab = mstable_.state() ;
1744 //MSAntenna &anttab = mstable_.antenna() ;
[1974]1745
[1987]1746 // SUBTABLES: FREQUENCIES
[2222]1747 //string freqFrame = getFrame() ;
[2844]1748 string baseFrame = frameFromSpwTable() ;
1749 table_->frequencies().setFrame( baseFrame ) ;
1750 table_->frequencies().setFrame( baseFrame, True ) ;
[1974]1751
1752 // SUBTABLES: WEATHER
[2004]1753 fillWeather() ;
[1974]1754
1755 // SUBTABLES: FOCUS
1756 fillFocus() ;
1757
1758 // SUBTABLES: TCAL
[2291]1759 fillTcal() ;
[1974]1760
1761 // SUBTABLES: FIT
1762 //fillFit() ;
1763
1764 // SUBTABLES: HISTORY
1765 //fillHistory() ;
1766
[2291]1767 /***
1768 * Start iteration using TableVisitor
1769 ***/
1770 Table stab = table_->table() ;
1771 {
1772 static const char *cols[] = {
1773 "OBSERVATION_ID", "FEED1", "FIELD_ID", "DATA_DESC_ID", "SCAN_NUMBER",
1774 "STATE_ID", "TIME",
1775 NULL
1776 };
1777 static const TypeManagerImpl<Int> tmInt;
1778 static const TypeManagerImpl<Double> tmDouble;
1779 static const TypeManager *const tms[] = {
1780 &tmInt, &tmInt, &tmInt, &tmInt, &tmInt, &tmInt, &tmDouble, NULL
1781 };
1782 //double t0 = mathutil::gettimeofday_sec() ;
1783 MSFillerVisitor myVisitor(mstable_, *table_ );
1784 //double t1 = mathutil::gettimeofday_sec() ;
1785 //cout << "MSFillerVisitor(): elapsed time " << t1-t0 << " sec" << endl ;
1786 myVisitor.setAntenna( antenna_ ) ;
1787 //myVisitor.setHeader( sdh ) ;
1788 if ( getPt_ ) {
1789 Table ptsel = pointtab( pointtab.col("ANTENNA_ID")==antenna_ ).sort( "TIME" ) ;
[3100]1790 if (ptsel.nrow() == 0) {
1791 stringstream ss;
1792 ss << "No rows for ANTENNA_ID " << antenna_ << " in POINTING table" << endl;
1793 throw AipsError(ss.str());
1794 }
[2291]1795 myVisitor.setPointingTable( ptsel ) ;
[1987]1796 }
[2291]1797 if ( isWeather_ )
[2775]1798 myVisitor.setWeatherTime( mwTime_, mwInterval_, mwIndex_ ) ;
[2291]1799 if ( isSysCal_ )
1800 myVisitor.setSysCalRecord( tcalrec_ ) ;
1801
1802 //double t2 = mathutil::gettimeofday_sec() ;
1803 traverseTable(mstable_, cols, tms, &myVisitor);
1804 //double t3 = mathutil::gettimeofday_sec() ;
1805 //cout << "traverseTable(): elapsed time " << t3-t2 << " sec" << endl ;
1806
1807 sdh = myVisitor.getHeader() ;
[1974]1808 }
[2291]1809 /***
1810 * End iteration using TableVisitor
1811 ***/
[1974]1812
[2291]1813 // set header
1814 //sdh = myVisitor.getHeader() ;
1815 //table_->setHeader( sdh ) ;
[1987]1816
1817 // save path to POINTING table
[2207]1818 // 2011/07/06 TN
1819 // Path to POINTING table in original MS will not be written
1820 // if getPt_ is True
[1987]1821 Path datapath( tablename_ ) ;
[2207]1822 if ( !getPt_ ) {
1823 String pTabName = datapath.absoluteName() + "/POINTING" ;
1824 stab.rwKeywordSet().define( "POINTING", pTabName ) ;
1825 }
[1987]1826
1827 // for GBT
[2291]1828 if ( sdh.antennaname.contains( "GBT" ) ) {
[1987]1829 String goTabName = datapath.absoluteName() + "/GBT_GO" ;
[1990]1830 stab.rwKeywordSet().define( "GBT_GO", goTabName ) ;
[1987]1831 }
[2022]1832
1833 // for MS created from ASDM
1834 const TableRecord &msKeys = mstable_.keywordSet() ;
1835 uInt nfields = msKeys.nfields() ;
1836 for ( uInt ifield = 0 ; ifield < nfields ; ifield++ ) {
1837 String name = msKeys.name( ifield ) ;
1838 //os_ << "name = " << name << LogIO::POST ;
1839 if ( name.find( "ASDM" ) != String::npos ) {
1840 String asdmpath = msKeys.asTable( ifield ).tableName() ;
1841 os_ << "ASDM table: " << asdmpath << LogIO::POST ;
1842 stab.rwKeywordSet().define( name, asdmpath ) ;
1843 }
1844 }
1845
[2258]1846 //double endSec = mathutil::gettimeofday_sec() ;
[2237]1847 //os_ << "end MSFiller::fill() endSec=" << endSec << " (" << endSec-startSec << "sec)" << LogIO::POST ;
[1974]1848}
1849
1850void MSFiller::close()
1851{
[1987]1852 //tablesel_.closeSubTables() ;
[1974]1853 mstable_.closeSubTables() ;
[1987]1854 //tablesel_.unlock() ;
[1974]1855 mstable_.unlock() ;
1856}
1857
1858void MSFiller::fillWeather()
1859{
[2258]1860 //double startSec = mathutil::gettimeofday_sec() ;
[2237]1861 //os_ << "start MSFiller::fillWeather() startSec=" << startSec << LogIO::POST ;
[2004]1862
1863 if ( !isWeather_ ) {
1864 // add dummy row
1865 table_->weather().table().addRow(1,True) ;
1866 return ;
1867 }
1868
[1987]1869 Table mWeather = mstable_.weather() ;
1870 //Table mWeatherSel = mWeather( mWeather.col("ANTENNA_ID") == antenna_ ).sort("TIME") ;
1871 Table mWeatherSel( mWeather( mWeather.col("ANTENNA_ID") == antenna_ ).sort("TIME") ) ;
[1974]1872 //os_ << "mWeatherSel.nrow() = " << mWeatherSel.nrow() << LogIO::POST ;
1873 if ( mWeatherSel.nrow() == 0 ) {
[2025]1874 os_ << "No rows with ANTENNA_ID = " << antenna_ << " in WEATHER table, Try -1..." << LogIO::POST ;
[1987]1875 mWeatherSel = Table( MSWeather( mWeather( mWeather.col("ANTENNA_ID") == -1 ) ) ) ;
[1974]1876 if ( mWeatherSel.nrow() == 0 ) {
1877 os_ << "No rows in WEATHER table" << LogIO::POST ;
1878 }
1879 }
[1987]1880 uInt wnrow = mWeatherSel.nrow() ;
[1974]1881 //os_ << "wnrow = " << wnrow << LogIO::POST ;
1882
1883 if ( wnrow == 0 )
1884 return ;
1885
1886 Table wtab = table_->weather().table() ;
1887 wtab.addRow( wnrow ) ;
1888
[2234]1889 Bool stationInfoExists = mWeatherSel.tableDesc().isColumn( "NS_WX_STATION_ID" ) ;
1890 Int stationId = -1 ;
1891 if ( stationInfoExists ) {
1892 // determine which station is closer
1893 ROScalarColumn<Int> stationCol( mWeatherSel, "NS_WX_STATION_ID" ) ;
1894 ROArrayColumn<Double> stationPosCol( mWeatherSel, "NS_WX_STATION_POSITION" ) ;
1895 Vector<Int> stationIds = stationCol.getColumn() ;
1896 Vector<Int> stationIdList( 0 ) ;
1897 Matrix<Double> stationPosList( 0, 3, 0.0 ) ;
1898 uInt numStation = 0 ;
1899 for ( uInt i = 0 ; i < stationIds.size() ; i++ ) {
1900 if ( !anyEQ( stationIdList, stationIds[i] ) ) {
1901 numStation++ ;
1902 stationIdList.resize( numStation, True ) ;
1903 stationIdList[numStation-1] = stationIds[i] ;
1904 stationPosList.resize( numStation, 3, True ) ;
1905 stationPosList.row( numStation-1 ) = stationPosCol( i ) ;
1906 }
1907 }
1908 //os_ << "staionIdList = " << stationIdList << endl ;
1909 Table mAntenna = mstable_.antenna() ;
1910 ROArrayColumn<Double> antposCol( mAntenna, "POSITION" ) ;
1911 Vector<Double> antpos = antposCol( antenna_ ) ;
1912 Double minDiff = -1.0 ;
1913 for ( uInt i = 0 ; i < stationIdList.size() ; i++ ) {
1914 Double diff = sum( square( antpos - stationPosList.row( i ) ) ) ;
1915 if ( minDiff < 0.0 || minDiff > diff ) {
1916 minDiff = diff ;
1917 stationId = stationIdList[i] ;
1918 }
1919 }
1920 }
1921 //os_ << "stationId = " << stationId << endl ;
1922
[1987]1923 ScalarColumn<Float> *fCol ;
1924 ROScalarColumn<Float> *sharedFloatCol ;
1925 if ( mWeatherSel.tableDesc().isColumn( "TEMPERATURE" ) ) {
1926 fCol = new ScalarColumn<Float>( wtab, "TEMPERATURE" ) ;
1927 sharedFloatCol = new ROScalarColumn<Float>( mWeatherSel, "TEMPERATURE" ) ;
1928 fCol->putColumn( *sharedFloatCol ) ;
1929 delete sharedFloatCol ;
1930 delete fCol ;
1931 }
1932 if ( mWeatherSel.tableDesc().isColumn( "PRESSURE" ) ) {
1933 fCol = new ScalarColumn<Float>( wtab, "PRESSURE" ) ;
1934 sharedFloatCol = new ROScalarColumn<Float>( mWeatherSel, "PRESSURE" ) ;
1935 fCol->putColumn( *sharedFloatCol ) ;
1936 delete sharedFloatCol ;
1937 delete fCol ;
1938 }
1939 if ( mWeatherSel.tableDesc().isColumn( "REL_HUMIDITY" ) ) {
1940 fCol = new ScalarColumn<Float>( wtab, "HUMIDITY" ) ;
1941 sharedFloatCol = new ROScalarColumn<Float>( mWeatherSel, "REL_HUMIDITY" ) ;
1942 fCol->putColumn( *sharedFloatCol ) ;
1943 delete sharedFloatCol ;
1944 delete fCol ;
1945 }
1946 if ( mWeatherSel.tableDesc().isColumn( "WIND_SPEED" ) ) {
1947 fCol = new ScalarColumn<Float>( wtab, "WINDSPEED" ) ;
1948 sharedFloatCol = new ROScalarColumn<Float>( mWeatherSel, "WIND_SPEED" ) ;
1949 fCol->putColumn( *sharedFloatCol ) ;
1950 delete sharedFloatCol ;
1951 delete fCol ;
1952 }
1953 if ( mWeatherSel.tableDesc().isColumn( "WIND_DIRECTION" ) ) {
1954 fCol = new ScalarColumn<Float>( wtab, "WINDAZ" ) ;
1955 sharedFloatCol = new ROScalarColumn<Float>( mWeatherSel, "WIND_DIRECTION" ) ;
1956 fCol->putColumn( *sharedFloatCol ) ;
1957 delete sharedFloatCol ;
1958 delete fCol ;
1959 }
[1974]1960 ScalarColumn<uInt> idCol( wtab, "ID" ) ;
[1987]1961 for ( uInt irow = 0 ; irow < wnrow ; irow++ )
1962 idCol.put( irow, irow ) ;
[1974]1963
[1987]1964 ROScalarQuantColumn<Double> tqCol( mWeatherSel, "TIME" ) ;
1965 ROScalarColumn<Double> tCol( mWeatherSel, "TIME" ) ;
1966 String tUnit = tqCol.getUnits() ;
[2234]1967 Vector<Double> mwTime = tCol.getColumn() ;
[1974]1968 if ( tUnit == "d" )
[2234]1969 mwTime *= 86400.0 ;
[1987]1970 tqCol.attach( mWeatherSel, "INTERVAL" ) ;
1971 tCol.attach( mWeatherSel, "INTERVAL" ) ;
1972 String iUnit = tqCol.getUnits() ;
[2234]1973 Vector<Double> mwInterval = tCol.getColumn() ;
[1974]1974 if ( iUnit == "d" )
[2234]1975 mwInterval *= 86400.0 ;
1976
1977 if ( stationId > 0 ) {
1978 ROScalarColumn<Int> stationCol( mWeatherSel, "NS_WX_STATION_ID" ) ;
1979 Vector<Int> stationVec = stationCol.getColumn() ;
1980 uInt wsnrow = ntrue( stationVec == stationId ) ;
1981 mwTime_.resize( wsnrow ) ;
1982 mwInterval_.resize( wsnrow ) ;
1983 mwIndex_.resize( wsnrow ) ;
1984 uInt wsidx = 0 ;
1985 for ( uInt irow = 0 ; irow < wnrow ; irow++ ) {
1986 if ( stationId == stationVec[irow] ) {
1987 mwTime_[wsidx] = mwTime[irow] ;
1988 mwInterval_[wsidx] = mwInterval[irow] ;
1989 mwIndex_[wsidx] = irow ;
1990 wsidx++ ;
1991 }
1992 }
1993 }
1994 else {
1995 mwTime_ = mwTime ;
1996 mwInterval_ = mwInterval ;
1997 mwIndex_.resize( mwTime_.size() ) ;
1998 indgen( mwIndex_ ) ;
1999 }
[1974]2000 //os_ << "mwTime[0] = " << mwTime_[0] << " mwInterval[0] = " << mwInterval_[0] << LogIO::POST ;
[2775]2001 //os_ << "mwIndex_=" << mwIndex_ << LogIO::POST;
[2258]2002 //double endSec = mathutil::gettimeofday_sec() ;
[2237]2003 //os_ << "end MSFiller::fillWeather() endSec=" << endSec << " (" << endSec-startSec << "sec)" << LogIO::POST ;
[1974]2004}
2005
2006void MSFiller::fillFocus()
2007{
[2258]2008 //double startSec = mathutil::gettimeofday_sec() ;
[2237]2009 //os_ << "start MSFiller::fillFocus() startSec=" << startSec << LogIO::POST ;
[1974]2010 // tentative
[2228]2011 table_->focus().addEntry( 0.0, 0.0, 0.0, 0.0 ) ;
[2258]2012 //double endSec = mathutil::gettimeofday_sec() ;
[2237]2013 //os_ << "end MSFiller::fillFocus() endSec=" << endSec << " (" << endSec-startSec << "sec)" << LogIO::POST ;
[1974]2014}
2015
[2291]2016void MSFiller::fillTcal()
[1974]2017{
[2258]2018 //double startSec = mathutil::gettimeofday_sec() ;
[2237]2019 //os_ << "start MSFiller::fillTcal() startSec=" << startSec << LogIO::POST ;
[1987]2020
[2004]2021 if ( !isSysCal_ ) {
2022 // add dummy row
[2025]2023 os_ << "No SYSCAL rows" << LogIO::POST ;
[2004]2024 table_->tcal().table().addRow(1,True) ;
[2021]2025 Vector<Float> defaultTcal( 1, 1.0 ) ;
2026 ArrayColumn<Float> tcalCol( table_->tcal().table(), "TCAL" ) ;
2027 tcalCol.put( 0, defaultTcal ) ;
[2004]2028 return ;
2029 }
2030
[2159]2031 if ( colTcal_ == "NONE" ) {
2032 // add dummy row
2033 os_ << "No TCAL column" << LogIO::POST ;
2034 table_->tcal().table().addRow(1,True) ;
2035 Vector<Float> defaultTcal( 1, 1.0 ) ;
2036 ArrayColumn<Float> tcalCol( table_->tcal().table(), "TCAL" ) ;
2037 tcalCol.put( 0, defaultTcal ) ;
2038 return ;
2039 }
2040
[2291]2041 Table &sctab = mstable_.sysCal() ;
[1974]2042 if ( sctab.nrow() == 0 ) {
[2025]2043 os_ << "No SYSCAL rows" << LogIO::POST ;
[1974]2044 return ;
2045 }
[2291]2046 ROScalarColumn<Int> antCol( sctab, "ANTENNA_ID" ) ;
2047 Vector<Int> ant = antCol.getColumn() ;
2048 if ( allNE( ant, antenna_ ) ) {
[2025]2049 os_ << "No SYSCAL rows" << LogIO::POST ;
[1974]2050 return ;
2051 }
[2291]2052 ROTableColumn tcalCol( sctab, colTcal_ ) ;
[2164]2053 Bool notDefined = False ;
[2291]2054 for ( uInt irow = 0 ; irow < sctab.nrow() ; irow++ ) {
2055 if ( ant[irow] == antenna_ && !tcalCol.isDefined( irow ) ) {
[2164]2056 notDefined = True ;
2057 break ;
2058 }
2059 }
2060 if ( notDefined ) {
2061 os_ << "No TCAL value" << LogIO::POST ;
2062 table_->tcal().table().addRow(1,True) ;
2063 Vector<Float> defaultTcal( 1, 1.0 ) ;
2064 ArrayColumn<Float> tcalCol( table_->tcal().table(), "TCAL" ) ;
2065 tcalCol.put( 0, defaultTcal ) ;
2066 return ;
2067 }
[2291]2068
2069 static const char *cols[] = {
2070 "ANTENNA_ID", "FEED_ID", "SPECTRAL_WINDOW_ID", "TIME",
2071 NULL
2072 };
2073 static const TypeManagerImpl<Int> tmInt;
2074 static const TypeManagerImpl<Double> tmDouble;
2075 static const TypeManager *const tms[] = {
2076 &tmInt, &tmInt, &tmInt, &tmDouble, NULL
2077 };
[1974]2078 Table tab = table_->tcal().table() ;
[2291]2079 TcalVisitor visitor( sctab, tab, tcalrec_, antenna_ ) ;
2080 visitor.setTcalColumn( colTcal_ ) ;
2081
2082 traverseTable(sctab, cols, tms, &visitor);
[2002]2083
[2744]2084 infillTcal();
2085
[1974]2086 //tcalrec_.print( std::cout ) ;
[2258]2087 //double endSec = mathutil::gettimeofday_sec() ;
[2237]2088 //os_ << "end MSFiller::fillTcal() endSec=" << endSec << " (" << endSec-startSec << "sec)" << LogIO::POST ;
[1974]2089}
2090
[2744]2091void MSFiller::infillTcal()
2092{
2093 uInt nfields = tcalrec_.nfields() ;
2094 set<Int> spwAvailable;
2095 for (uInt i = 0; i < nfields; i++) {
2096 String name = tcalrec_.name(i);
2097 size_t pos1 = name.find(':') + 4;
2098 size_t pos2 = name.find(':',pos1);
2099 Int spwid = String::toInt(name.substr(pos1,pos2-pos1));
2100 //cout << "spwid=" << spwid << endl;
2101 spwAvailable.insert(spwid);
2102 }
2103 Table spwtab = mstable_.spectralWindow();
2104 Table tcaltab = table_->tcal().table();
2105 ScalarColumn<uInt> idCol(tcaltab, "ID");
2106 ScalarColumn<String> timeCol(tcaltab, "TIME");
2107 ArrayColumn<Float> tcalCol(tcaltab, "TCAL");
2108 ROScalarColumn<Int> numChanCol(spwtab, "NUM_CHAN");
2109 Int numSpw = spwtab.nrow();
2110 Int dummyFeed = 0;
2111 Double dummyTime = 0.0;
2112 Vector<uInt> idminmax(2);
2113 for (Int i = 0; i < numSpw; i++) {
2114 if (spwAvailable.find(i) == spwAvailable.end()) {
2115 String key = keyTcal(dummyFeed, i, dummyTime);
2116 Vector<Float> tcal(numChanCol(i), 1.0);
2117 uInt nrow = tcaltab.nrow();
2118 tcaltab.addRow(1);
2119 idCol.put(nrow, nrow);
2120 timeCol.put(nrow, "");
2121 tcalCol.put(nrow, tcal);
2122 idminmax = nrow;
2123 tcalrec_.define(key, idminmax);
2124 }
2125 }
2126 //tcalrec_.print(cout);
2127}
2128
[2217]2129string MSFiller::getFrame()
2130{
2131 MFrequency::Types frame = MFrequency::DEFAULT ;
2132 ROTableColumn numChanCol( mstable_.spectralWindow(), "NUM_CHAN" ) ;
2133 ROTableColumn measFreqRefCol( mstable_.spectralWindow(), "MEAS_FREQ_REF" ) ;
2134 uInt nrow = numChanCol.nrow() ;
2135 Vector<Int> measFreqRef( nrow, MFrequency::DEFAULT ) ;
2136 uInt nref = 0 ;
2137 for ( uInt irow = 0 ; irow < nrow ; irow++ ) {
2138 if ( numChanCol.asInt( irow ) != 4 ) { // exclude WVR
2139 measFreqRef[nref] = measFreqRefCol.asInt( irow ) ;
2140 nref++ ;
2141 }
2142 }
2143 if ( nref > 0 )
2144 frame = (MFrequency::Types)measFreqRef[0] ;
2145
2146 return MFrequency::showType( frame ) ;
2147}
[2237]2148
2149void MSFiller::initHeader( STHeader &header )
2150{
2151 header.nchan = 0 ;
2152 header.npol = 0 ;
2153 header.nif = 0 ;
2154 header.nbeam = 0 ;
2155 header.observer = "" ;
2156 header.project = "" ;
2157 header.obstype = "" ;
2158 header.antennaname = "" ;
[2291]2159 header.antennaposition.resize( 3 ) ;
[2237]2160 header.equinox = 0.0 ;
2161 header.freqref = "" ;
2162 header.reffreq = -1.0 ;
2163 header.bandwidth = 0.0 ;
2164 header.utc = 0.0 ;
2165 header.fluxunit = "" ;
2166 header.epoch = "" ;
2167 header.poltype = "" ;
2168}
2169
[2754]2170string MSFiller::frameFromSpwTable()
2171{
2172 string frameString;
2173 Table tab = mstable_.spectralWindow();
2174 ROScalarColumn<Int> mfrCol(tab, "MEAS_FREQ_REF");
2175 Vector<Int> mfr = mfrCol.getColumn();
2176 if (allEQ(mfr,mfr[0])) {
2177 frameString = MFrequency::showType(mfr[0]);
2178 //cout << "all rows have same frame: " << frameString << endl;
2179 }
2180 else {
2181 mfrCol.attach(tab, "NUM_CHAN");
2182 for (uInt i = 0; i < tab.nrow(); i++) {
2183 if (mfrCol(i) != 4) {
2184 frameString = MFrequency::showType(mfr[i]);
2185 break;
2186 }
2187 }
2188 if (frameString.size() == 0) {
2189 frameString = "TOPO";
2190 }
2191 }
2192
2193 //cout << "frameString = " << frameString << endl;
2194
2195 return frameString;
2196}
2197
[2291]2198};
Note: See TracBrowser for help on using the repository browser.