]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FMD/Reconstruct.C
Example macros for Kr cluster finding
[u/mrichter/AliRoot.git] / FMD / Reconstruct.C
index c8aa8a9ae35c9d9589e83add11587ca4c5bce53a..409df92ffc7202ea5e737fa38e235fd83bfdd5f6 100644 (file)
  **************************************************************************/
 
 /* $Id$ */
-
+/** @file    Reconstruct.C
+    @author  Christian Holm Christensen <cholm@nbi.dk>
+    @date    Mon Mar 27 14:19:56 2006
+    @brief   Script to do reconstruction 
+*/
 // Script to do test the FMD digitization class. 
 
+/** Do reconstruction */
 void 
 Reconstruct()
 {
-   AliReconstruction rec;   
-   rec.SetRunLocalReconstruction("FMD");
-   rec.SetRunVertexFinder(kFALSE);
-   rec.SetRunTracking(kFALSE); 
-   rec.SetFillESD(""); 
-   rec.SetInput("./");
-   rec.Run(); 
+  // AliLog::SetModuleDebugLevel("FMD", 1);
+  AliReconstruction rec;   
+  rec.SetRunLocalReconstruction("FMD");
+  rec.SetRunVertexFinder(kFALSE);
+  rec.SetRunTracking(""); 
+  rec.SetFillESD("FMD"); 
+  rec.SetInput("./");
+  rec.Run(); 
 }
 
 //