- Timestamp:
- 02/23/06 11:17:38 (19 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/SDContainer.cc
r832 r838 45 45 using namespace casa; 46 46 using namespace asap; 47 48 49 50 bool SDHeader::conformant( const SDHeader& other ) 51 { 52 bool conforms; 53 conforms = (this->antennaname == other.antennaname 54 && this->equinox == other.equinox 55 && this->obstype == other.obstype 56 && this->fluxunit == other.fluxunit 57 ); 58 return conforms; 59 } 47 60 48 61 void SDHeader::print() const { -
trunk/src/SDContainer.h
r832 r838 46 46 47 47 struct SDHeader { 48 49 bool conformant(const SDHeader& other); 50 48 51 casa::Int nchan; 49 52 casa::Int npol;
Note:
See TracChangeset
for help on using the changeset viewer.