]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONVCluster.cxx
Introduced datamember fIsRemote. Used to disable the progress bar when running in...
[u/mrichter/AliRoot.git] / MUON / AliMUONVCluster.cxx
index 2792b75e424f013ff125544a4fab63c45fcef3d7..1fbca070700003338456520d11f1e70192f85632 100644 (file)
@@ -25,7 +25,6 @@
 
 #include "AliMUONVCluster.h"
 
-#include "AliESDMuonCluster.h"
 #include "AliLog.h"
 
 #include <Riostream.h>
@@ -48,14 +47,6 @@ AliMUONVCluster::AliMUONVCluster(Int_t chamberId, Int_t detElemId, Int_t cluster
   SetUniqueID(BuildUniqueID(chamberId, detElemId, clusterIndex));
 }
 
-//_____________________________________________________________________________
-AliMUONVCluster::AliMUONVCluster(const AliESDMuonCluster& cluster)
-: TObject() 
-{
-  /// constructor
-  SetUniqueID(cluster.GetUniqueID());
-}
-
 //_____________________________________________________________________________
 AliMUONVCluster::~AliMUONVCluster()
 {
@@ -73,8 +64,8 @@ void AliMUONVCluster::Print(Option_t *option) const
   cout<<Form("clusterID=%u (ch=%d, det=%d, index=%d)",
             cId,GetChamberId(),GetDetElemId(),GetClusterIndex(cId))<<endl;
   
-  cout<<Form("position=(%5.2f, %5.2f, %5.2f), sigma=(%5.2f, %5.2f, 0.0), charge=%5.2f, chi2=%5.2f",
-            GetX(),GetY(),GetZ(),GetErrX(),GetErrY(),GetCharge(),GetChi2())<<endl;
+  cout<<Form("position=(%5.2f, %5.2f, %5.2f), sigma=(%5.2f, %5.2f, 0.0), charge=%5.2f, chi2=%5.2f, MClabel=%d",
+            GetX(),GetY(),GetZ(),GetErrX(),GetErrY(),GetCharge(),GetChi2(),GetMCLabel())<<endl;
   
   if (strcmp(option,"FULL") == 0) {
     cout<<"nDigits="<<nDigits<<" digitID=(";