]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Minor changes to use new AliL3ClusterFinder class.
authorloizides <loizides@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 6 Jun 2002 16:21:44 +0000 (16:21 +0000)
committerloizides <loizides@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 6 Jun 2002 16:21:44 +0000 (16:21 +0000)
HLT/programs/runit.cxx

index 50a5e1abac74b4db4202aa5ad7a397986ba534bc..ae3abea09491f7c5eec36b58c4750d66b7fc51c1 100644 (file)
@@ -48,15 +48,16 @@ int main(int argc,char **argv)
   cf.InitSlice(0,0,0,ndigits-1,10000);
   cf.SetXYError(0.2);
   cf.SetZError(0.3);
+  cf.SetSTDOutput(kTRUE);
 
+  //Switch off deconvolution:
+  cf.SetDeconv(false);
+  
   //Allocate memory to store found spacepoints 
   AliL3MemHandler fpoints;
   AliL3SpacePointData *points=(AliL3SpacePointData*)fpoints.Allocate(10000*sizeof(AliL3SpacePointData));
   cf.SetOutputArray(points);
 
-  //Switch off deconvolution:
-  cf.SetDeconv(false);
-  
   //Give the data pointer to the cluster finder
   cf.Read(ndigits,digits);