]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/runReconstruction.C
In mapping:
[u/mrichter/AliRoot.git] / MUON / runReconstruction.C
index 74939a33a607d9a676d587173ee7fe5dc057dcfe..45713fb0eeb67aa1ea5e1fc69945ddf7347fda5a 100644 (file)
 
 /* $Id$ */
 
-// Macro extracted from MUON test script
-// By Laurent Aphecetche
+/// \ingroup macros
+/// \file runReconstruction.C
+/// \brief Macro for running reconstruction
+///
+/// Macro extracted from the MUON test script
+///
+/// \author Laurent Aphecetche
 
 #if !defined(__CINT__) || defined(__MAKECINT__)
 #include "AliMUONReconstructor.h"
 #include "AliMUONRecoParam.h"
+#include "AliRecoParam.h"
 #include "AliCDBManager.h"
 #include "AliMagFMaps.h"
 #include "AliTracker.h"
@@ -52,8 +58,14 @@ void runReconstruction(int seed, const char* input, const char* recoptions)
   MuonRec->SetWriteAOD();
   
   AliMUONRecoParam *muonRecoParam = AliMUONRecoParam::GetLowFluxParam();
-  AliMUONReconstructor::SetRecoParam(muonRecoParam);
+  //muonRecoParam->CombineClusterTrackReco(kTRUE);
+  //muonRecoParam->SaveFullClusterInESD(kTRUE,100.);
+  //muonRecoParam->SetClusteringMode("PEAKFIT");
+  //muonRecoParam->SetClusteringMode("PEAKCOG");
   muonRecoParam->Print("FULL");
+  AliMUONReconstructor::SetRecoParam(muonRecoParam);
+  
+  MuonRec->SetRunQA("MUON:ALL");
   
   MuonRec->Run();
   
@@ -61,4 +73,3 @@ void runReconstruction(int seed, const char* input, const char* recoptions)
   
   //gObjectTable->Print();
 }
-