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