]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Making AZ cluster finder and Kalman tracking the default methods (see README how...
authormartinez <martinez@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 28 Nov 2005 16:27:10 +0000 (16:27 +0000)
committermartinez <martinez@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 28 Nov 2005 16:27:10 +0000 (16:27 +0000)
MUON/AliMUONReconstructor.cxx
MUON/README

index 1d5f15fa59101abf7a6d5c63e5135aa1b1792a70..e35fd3cc4b5806fe22923c46eddd88ef24da3808 100644 (file)
@@ -64,14 +64,14 @@ void AliMUONReconstructor::Reconstruct(AliRunLoader* runLoader) const
 // passing fLoader as argument, could be avoided ???
   AliMUONTrackReconstructor* recoEvent = new AliMUONTrackReconstructor(loader);
   AliMUONData* dataEvent = recoEvent->GetMUONData();
-  if (strstr(GetOption(),"Kalman")) recoEvent->SetTrackMethod(2); // Kalman
+  if (strstr(GetOption(),"Original")) recoEvent->SetTrackMethod(1); // Original tracking
   else if (strstr(GetOption(),"Combi")) recoEvent->SetTrackMethod(3); // Combined cluster / track
-  else recoEvent->SetTrackMethod(1); // original
+  else recoEvent->SetTrackMethod(2); // Kalman
 
   AliMUONClusterReconstructor* recoCluster = new AliMUONClusterReconstructor(loader);
   AliMUONData* dataCluster = recoCluster->GetMUONData();
   AliMUONClusterFinderVS *recModel = recoCluster->GetRecoModel();
-  if (strstr(GetOption(),"AZ") || strstr(GetOption(),"Combi")) {
+  if (!strstr(GetOption(),"VS")) {
     recModel = (AliMUONClusterFinderVS*) new AliMUONClusterFinderAZ();
     recoCluster->SetRecoModel(recModel);
   }
index 4ebe8c122f4c2b6ddc3bb5271d3a45ac4e3cceec..3dd770b7f8d3b1823e6bf605b2cfd6faab133771 100644 (file)
@@ -197,8 +197,10 @@ MuonRec.SetRunVertexFinder(kFALSE);
 MuonRec.SetRunLocalReconstruction("MUON");
 MuonRec.SetRunTracking("");
 MuonRec.SetFillESD("MUON");
-MuonRec.SetOption("MUON", "AZ Kalman"); // to use AZ clustering and Kalman filter
-MuonRec.Run();
+MuonRec.SetOption("MUON", "VS"); // to use VS cluster finder
+// MuonRec.SetOption("MUON", "VS Original"); // to run VS and original track finder
+// MuonRec.SetOption("MUON", "Combi"); // to run combined cluster / track finder
+MMuonRec.Run();
 .q
 EOF