Changeset 2174 in Sophya for trunk/SophyaExt/FitsIOServer/fabtcolread.cc
- Timestamp:
- Aug 9, 2002, 10:46:59 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fabtcolread.cc
r2173 r2174 215 215 216 216 // Get column name back, tunit, tform 217 char tunit[64], tform[64] ;217 char tunit[64], tform[64], tdisp[64]; 218 218 long repeat=0; double tscale=1., tzero=0.; 219 219 int rc=0; 220 220 if(HduType==BINARY_TBL) { 221 221 fits_get_bcolparms(FitsPtr,ColNum+1,labelcol,tunit,tform 222 ,&repeat,&tscale,&tzero,NULL, NULL,&sta);222 ,&repeat,&tscale,&tzero,NULL,tdisp,&sta); 223 223 } else { 224 224 fits_get_acolparms(FitsPtr,ColNum+1,labelcol,&repeat,tunit,tform 225 ,&tscale,&tzero,NULL, NULL,&sta);225 ,&tscale,&tzero,NULL,tdisp,&sta); 226 226 } 227 227 if(rc) { … … 237 237 <<" TypeCode="<<ColTypeCode<<" TUnit="<<ColTUnit<<" TForm="<<ColTForm<<endl; 238 238 if(DbgLevel>1) 239 cout<<" (repeat="<<repeat<<",tscale="<<tscale<<",tzero="<<tzero<<")"<<endl; 239 cout<<" (repeat="<<repeat<<",tscale="<<tscale<<",tzero="<<tzero 240 <<",tdisp="<<tdisp<<")"<<endl; 240 241 241 242 }
Note:
See TracChangeset
for help on using the changeset viewer.