]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ANALYSIS/runAnalysis.C
Macro to calculate the resolution and the efficiency of chamber(s) (Nicolas)
[u/mrichter/AliRoot.git] / ANALYSIS / runAnalysis.C
CommitLineData
16a89872 1void runAnalysis() {
2 TStopwatch timer;
3 timer.Start();
4
5 gSystem->AddIncludePath("-I\"$ALICE_ROOT/include\"");
6 gSystem->Load("libANALYSIS_NEW.so");
7
8 gROOT->LoadMacro("testEvent.C+");
9 generate();
10 filter_reco();
11
12 timer.Stop();
13 timer.Print();
14}