Changeset 840
- Timestamp:
- 02/23/06 11:20:38 (19 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/STFrequencies.cpp
r830 r840 222 222 } 223 223 224 bool asap::STFrequencies::conformant( const STFrequencies& other ) const 225 { 226 const Record& r = table_.keywordSet(); 227 const Record& ro = other.table_.keywordSet(); 228 return ( r.asString("REFFRAME") == ro.asString("REFFRAME") && 229 r.asString("EQUINOX") == ro.asString("EQUINOX") && 230 r.asString("UNIT") == ro.asString("UNIT") && 231 r.asString("DOPPLER") == ro.asString("DOPPLER") 232 ); 233 } 234 224 235 } // namespace -
trunk/src/STFrequencies.h
r836 r840 54 54 casa::Double& inc, casa::uInt id ); 55 55 56 57 bool conformant(const STFrequencies& other) const; 56 58 57 59 /**
Note:
See TracChangeset
for help on using the changeset viewer.