- Timestamp:
- 12/20/12 19:51:04 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/external-alma/asdm2ASAP/ASDMReader.cc
r2618 r2705 551 551 Tag configDescTag( (unsigned int)configDescId, TagType::ConfigDescription ) ; 552 552 Tag fieldTag( (unsigned int)fieldId, TagType::Field ) ; 553 mainRow_ = casa::Vector<MainRow *>( *(asdm_->getMain().getByContext( configDescTag, fieldTag ) ) ) ; 553 vector<MainRow *> *rows = asdm_->getMain().getByContext( configDescTag, fieldTag ); 554 if (rows == 0) 555 return false; 556 mainRow_ = casa::Vector<MainRow *>( *rows ) ; 554 557 555 558 return true ;
Note:
See TracChangeset
for help on using the changeset viewer.