Changeset 2104


Ignore:
Timestamp:
05/09/03 10:58:33 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2103 r2104  
    55   * mbase/MLog.cc:
    66     - do not underline if eNoColors is set
     7     - fixed abug in Output() (last character missing when flushed)
    78     
    89   * mbase/MLogManip.cc:
     
    2930   * manalysis/MSigmabar.[h,cc]:
    3031     - deleted the fCalcPixNum variable (not used).
     32
    3133
    3234
  • trunk/MagicSoft/Mars/mbase/MLog.cc

    r2101 r2104  
    222222        // Check for EOL
    223223        const Bool_t endline = fBase[len-1]=='\n';
    224         // output text to screen (without trailing '\0' or '\n')
    225         out << TString(fBase, len-1);
     224        // output text to screen (without trailing '\n')
     225        out << TString(fBase, endline ? len-1 : len);
    226226        // reset colors if working with colors
    227227        if (!TestBit(eNoColors))
  • trunk/MagicSoft/Mars/mhist/MHMatrix.cc

    r2102 r2104  
    755755    {
    756756        *fLog << err << dbginf << "Renormalization not possible: ";
    757         *fLog "Target Distribution has values < 0" << endl;
     757        *fLog << "Target Distribution has values < 0" << endl;
    758758        return kFALSE;
    759759    }
Note: See TracChangeset for help on using the changeset viewer.