]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONCluster.cxx
Main changes:
[u/mrichter/AliRoot.git] / MUON / AliMUONCluster.cxx
index 1afaab414db7cd28373b8e4da8687167c50ac93e..a40d9fe005e2a2bec14e879359fced7c85bdbb0e 100644 (file)
@@ -312,6 +312,14 @@ AliMUONCluster::Area(Int_t cathode) const
                    (upperRight-lowerLeft).X()/2, (upperRight-lowerLeft).Y()/2);
 }
 
+//_____________________________________________________________________________
+Bool_t
+AliMUONCluster::IsMonoCathode() const
+{
+  /// Whether we have signals only in one of the two cathodes
+  return (Cathode()<2);
+}
+
 //_____________________________________________________________________________
 Int_t
 AliMUONCluster::Cathode() const
@@ -657,7 +665,7 @@ AliMUONCluster::DumpMe() const
 //  cout << " " << Area() << endl;
   for (Int_t i = 0; i < fPads.GetSize(); ++i) 
   {
-    cout << Form("fPads[%d]=%x",i,fPads.At(i)) << endl;
+    cout << Form("fPads[%d]=%p",i,fPads.At(i)) << endl;
     if ( fPads.At(i) ) fPads.At(i)->Print();
   }
 }