Changeset 12732


Ignore:
Timestamp:
12/22/11 12:19:16 (13 years ago)
Author:
tbretz
Message:
Adapted memember function names to Mars convention; fixed a type in a log-stream
File:
1 edited

Legend:

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

    r12722 r12732  
    347347        }
    348348
    349         const Columns& getColumns() const
     349        const Columns &GetColumns() const
    350350        {
    351351            return cols;
    352352        }
    353353
    354         const Keys& getKeys() const
     354        const Keys &GetKeys() const
    355355        {
    356356            return keys;
    357357        }
    358358
    359 
    360 
    361             // Values of keys are always signed
     359        // Values of keys are always signed
    362360        template<typename T>
    363361            T Get(const string &key) const
     
    378376        }
    379377
    380             // Values of keys are always signed
     378        // Values of keys are always signed
    381379        template<typename T>
    382380            T Get(const string &key, const string &deflt) const
     
    504502                        throw runtime_error("END keyword missing in FITS header.");
    505503#else
    506                         gLog << ___err__ << "ERROR - END keyword missing in FITS file... file might be corrupted." << endl;
     504                        gLog << ___err___ << "ERROR - END keyword missing in FITS file... file might be corrupted." << endl;
    507505                        return;
    508506#endif
     
    715713    bool     HasKey(const string &key) const { return fTable.HasKey(key); }
    716714    bool     HasColumn(const string& col) const { return fTable.HasColumn(col);}
    717     const Table::Columns& getColumns() const { return fTable.getColumns();}
    718     const Table::Keys& getKeys() const { return fTable.getKeys();}
     715    const Table::Columns &GetColumns() const { return fTable.getColumns();}
     716    const Table::Keys &GetKeys() const { return fTable.getKeys();}
    719717
    720718    int64_t  GetInt(const string &key) const { return fTable.Get<int64_t>(key); }
Note: See TracChangeset for help on using the changeset viewer.