]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RICH/RICHdetect.C
removed a cout
[u/mrichter/AliRoot.git] / RICH / RICHdetect.C
index 6ade2ccfe7f3bfab47e138e0922571e3130f1d4d..f6db26f0750a320065d6bac567de4ebf08b99a7e 100644 (file)
@@ -34,7 +34,7 @@ RICHdetect (Int_t evNumber1=0,Int_t evNumber2=0) {
     //printf ("I'm after gAlice \n");
     
     AliRICH *RICH  = (AliRICH*) gAlice->GetDetector("RICH"); 
-    
+
     // Create Recontruction algorithm object
     AliRICHDetect *detect = new AliRICHDetect("RICH reconstruction algorithm","Reconstruction");
     
@@ -43,11 +43,11 @@ RICHdetect (Int_t evNumber1=0,Int_t evNumber2=0) {
     //
     for (int nev=0; nev<= evNumber2; nev++) {
       Int_t nparticles = gAlice->GetEvent(nev);
-      cout <<endl<< "Processing event:" <<nev<<endl;
-      cout << "Particles       :" <<nparticles<<endl;
+      printf("\nProcessing event: %d\n",nev);
+      printf("\nParticles       : %d\n",nparticles);
       if (nev < evNumber1) continue;
       if (nparticles <= 0) return;
-      if (RICH) detect->Detect();
+      if (RICH) detect->Detect(nev);
       char hname[30];
       sprintf(hname,"TreeR%d",nev);
       gAlice->TreeR()->Write(hname);