]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGLF/FORWARD/analysis2/MakeFMDEventPlane.C
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[u/mrichter/AliRoot.git] / PWGLF / FORWARD / analysis2 / MakeFMDEventPlane.C
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  *
24  * @param name       Name of train - free form.  This will be the name
25  *                   of the output directory if the plug-in is used 
26  * @param options    Options string
27  * @param url        Execution and input URL
28  *
29  * @ingroup pwglf_forward_aod
30  */
31 void MakeFMDEventPlane(TString     name       = "aod", 
32                        TString     url        = "help",
33                        TString     options    = "help")
34 {
35   gROOT->LoadMacro("$ALICE_ROOT/PWGLF/FORWARD/analysis2/trains/MakeTrain.C");
36
37   MakeTrain(name, "MakeFMDEventPlaneTrain", url, options);
38 }
39 //----------------------------------------------------------------
40 //
41 // EOF
42 //