]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/runReconstruction.C
READMErec.txt updated.
[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
e54bf126 18/// \ingroup macros
19/// \file runReconstruction.C
20/// \brief Macro for running reconstruction
21///
22/// Macro extracted from the MUON test script
23///
24/// \author Laurent Aphecetche
4d717204 25
26#if !defined(__CINT__) || defined(__MAKECINT__)
3304fa09 27#include "AliMUONReconstructor.h"
28#include "AliMUONRecoParam.h"
15d30ed4 29#include "AliRecoParam.h"
bde793f3 30#include "AliCDBManager.h"
bde793f3 31#include "AliTracker.h"
32#include "AliReconstruction.h"
33#include <TRandom.h>
3304fa09 34//#include <TObjectTable.h>
4d717204 35#endif
36
745f6baf 37void runReconstruction(int seed, const char* input, const char* recoptions)
4d717204 38{
15381c8b 39 AliCDBManager* man = AliCDBManager::Instance();
162637e4 40 man->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
3304fa09 41
4d717204 42 gRandom->SetSeed(seed);
3304fa09 43
4d717204 44 AliReconstruction* MuonRec = new AliReconstruction("galice.root");
45 MuonRec->SetInput(input);
46 MuonRec->SetRunVertexFinder(kFALSE);
47 MuonRec->SetRunLocalReconstruction("MUON");
48 MuonRec->SetRunTracking("MUON");
49 MuonRec->SetFillESD("");
50 MuonRec->SetLoadAlignData("MUON");
51 MuonRec->SetNumberOfEventsPerFile(1000);
52 MuonRec->SetOption("MUON",recoptions);
13eed0d4 53 MuonRec->SetRunQA("MUON:ALL");
4e25ac79 54 MuonRec->SetQAWriteExpert(AliQAv1::kMUON);
913f1b43 55 // uncomment the following lines if you want to set custom RecoParam
56 // instead of getting them from the OCDB
13eed0d4 57 // AliMUONRecoParam *muonRecoParam = AliMUONRecoParam::GetLowFluxParam();
58 // muonRecoParam->SaveFullClusterInESD(kTRUE,100.);
59 // MuonRec->SetRecoParam("MUON",muonRecoParam);
913f1b43 60
4d717204 61 MuonRec->Run();
3304fa09 62
4d717204 63 delete MuonRec;
3304fa09 64
4d717204 65 //gObjectTable->Print();
66}