]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSClusterFinderSPDdubna.cxx
Removing obsolete macros
[u/mrichter/AliRoot.git] / ITS / AliITSClusterFinderSPDdubna.cxx
index 225e991e1f6de89c6489b91d328792e297f1cd9e..71247b1ff186c26006d473919bacf48e0210223d 100644 (file)
 
 /*
 $Log$
+Revision 1.6  2002/10/22 14:45:33  alibrary
+Introducing Riostream.h
+
+Revision 1.5  2002/10/14 14:57:00  hristov
+Merging the VirtualMC branch to the main development branch (HEAD)
+
+Revision 1.2.8.1  2002/08/28 15:06:50  alibrary
+Updating to v3-09-01
+
+Revision 1.4  2002/08/22 13:18:46  nilsen
+Added = operator and copy constructor in an attempt to fix complilation
+problems found by Yves Schutz.
+
 Revision 1.3  2002/08/21 22:04:27  nilsen
 Added data member to SPD cluters and made related modifications to the
 SPD Cluster finders. Generaly cleanded up some of the code.
@@ -29,8 +42,12 @@ Revision 1.14  2001/03/05 14:48:46  nilsen
 Fixed a reoccuring bug. Array sizes must be declare const.
 
 */
-
-#include <iostream.h>
+//  Cluster Finder for
+//  Silicon
+//  Pixel
+//  developed by the Dubna group
+//
+#include <Riostream.h>
 #include "AliITSClusterFinderSPDdubna.h"
 #include "AliITSMapA1.h"
 #include "AliITS.h"
@@ -38,7 +55,6 @@ Fixed a reoccuring bug. Array sizes must be declare const.
 #include "AliITSRawCluster.h"
 #include "AliITSRecPoint.h"
 #include "AliITSsegmentation.h"
-#include "AliITSresponse.h"
 #include "AliRun.h"
 
 //#define DEBUG
@@ -256,13 +272,13 @@ void AliITSClusterFinderSPDdubna::TracksInCluster(){
     // get number of clusters for this module
     Int_t nofClusters = fClusters->GetEntriesFast();
     Int_t i, ix, iz, jx, jz, xstart, xstop, zstart, zstop, nclx, nclz;
-    const Int_t trmax = 100;
-    Int_t cltracks[trmax], itr, tracki, ii, is, js, ie, ntr, tr0, tr1, tr2;
+    const Int_t kTrmax = 100;
+    Int_t cltracks[kTrmax], itr, tracki, ii, is, js, ie, ntr, tr0, tr1, tr2;
 
     nofClusters -= fNclusters;
     for(i=0; i<nofClusters; i++) { 
        ii = 0;
-       memset(cltracks,-1,sizeof(int)*trmax);
+       memset(cltracks,-1,sizeof(int)*kTrmax);
        tr0=tr1=tr2=-1;
        AliITSRawClusterSPD *clusterI = (AliITSRawClusterSPD*) fClusters->At(i);
        nclx = clusterI->NclX();
@@ -291,15 +307,15 @@ void AliITSClusterFinderSPDdubna::TracksInCluster(){
                } // end for itr
            } // ix pixel
        }  // iz pixel
-       for(is=0; is<trmax; is++) { 
+       for(is=0; is<kTrmax; is++) { 
            if(cltracks[is]<0) continue;
-           for(js=is+1; js<trmax; js++) { 
+           for(js=is+1; js<kTrmax; js++) { 
                if(cltracks[js]<0) continue;
                if(cltracks[js]==cltracks[is]) cltracks[js]=-5;
            } // end for js
        } // end for is
        ntr = 0;
-       for(ie=0; ie<trmax; ie++) { 
+       for(ie=0; ie<kTrmax; ie++) { 
            if(cltracks[ie] >= 0) {
                ntr=ntr+1;
                if(ntr==1) tr0=cltracks[ie];