]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/FORWARD/analysis2/DrawAODSummary.C
Fix some documentation issues
[u/mrichter/AliRoot.git] / PWGLF / FORWARD / analysis2 / DrawAODSummary.C
CommitLineData
063a7579 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 */
063a7579 10//____________________________________________________________________
8449e3e0 11void DrawAODSummary(const char* fname="forward.root", UShort_t what=0x27F)
063a7579 12{
73b32206 13 gROOT->SetMacroPath(Form("%s:$ALICE_ROOT/PWGLF/FORWARD/analysis2/scripts",
14 gROOT->GetMacroPath()));
15 gROOT->LoadMacro("SummaryAODDrawer.C++g");
063a7579 16
73b32206 17 SummaryAODDrawer d;
18 d.Run(fname, what);
063a7579 19}
73b32206 20//
21// EOF
22//