Changeset 17282 for trunk/Mars


Ignore:
Timestamp:
10/21/13 11:54:43 (11 years ago)
Author:
tbretz
Message:
Added some more missing std:: for the compilition in Mars
Location:
trunk/Mars/mcore
Files:
3 edited

Legend:

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

    r17264 r17282  
    6464            throw std::runtime_error(sout.str());
    6565#else
    66             gLog << ___err___ << "ERROR - " << sout.str() << endl;
     66            gLog << ___err___ << "ERROR - " << sout.str() << std::endl;
    6767            return false;
    6868#endif
  • trunk/Mars/mcore/factfits.h

    r17274 r17282  
    149149            throw std::runtime_error("Table 'ZDrsCellOffsets' found, but not with one row as expected");
    150150#else
    151             gLog << ___err___ << "ERROR - Table 'ZDrsCellOffsets' found, but not with one row as expected" << endl;
     151            gLog << ___err___ << "ERROR - Table 'ZDrsCellOffsets' found, but not with one row as expected" << std::endl;
    152152            return;
    153153#endif
     
    159159            throw std::runtime_error("Table 'DrsCalib' found, but first column is not the one expected");
    160160#else
    161             gLog << ___err___ << "ERROR - Table 'DrsCalib' found, but first column is not the one expected" << endl;
     161            gLog << ___err___ << "ERROR - Table 'DrsCalib' found, but first column is not the one expected" << std::endl;
    162162            return;
    163163#endif
     
    169169            throw std::runtime_error("Table 'DrsCalib' has wrong column format (TFROM1)");
    170170#else
    171             gLog << ___err___ << "ERROR - Table 'DrsCalib' has wrong column format (TFORM1)" << endl;
     171            gLog << ___err___ << "ERROR - Table 'DrsCalib' has wrong column format (TFORM1)" << std::endl;
    172172            return;
    173173#endif
     
    185185        throw std::runtime_error("Reading column 'OffsetCalibration' failed.");
    186186#else
    187         gLog << ___err___ << "ERROR - Reading column 'OffsetCalibration' failed." << endl;
     187        gLog << ___err___ << "ERROR - Reading column 'OffsetCalibration' failed." << std::endl;
    188188#endif
    189189
  • trunk/Mars/mcore/zfits.h

    r17274 r17282  
    111111                throw std::runtime_error("Only the FACT compression scheme is handled by this reader.");
    112112#else
    113                 gLog << ___err___ << "ERROR - Only the FACT compression scheme is handled by this reader." << endl;
     113                gLog << ___err___ << "ERROR - Only the FACT compression scheme is handled by this reader." << std::endl;
    114114                return;
    115115#endif
     
    211211                    throw std::runtime_error("Negative value in the catalog");
    212212#else
    213                     gLog << ___err___ << "ERROR - negative value in the catalog" << endl;
     213                    gLog << ___err___ << "ERROR - negative value in the catalog" << std::endl;
    214214                    return;
    215215#endif
     
    363363                    throw std::runtime_error("Unkown column ordering scheme found");
    364364#else
    365                     gLog << ___err___ << "ERROR - unkown column ordering scheme" << endl;
     365                    gLog << ___err___ << "ERROR - unkown column ordering scheme" << std::endl;
    366366                    return false;
    367367#endif
     
    475475                    throw std::runtime_error(str.str());
    476476#else
    477                     gLog << ___err___ << "ERROR - Unknown processing applied to data. Aborting" << endl;
     477                    gLog << ___err___ << "ERROR - Unknown processing applied to data. Aborting" << std::endl;
    478478                    return;
    479479#endif
     
    563563                    throw std::runtime_error(str.str());
    564564#else
    565                     gLog << ___err___ << "ERROR - " << str.str() << endl;
     565                    gLog << ___err___ << "ERROR - " << str.str() << std::endl;
    566566                    return;
    567567#endif
     
    583583                    throw std::runtime_error("Heap data does not agree with header.");
    584584#else
    585                     gLog << ___err___ << "ERROR - Heap data does not agree with header." << endl;
     585                    gLog << ___err___ << "ERROR - Heap data does not agree with header." << std::endl;
    586586                    return;
    587587#endif
     
    598598                    throw std::runtime_error("Heap data does not agree with header.");
    599599#else
    600                     gLog << ___err___ << "ERROR - Heap data does not agree with header." << endl;
     600                    gLog << ___err___ << "ERROR - Heap data does not agree with header." << std::endl;
    601601                    return;
    602602#endif
Note: See TracChangeset for help on using the changeset viewer.