- Timestamp:
- 07/06/11 13:13:16 (13 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/MSFiller.cpp
r2206 r2207 979 979 980 980 // save path to POINTING table 981 // 2011/3/2 TN 982 // So far, path to original POINTING table is always stored 983 // since sd tasks and regressions don't support getpt control 984 //if ( !getPt_ ) { 981 // 2011/07/06 TN 982 // Path to POINTING table in original MS will not be written 983 // if getPt_ is True 985 984 Path datapath( tablename_ ) ; 986 String pTabName = datapath.absoluteName() + "/POINTING" ; 987 stab.rwKeywordSet().define( "POINTING", pTabName ) ; 988 //} 985 if ( !getPt_ ) { 986 String pTabName = datapath.absoluteName() + "/POINTING" ; 987 stab.rwKeywordSet().define( "POINTING", pTabName ) ; 988 } 989 989 990 990 // for GBT -
trunk/src/MSWriter.cpp
r2190 r2207 1362 1362 *antennaRF = 0 ; 1363 1363 RecordFieldPtr<Int> numpolyRF( rec, "NUM_POLY" ) ; 1364 *numpolyRF = dir.ncolumn() ;1364 *numpolyRF = dir.ncolumn() - 1 ; 1365 1365 RecordFieldPtr<Double> timeRF( rec, "TIME" ) ; 1366 1366 *timeRF = me ; … … 1376 1376 *dirRF = dir ; 1377 1377 RecordFieldPtr< Array<Double> > targetRF( rec, "TARGET" ) ; 1378 * dirRF = dir ;1378 *targetRF = dir ; 1379 1379 row.put( nrow ) ; 1380 1380
Note:
See TracChangeset
for help on using the changeset viewer.