]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/macros/Embed/Rec.C
Added D0toKpi
[u/mrichter/AliRoot.git] / PHOS / macros / Embed / Rec.C
CommitLineData
70895cc0 1void Rec(const Int_t debLevel=0)
2{
3
4 AliLog::SetGlobalDebugLevel(debLevel);
5 AliReconstruction rec ;
6 rec.SetRunReconstruction("PHOS") ;
7 rec.SetRunTracking("PHOS") ;
8 rec.SetRunVertexFinder(kFALSE) ;
9 rec.SetFillESD("PHOS") ;
10
11 //Uncomment the following lines to use rec. parameters
12 //other than default ones.
13 // AliPHOSRecoParam* recEmc = new AliPHOSRecoParamEmc();
14 // recEmc->SetSubtractPedestals(kTRUE);
15 // recEmc->SetMinE(0.01);
16 // recEmc->SetClusteringThreshold(0.01);
17 // AliPHOSReconstructor::SetRecoParamEmc(recEmc);
18
19 rec.Run();
20
21}