- Timestamp:
- 12/01/04 10:56:53 (20 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/SDContainer.cc
r83 r104 29 29 //# $Id: 30 30 //#--------------------------------------------------------------------------- 31 #include <casa/Exceptions.h> 31 32 #include <tables/Tables/Table.h> 32 33 #include <casa/Arrays/IPosition.h> … … 70 71 uChar x = 0; 71 72 flags_ = ~x; 73 tcal.resize(2); 72 74 } 73 75 … … 85 87 uChar x = 0; 86 88 flags_ = ~x; 89 tcal.resize(2); 87 90 } 88 91 … … 126 129 IPosition shp1 = spec.shape(); 127 130 if ( (shp0(2) != shp1(1)) || (shp0(3) != shp1(0)) ) { 128 cerr << "Arrays not conformant" << endl;131 throw(AipsError("Arrays not conformant")); 129 132 return False; 130 133 } -
trunk/src/SDContainer.h
r83 r104 134 134 135 135 Double timestamp; 136 //Double bandwidth; 136 137 String sourcename; 137 138 String fieldname; 138 139 Double interval; 139 140 Int scanid; 141 Vector<Float> tcal; 140 142 String tcaltime; 141 143 Float azimuth; 144 Float elevation; 145 Float parangle; 146 Int refbeam; 147 142 148 private: 143 149 uInt nBeam_,nIF_,nPol_,nChan_;
Note:
See TracChangeset
for help on using the changeset viewer.