]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONContourHandler.cxx
Fixing display of data at pad level (pads were hollow)
[u/mrichter/AliRoot.git] / MUON / AliMUONContourHandler.cxx
index 02529fa8da88b9767d5d2e0899248da90d3bf7ad..5a91b1e2d143a2942fbcb74e9e466818a7211f80 100644 (file)
@@ -51,6 +51,8 @@
 #include "TPolyLine.h"
 #include "TSystem.h"
 
+using std::cout;
+using std::endl;
 ///\cond CLASSIMP
 ClassImp(AliMUONContourHandler)
 ///\endcond
@@ -238,7 +240,7 @@ AliMUONContourHandler::GenerateAllContours(const TObjArray& manuContours)
         }
         else
         {
-          AliError(Form("Did not find contour %s",k->String().Data()))
+          AliError(Form("Did not find contour %s",k->String().Data()));
           continue;
         }
       }
@@ -341,13 +343,13 @@ AliMUONContourHandler::Print(Option_t* opt) const
 {
   /// printout
   
-  if ( fAllContourMap ) 
-  {
-    cout << Form("Contour map : collisions = %5.3f size = %d capacity = %d", 
-                 fAllContourMap->AverageCollisions(),
-                 fAllContourMap->GetSize(),
-                 fAllContourMap->Capacity()) << endl;
-  }
+  if ( ! fAllContourMap )  return;
+  
+  cout << Form("Contour map : collisions = %5.3f size = %d capacity = %d", 
+               fAllContourMap->AverageCollisions(),
+               fAllContourMap->GetSize(),
+               fAllContourMap->Capacity()) << endl;
+
   TString sopt(opt);
   sopt.ToUpper();