[Rivet-svn] r2659 - trunk/src/Core

blackhole at projects.hepforge.org blackhole at projects.hepforge.org
Tue Aug 17 11:11:18 BST 2010


Author: buckley
Date: Tue Aug 17 11:11:18 2010
New Revision: 2659

Log:
Aesthetic typo fix (adding missing spaces)

Modified:
   trunk/src/Core/Analysis.cc

Modified: trunk/src/Core/Analysis.cc
==============================================================================
--- trunk/src/Core/Analysis.cc	Mon Aug 16 21:13:20 2010	(r2658)
+++ trunk/src/Core/Analysis.cc	Tue Aug 17 11:11:18 2010	(r2659)
@@ -512,7 +512,7 @@
   void Analysis::normalize(AIDA::IHistogram1D*& histo, double norm) {
     if (!histo) {
       getLog() << Log::ERROR << "Failed to normalise histo=NULL in analysis "
-               << name() << "(norm=" << norm << ")" << endl;
+               << name() << " (norm=" << norm << ")" << endl;
       return;
     }
     const string hpath = tree().findPath(dynamic_cast<const AIDA::IManagedObject&>(*histo));
@@ -537,7 +537,7 @@
   void Analysis::scale(AIDA::IHistogram1D*& histo, double scale) {
     if (!histo) {
       getLog() << Log::ERROR << "Failed to scale histo=NULL in analysis "
-          << name() << "(scale=" << scale << ")" << endl;
+          << name() << " (scale=" << scale << ")" << endl;
       return;
     }
     const string hpath = tree().findPath(dynamic_cast<const AIDA::IManagedObject&>(*histo));


More information about the Rivet-svn mailing list