Changeset 915
- Timestamp:
- 03/22/06 21:36:05 (19 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Scantable.cpp
r913 r915 127 127 table_ = other.table_.copyToMemoryTable(newname); 128 128 } else { 129 other.table_.deepCopy(newname, Table::New, False, Table::AipsrcEndian, 129 other.table_.deepCopy(newname, Table::New, False, 130 other.table_.endianFormat(), 130 131 Bool(clear)); 131 132 table_ = Table(newname, Table::Update); 132 if ( clear ) copySubtables(other);133 133 table_.markForDelete(); 134 134 } 135 135 136 if ( clear ) copySubtables(other); 136 137 attachSubtables(); 137 138 originalTable_ = table_; … … 897 898 } 898 899 900 casa::MEpoch::Types asap::Scantable::getTimeReference( ) const 901 { 902 return MEpoch::castType(timeCol_.getMeasRef().getType()); 903 } 904 905 899 906 } //namespace asap -
trunk/src/Scantable.h
r905 r915 142 142 143 143 //casa::MDirection::Types getDirectionReference() const; 144 //casa::MEpoch::Types getTimeReference() const;144 casa::MEpoch::Types getTimeReference() const; 145 145 146 146 /**
Note:
See TracChangeset
for help on using the changeset viewer.