Ignore:
Timestamp:
Aug 9, 2002, 10:46:59 PM (23 years ago)
Author:
cmv
Message:

gestion defaut ASCII table cmv 9/8/02

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaExt/FitsIOServer/fabtcolread.cc

    r2173 r2174  
    215215
    216216 // Get column name back, tunit, tform
    217  char tunit[64], tform[64];
     217 char tunit[64], tform[64], tdisp[64];
    218218 long repeat=0; double tscale=1., tzero=0.;
    219219 int rc=0;
    220220 if(HduType==BINARY_TBL) {
    221221   fits_get_bcolparms(FitsPtr,ColNum+1,labelcol,tunit,tform
    222                      ,&repeat,&tscale,&tzero,NULL,NULL,&sta);
     222                     ,&repeat,&tscale,&tzero,NULL,tdisp,&sta);
    223223 } else {
    224224   fits_get_acolparms(FitsPtr,ColNum+1,labelcol,&repeat,tunit,tform
    225                      ,&tscale,&tzero,NULL,NULL,&sta);
     225                     ,&tscale,&tzero,NULL,tdisp,&sta);
    226226 }
    227227 if(rc) {
     
    237237       <<" TypeCode="<<ColTypeCode<<" TUnit="<<ColTUnit<<" TForm="<<ColTForm<<endl;
    238238 if(DbgLevel>1)
    239    cout<<"      (repeat="<<repeat<<",tscale="<<tscale<<",tzero="<<tzero<<")"<<endl;
     239   cout<<"      (repeat="<<repeat<<",tscale="<<tscale<<",tzero="<<tzero
     240       <<",tdisp="<<tdisp<<")"<<endl;
    240241
    241242}
Note: See TracChangeset for help on using the changeset viewer.