]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fix conversion problems
authorcblume <cblume@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 3 Dec 2007 17:57:58 +0000 (17:57 +0000)
committercblume <cblume@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 3 Dec 2007 17:57:58 +0000 (17:57 +0000)
TRD/AliTRDseedV1.cxx
TRD/AliTRDstackLayer.cxx

index 061db20017f222e798342f39b0f1a5755643432e..2cbcca783698d570513751e98a55e6a93698f906 100644 (file)
@@ -653,7 +653,7 @@ void AliTRDseedV1::Print()
                 , fY[ic]
                 , fZ[ic]
                 , fIndexes[ic]
-                , ((Int_t) fClusters[ic])
+                , ((void *) fClusters[ic])
                 , isUsable);
         }
 
index 22f8c5321136117605d7814cdfe783a5419066c1..423d11f240b445d0a214319a0b2f45c9a3e7018e 100644 (file)
@@ -540,8 +540,8 @@ void AliTRDstackLayer::PrintClusters() const
 {
 // Prints the position of each cluster in the stacklayer on the stdout
 //
-       printf("fDebugStream = %#o\n", ((Int_t) fDebugStream));
-       printf("fRecoParam   = %#o\n", ((Int_t) fRecoParam));
+  //printf("fDebugStream = %#o\n", ((Int_t) fDebugStream));
+  //printf("fRecoParam   = %#o\n", ((Int_t) fRecoParam));
        
        for(Int_t i = 0; i < fN; i++){
                printf("AliTRDstackLayer: index=%i, Cluster: X = %3.3f, Y = %3.3f, Z = %3.3f\n", i,  fClusters[i]->GetX(),fClusters[i]->GetY(),fClusters[i]->GetZ());