- Timestamp:
- 08/26/13 18:04:21 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/MSWriter.cpp
r2841 r2842 274 274 void postFlagRow() 275 275 { 276 *flagRowRF = anyEQ( flagRow, True ) ; 276 // CAS-5545 FLAG_ROW must always be set False 277 //*flagRowRF = anyEQ( flagRow, True ) ; 278 *flagRowRF = False; 277 279 } 278 280 inline void accumulateFlag( uInt &id, Vector<Bool> &fl ) … … 347 349 virtual void postFlag() 348 350 { 351 // CAS-5545 FLAG must all be set True if FLAG_ROW is True 352 for (uInt ipol = 0; ipol < npol; ++ipol) { 353 if (flagRow[ipol]) { 354 flag(IPosition(2, ipol, 0), IPosition(2, ipol, nchan-1)) = True; 355 } 356 } 357 349 358 if ( npol == 2 ) { 350 359 flagRF.define( flag( IPosition( 2, 0, 0 ), IPosition( 2, npol-1, nchan-1 ) ) ) ; … … 386 395 virtual void postFlag() 387 396 { 397 // CAS-5545 FLAG must all be set True if FLAG_ROW is True 398 for (uInt ipol = 0; ipol < npol; ++ipol) { 399 if (flagRow[ipol]) { 400 flag(IPosition(2, ipol, 0), IPosition(2, ipol, nchan-1)) = True; 401 } 402 } 403 388 404 if ( npol == 4 ) { 389 405 Vector<Bool> tmp = flag.row( 3 ) ;
Note:
See TracChangeset
for help on using the changeset viewer.