]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FMD/Reconstruct.C
ZeroSuppressionCompnent as for the TPC Krypton run (Kenneth)
[u/mrichter/AliRoot.git] / FMD / Reconstruct.C
index 4f6cfbbb284a9107a98a9911fee33ca6db376fc6..ca14d24276690ec7d9dccacf5202493efe79d55c 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()
 {
-  AliLog::SetModuleDebugLevel("FMD", 2);
+  // Debug the FMD.
+  // AliLog::SetModuleDebugLevel("FMD", 1);
+
+  // To reconstruct raw data from FDR-I, please enable below lines: 
+  // AliFMDParameters::Instance()->UseRcuTrailer(false);
+  // AliFMDParameters::Instance()->UseCompleteHeader(false);
+  
   AliReconstruction rec;   
   rec.SetRunLocalReconstruction("FMD");
   rec.SetRunVertexFinder(kFALSE);
   rec.SetRunTracking(""); 
   rec.SetFillESD("FMD"); 
-  // rec.SetInput("./");
+  rec.SetInput("./");
   rec.Run(); 
 }