]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGLF/FORWARD/analysis2/DrawAODSummary.C
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWGLF / FORWARD / analysis2 / DrawAODSummary.C
1 /**
2  * @file   DrawAODSummary.C
3  * @author Christian Holm Christensen <cholm@master.hehi.nbi.dk>
4  * @date   Tue Oct 30 09:47:30 2012
5  * 
6  * @brief  Script to draw summary of AOD pass into a PDF 
7  * 
8  * 
9  */
10 //____________________________________________________________________
11 void DrawAODSummary(const char* fname="forward.root", UShort_t what=0x27F)
12 {
13   gROOT->SetMacroPath(Form("%s:$ALICE_ROOT/PWGLF/FORWARD/analysis2/scripts",
14                            gROOT->GetMacroPath()));
15   gROOT->LoadMacro("SummaryAODDrawer.C+g");
16   
17   SummaryAODDrawer d;
18   d.Run(fname, what);
19 }
20 //
21 // EOF
22 //