]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/runReconstruction.C
Now uses combined tracking (Laurent)
[u/mrichter/AliRoot.git] / MUON / runReconstruction.C
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17
18 // Macro extracted from MUON test script
19 // By Laurent Aphecetche
20
21 #if !defined(__CINT__) || defined(__MAKECINT__)
22 #include "AliMUONReconstructor.h"
23 #include "AliMUONRecoParam.h"
24 #include "AliCDBManager.h"
25 #include "AliMagFMaps.h"
26 #include "AliTracker.h"
27 #include "AliReconstruction.h"
28 #include <TRandom.h>
29 //#include <TObjectTable.h>
30 #endif
31
32 void runReconstruction(int seed, const char* input, const char* recoptions)
33
34   AliCDBManager* man = AliCDBManager::Instance();
35   man->SetDefaultStorage("local://$ALICE_ROOT");
36   
37   gRandom->SetSeed(seed);
38   
39   AliMagFMaps* field = new AliMagFMaps("Maps","Maps", 1, 1., 10., AliMagFMaps::k5kG);
40   AliTracker::SetFieldMap(field, kFALSE);
41   
42   AliReconstruction* MuonRec = new AliReconstruction("galice.root");
43   MuonRec->SetInput(input);
44   MuonRec->SetRunVertexFinder(kFALSE);
45   MuonRec->SetRunLocalReconstruction("MUON");
46   MuonRec->SetRunTracking("MUON");
47   MuonRec->SetFillESD("");
48   MuonRec->SetLoadAlignData("MUON");
49   MuonRec->SetNumberOfEventsPerFile(1000);
50   MuonRec->SetOption("MUON",recoptions);
51   //  MuonRec->SetEventRange(319,319);
52   MuonRec->SetWriteAOD();
53   
54   AliMUONRecoParam *muonRecoParam = AliMUONRecoParam::GetLowFluxParam();
55   muonRecoParam->CombineClusterTrackReco(kTRUE);
56
57   AliMUONReconstructor::SetRecoParam(muonRecoParam);
58   muonRecoParam->Print("FULL");
59   
60   MuonRec->Run();
61   
62   delete MuonRec;
63   
64   //gObjectTable->Print();
65 }
66