]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGLF/FORWARD/analysis2/MakedNdeta.C
Updates
[u/mrichter/AliRoot.git] / PWGLF / FORWARD / analysis2 / MakedNdeta.C
1 /**
2  * @file   MakedNdeta.C
3  * @author Christian Holm Christensen <cholm@dalsgaard.hehi.nbi.dk>
4  * @date   Wed Mar 23 09:41:56 2011
5  * 
6  * @brief  Run second pass analysis - make @f$ dN/d\eta@f$
7  * 
8  * @ingroup pwglf_forward_scripts_makers
9  */
10 //====================================================================
11 /** 
12  * Run second pass analysis - make @f$ dN/d\eta@f$
13  * 
14  * @param name       Name of train - free form.  This will be the name
15  *                   of the output directory if the plug-in is used 
16  * @param options    Options string
17  * @param url        Execution and input URL
18  *
19  * @ingroup pwglf_forward_aod
20  */
21 void MakedNdeta(TString     name       = "aod", 
22                 TString     url        = "help",
23                 TString     options    = "help")
24 {
25   gROOT->LoadMacro("$ALICE_ROOT/PWGLF/FORWARD/analysis2/trains/MakeTrain.C");
26
27   MakeTrain(name, "MakedNdetaTrain", url, options);
28 }
29 //
30 // EOF
31 //