Ignore:
Timestamp:
Feb 2, 2007, 6:46:47 PM (19 years ago)
Author:
ansari
Message:

Passage a la version ll (LONGLONG) des routines fits , cmv+Reza 02/02/2007

File:
1 edited

Legend:

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

    r3063 r3167  
    139139
    140140  //--- Nb de lignes et de colonnes
    141   vector<string> colnames; vector<int> coltypes; vector<long> repcnt, width;
     141  vector<string> colnames; vector<int> coltypes; vector<LONGLONG> repcnt, width;
    142142  is.GetColInfo(colnames,coltypes,repcnt,width);
    143143  long ncol = colnames.size();
    144144  if(ncol<=0)
    145145    throw FitsIOException("FitsHandler<GeneralFitData>::Read() bad number of table columns");
    146   long nbrows = is.GetNbRows();
     146  int_8 nbrows = is.GetNbRows();
    147147  if(nbrows<=0)
    148148    throw FitsIOException("FitsHandler<GeneralFitData>::Read() number of rows is zero, no reading");
Note: See TracChangeset for help on using the changeset viewer.