Changeset 2102
- Timestamp:
- 05/09/03 10:38:25 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2101 r2102 20 20 * mimage/MHillasCalc.[h,cc]: 21 21 - changed default title 22 23 * Makefile: 24 - added rule 'diff' 25 26 * mhist/MHMatrix.cc: 27 - compressed some debug outputs 22 28 23 29 … … 56 62 * mimage/MHHillasSrc.cc: 57 63 - do not set the log scale before we have entries in the histogram 58 59 * Makefile:60 - added rule 'diff'61 64 62 65 -
trunk/MagicSoft/Mars/mhist/MHMatrix.cc
r2085 r2102 754 754 if (thsh.GetMinimum()<0) 755 755 { 756 *fLog << err << dbginf << "Renormalization not possible: Target Distribution has values < 0" << endl; 756 *fLog << err << dbginf << "Renormalization not possible: "; 757 *fLog "Target Distribution has values < 0" << endl; 757 758 return kFALSE; 758 759 } … … 761 762 if (nmaxevts>fM.GetNrows()) 762 763 { 763 *fLog << dbginf << "No.of requested events (" << nmaxevts 764 << ") exceeds no.of available events (" << fM.GetNrows() 765 << ")" << endl; 766 *fLog << dbginf 767 << " set no.of requested events = no.of available events" 768 << endl; 764 *fLog << warn << dbginf << "No.requested (" << nmaxevts; 765 *fLog << ") > available events (" << fM.GetNrows() << ")... "; 766 *fLog << "setting equal." << endl; 769 767 nmaxevts = fM.GetNrows(); 770 768 } … … 811 809 if (hthd.GetMaximum() <= 0) 812 810 { 813 *fLog << err << dbginf << "Maximum ratio is LE zero" << endl;811 *fLog << err << dbginf << "Maximum correction factor <= 0... abort." << endl; 814 812 return kFALSE; 815 813 } … … 882 880 883 881 if (evtcount1 < nmaxevts) 884 *fLog << warn << " The reference sample contains less events (" << evtcount1 << ") than requested (" << nmaxevts << ")" << endl;882 *fLog << warn << "Reference sample contains less events (" << evtcount1 << ") than requested (" << nmaxevts << ")" << endl; 885 883 886 884 if (TestBit(kEnableGraphicalOutput))
Note:
See TracChangeset
for help on using the changeset viewer.