]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGPP/QA/Tracking/ExpertQA/makePeriodPlots.C
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWGPP / QA / Tracking / ExpertQA / makePeriodPlots.C
1 makePeriodPlots( const char* mergedQAfile, const char *periodName ){
2 //what do I do?
3   gSystem->AddIncludePath("-I$ALICE_ROOT/include");
4   //gROOT->LoadMacro("$ALICE_ROOT/PWGPP/QA/Tracking/ExpertQA/AliHighPtTreeAnalysis.cxx++");
5   gROOT->LoadMacro("AliHighPtTreeAnalysis.cxx++");
6
7   AliHighPtTreeAnalysis *a = new AliHighPtTreeAnalysis();
8     a->ConnectGenericHistos( mergedQAfile );
9     a->SetPeriodName( periodName );
10     a->SetMakeFitPerfomancePlots(kTRUE);
11     a->RunPeriod();
12 }