]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/runReconstruction.C
Removing unused class.
[u/mrichter/AliRoot.git] / MUON / runReconstruction.C
CommitLineData
4d717204 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__)
3304fa09 22#include "AliMUONReconstructor.h"
23#include "AliMUONRecoParam.h"
bde793f3 24#include "AliCDBManager.h"
25#include "AliMagFMaps.h"
26#include "AliTracker.h"
27#include "AliReconstruction.h"
28#include <TRandom.h>
3304fa09 29//#include <TObjectTable.h>
4d717204 30#endif
31
745f6baf 32void runReconstruction(int seed, const char* input, const char* recoptions)
4d717204 33{
15381c8b 34 AliCDBManager* man = AliCDBManager::Instance();
35 man->SetDefaultStorage("local://$ALICE_ROOT");
3304fa09 36
4d717204 37 gRandom->SetSeed(seed);
3304fa09 38
4d717204 39 AliMagFMaps* field = new AliMagFMaps("Maps","Maps", 1, 1., 10., AliMagFMaps::k5kG);
40 AliTracker::SetFieldMap(field, kFALSE);
3304fa09 41
4d717204 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);
102edf65 52 MuonRec->SetWriteAOD();
3304fa09 53
54 AliMUONRecoParam *muonRecoParam = AliMUONRecoParam::GetLowFluxParam();
e6b6754d 55 muonRecoParam->CombineClusterTrackReco(kTRUE);
56
3304fa09 57 AliMUONReconstructor::SetRecoParam(muonRecoParam);
58 muonRecoParam->Print("FULL");
59
4d717204 60 MuonRec->Run();
3304fa09 61
4d717204 62 delete MuonRec;
3304fa09 63
4d717204 64 //gObjectTable->Print();
65}
66