]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGLF/FORWARD/analysis2/MakeAOD.C
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[u/mrichter/AliRoot.git] / PWGLF / FORWARD / analysis2 / MakeAOD.C
1 /** 
2  * @defgroup pwglf_forward_scripts_makers Maker scripts 
3  *
4  * Scripts to make parts of the analysis.  Users can execute these directly. 
5  *
6  * @ingroup pwglf_forward_scripts
7  */
8 //====================================================================
9 /**
10  * @file   MakeAOD.C
11  * @author Christian Holm Christensen <cholm@dalsgaard.hehi.nbi.dk>
12  * @date   Wed Mar 23 09:40:10 2011
13  * 
14  * @brief  Run first pass of the analysis - AOD generation
15  * 
16  * @ingroup pwglf_forward_scripts_makers
17  */
18 //====================================================================
19 /** 
20  * Run first pass of the analysis - that is read in ESD and produce AOD
21  * 
22  * @param name       Name of train - free form.  This will be the name
23  *                   of the output directory if the plug-in is used 
24  * @param options    Options string
25  * @param url        Execution and input URL
26  *
27  * @ingroup pwglf_forward_aod
28  */
29 void MakeAOD(TString     name       = "aod", 
30              TString     url        = "help",
31              TString     options    = "help")
32 {
33   gROOT->LoadMacro("$ALICE_ROOT/PWGLF/FORWARD/analysis2/trains/MakeTrain.C");
34
35   MakeTrain(name, "MakeAODTrain", url, options);
36 }
37 //
38 // EOF
39 //