]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/runReconstruction.C
Moving call to AliCDBManager::SetRun after setting the default
[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 run, int seed, const char* input, const char* recoptions)
33
34   AliCDBManager* man = AliCDBManager::Instance();
35   man->SetDefaultStorage("local://$ALICE_ROOT");
36   AliCDBManager::Instance()->SetRun(run);
37   
38   gRandom->SetSeed(seed);
39   
40   AliMagFMaps* field = new AliMagFMaps("Maps","Maps", 1, 1., 10., AliMagFMaps::k5kG);
41   AliTracker::SetFieldMap(field, kFALSE);
42   
43   AliReconstruction* MuonRec = new AliReconstruction("galice.root");
44   MuonRec->SetInput(input);
45   MuonRec->SetRunVertexFinder(kFALSE);
46   MuonRec->SetRunLocalReconstruction("MUON");
47   MuonRec->SetRunTracking("MUON");
48   MuonRec->SetFillESD("");
49   MuonRec->SetLoadAlignData("MUON");
50   MuonRec->SetNumberOfEventsPerFile(1000);
51   MuonRec->SetOption("MUON",recoptions);
52   //  MuonRec->SetEventRange(319,319);
53   MuonRec->SetWriteAOD();
54   
55   AliMUONRecoParam *muonRecoParam = AliMUONRecoParam::GetLowFluxParam();
56   AliMUONReconstructor::SetRecoParam(muonRecoParam);
57   muonRecoParam->Print("FULL");
58   
59   MuonRec->Run();
60   
61   delete MuonRec;
62   
63   //gObjectTable->Print();
64 }
65