Changeset 2104
- Timestamp:
- 05/09/03 10:58:33 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2103 r2104 5 5 * mbase/MLog.cc: 6 6 - do not underline if eNoColors is set 7 - fixed abug in Output() (last character missing when flushed) 7 8 8 9 * mbase/MLogManip.cc: … … 29 30 * manalysis/MSigmabar.[h,cc]: 30 31 - deleted the fCalcPixNum variable (not used). 32 31 33 32 34 -
trunk/MagicSoft/Mars/mbase/MLog.cc
r2101 r2104 222 222 // Check for EOL 223 223 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); 226 226 // reset colors if working with colors 227 227 if (!TestBit(eNoColors)) -
trunk/MagicSoft/Mars/mhist/MHMatrix.cc
r2102 r2104 755 755 { 756 756 *fLog << err << dbginf << "Renormalization not possible: "; 757 *fLog "Target Distribution has values < 0" << endl;757 *fLog << "Target Distribution has values < 0" << endl; 758 758 return kFALSE; 759 759 }
Note:
See TracChangeset
for help on using the changeset viewer.