Ignore:
Timestamp:
06/22/13 16:28:00 (11 years ago)
Author:
tbretz
Message:
Consistency of member names
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mcore/zfits.h

    r16888 r16890  
    6363    bool SkipNextRow()
    6464    {
    65         if (!fTable.isCompressed)
     65        if (!fTable.is_compressed)
    6666            return fits::SkipNextRow();
    6767
     
    7676    virtual void StageRow(size_t row, char* dest)
    7777    {
    78         if (!fTable.isCompressed)
     78        if (!fTable.is_compressed)
    7979        {
    8080            fits::StageRow(row, dest);
     
    122122    void InitCompressionReading()
    123123    {
    124         if (!fTable.isCompressed)
     124        if (!fTable.is_compressed)
    125125            return;
    126126
     
    129129            return;
    130130
    131         if (fTable.isCompressed)
    132         {
    133             for (auto it=fTable.sortedCols.begin(); it!= fTable.sortedCols.end(); it++)
     131        if (fTable.is_compressed)
     132        {
     133            for (auto it=fTable.sorted_cols.begin(); it!= fTable.sorted_cols.end(); it++)
    134134            {
    135135                if (it->comp == kCompFACT)
     
    146146        }
    147147
    148         fColumnOrdering.resize(fTable.sortedCols.size());
     148        fColumnOrdering.resize(fTable.sorted_cols.size());
    149149        for (auto it=fColumnOrdering.begin(); it != fColumnOrdering.end(); it++)
    150150            (*it) = kOrderByRow;
    151151        //Get compressed specific keywords
    152         fNumTiles       = fTable.isCompressed ? GetInt("NAXIS2") : 0;
    153         fNumRowsPerTile = fTable.isCompressed ? GetInt("ZTILELEN") : 0;
     152        fNumTiles       = fTable.is_compressed ? GetInt("NAXIS2") : 0;
     153        fNumRowsPerTile = fTable.is_compressed ? GetInt("ZTILELEN") : 0;
    154154
    155155        //give it some space for uncompressing
     
    166166    void MoveColumnDataToUserSpace(char* dest, const char* src, const Table::Column& c)
    167167    {
    168         if (!fTable.isCompressed)
     168        if (!fTable.is_compressed)
    169169        {
    170170            fits::MoveColumnDataToUserSpace(dest, src, c);
     
    334334
    335335            uint32_t i=0;
    336             for (auto it=fTable.sortedCols.begin(); it!=fTable.sortedCols.end(); it++, i++)
     336            for (auto it=fTable.sorted_cols.begin(); it!=fTable.sorted_cols.end(); it++, i++)
    337337            {
    338338                char *buffer = fBuffer.data() + it->offset; // pointer to column (destination buffer)
     
    433433
    434434        //uncompress column by column
    435         for (uint32_t i=0; i<fTable.sortedCols.size(); i++)
    436         {
    437             const fits::Table::Column &col = fTable.sortedCols[i];
     435        for (uint32_t i=0; i<fTable.sorted_cols.size(); i++)
     436        {
     437            const fits::Table::Column &col = fTable.sorted_cols[i];
    438438            if (col.num == 0)
    439439                continue;
     
    524524            {
    525525                //zero sized column do not have headers. Skip it
    526                 if (fTable.sortedCols[i].num == 0)
     526                if (fTable.sorted_cols[i].num == 0)
    527527                {
    528528                    catalog.back().push_back(make_pair(0,0));
Note: See TracChangeset for help on using the changeset viewer.