Ignore:
Timestamp:
05/23/11 15:04:32 (13 years ago)
Author:
tbretz
Message:
Replaced stringstream in log-stream by ostringstream.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/Fits.cc

    r10758 r10780  
    6565                for (unsigned int i=0;i<dataFormat.size();i++)
    6666                {
    67                         stringstream stt;
     67                        ostringstream stt;
    6868                        stt << "Data" << i;
    6969                        fDataColDesc.push_back(Description(stt.str(), "comment", "unit"));
     
    9898                catch (CCfits::FitsException e)
    9999                {                       
    100                         stringstream str;
     100                        ostringstream str;
    101101                        str << "Could not open FITS file " << fileName << " reason: " << e.message();
    102102                        fMess->Error(str);
     
    133133                else
    134134                {
    135                         stringstream stt;
     135                        ostringstream stt;
    136136                        stt << "Data" << i;
    137137                        allNames.push_back(stt.str());
     
    179179        catch(CCfits::FitsException e)
    180180        {
    181                 stringstream str;
     181                ostringstream str;
    182182                str << "Could not open or create FITS table " << tableName << " in  file " << fileName << " reason: " << e.message();
    183183                fMess->Error(str);
     
    205205        catch (CCfits::FitsException e)
    206206        {
    207                 stringstream str;
     207                ostringstream str;
    208208                str << "Could not add header keys in file " << fFileName << " reason: " << e.message();
    209209                fMess->Error(str);
     
    248248        if (fits_insert_rows(fTable->fitsPointer(), fNumRows, 1, &status))
    249249        {
    250                 stringstream str;
     250                ostringstream str;
    251251                str << "Could not insert row in file " << fFileName << ". cfitsio error code: " << status;
    252252                fMess->Error(str);
     
    281281                char text[30];//max length of cfitsio error strings (from doc)
    282282                fits_get_errstatus(status, text);
    283                 stringstream str;
     283                ostringstream str;
    284284                str << "Error while writing FITS row in " << fFileName << ". Message: " << text << " [" << status << "]";
    285285                fMess->Error(str);     
Note: See TracChangeset for help on using the changeset viewer.