]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/FORWARD/analysis2/MakeFMDEventPlane.C
Maker scripts now use TrainSetup exclusively.
[u/mrichter/AliRoot.git] / PWGLF / FORWARD / analysis2 / MakeFMDEventPlane.C
CommitLineData
9632bb06 1/**
2 * @file MakeFlow.C
3 * @author Alexander Hansen
4 * @date Wed Mar 23 12:11:33 2011
5 *
6 * @brief
7 *
8 * @ingroup pwglf_forward_scripts_makers
9 *
10 */
11/**
12 * Script to analyse AOD input for flow
13 *
14 * Takes either a single (AOD) .root file as input or a .txt
15 * The .txt file is expected to contain the path to the files
16 * from the current directory or the absolute path.
17 *
18 * @par Inputs:
19 *
20 *
21 * @par Outputs:
22 * -
23 *
290052e7 24 * @param name Name of train
25 * @param options Options @see RunTrain
26 * @param runs Options @see RunTrain
27 * @param nEvents Number of events to process, negative for all
28 *
9632bb06 29 * @ingroup pwglf_forward_flow
30 */
290052e7 31void MakeFMDEventPlane(TString name = "fmdEP",
32 TString options = "help",
33 TString runs = "",
34 Int_t nEvents = -1)
9632bb06 35{
290052e7 36 if (name.IsNull()) Fatal("MakeFMDEventPlane", "Must specify a name");
37 gROOT->LoadMacro("$ALICE_ROOT/PWGLF/FORWARD/analysis2/trains/RunTrain.C");
9632bb06 38
290052e7 39 RunTrain("MakeFMDEventPlaneTrain", name, options, runs, nEvents);
9632bb06 40}
41//----------------------------------------------------------------
42//
43// EOF
44//