]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/macros/TestEMCALReconstruction.C
track matching macros from Alberto
[u/mrichter/AliRoot.git] / EMCAL / macros / TestEMCALReconstruction.C
CommitLineData
90cf79b3 1/*
2
3Simple macro to test EMCAL Reconstruction
4
5J.L. Klay
6LLNL
7
8*/
9
10
11void TestEMCALReconstruction(Int_t nev =3) {
12
13 AliReconstruction rec;
14
15 TStopwatch timer;
16 timer.Start();
17 rec.SetRunTracking("");
18 rec.SetRunVertexFinder(kFALSE);
19 //calls local reconstruction of EMCAL and filling of ESD
20 rec.SetRunLocalReconstruction("EMCAL"); //only do emcal
21 rec.SetFillESD("EMCAL");
22 //Start at event 1, not event 0, and do all the rest...
23 rec.Run(0,-1);
24 timer.Stop();
25 timer.Print();
26
27}