]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONVCluster.cxx
fix typo
[u/mrichter/AliRoot.git] / MUON / AliMUONVCluster.cxx
index 3a049d27a65265ccb073d38c49b01b0266e4a8df..4ceabc8609457acb57870e5bb3d9ee43176214a9 100644 (file)
 
 #include <Riostream.h>
 
+using std::endl;
+using std::cout;
 /// \cond CLASSIMP
 ClassImp(AliMUONVCluster)
 /// \endcond
 
-const Double_t AliMUONVCluster::fgkDefaultNonBendingReso = 0.144;
-const Double_t AliMUONVCluster::fgkDefaultBendingReso = 0.01;
-
 //_____________________________________________________________________________
 AliMUONVCluster::AliMUONVCluster()
 {
@@ -67,8 +66,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=(";