]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/FORWARD/analysis2/CentralAODConfig.C
Fixed references from PWG2 -> PWGLF - very efficiently done using ETags.
[u/mrichter/AliRoot.git] / PWGLF / FORWARD / analysis2 / CentralAODConfig.C
CommitLineData
9cdb4dbf 1/**
2 * @file CentralAODConfig.C
3 * @author Christian Holm Christensen <cholm@dalsgaard.hehi.nbi.dk>
4 * @date Tue Apr 26 22:10:18 2011
5 *
6 * @brief
7 *
8 *
bd6f5206 9 * @ingroup pwglf_forward_scripts_tasks
9cdb4dbf 10 */
11/**
12 * Configuration script for central multiplicity task.
13 *
14 * You can copy this to your working directory or to some other
15 * directory up-front in your ROOT macro path, and edit it to suit your
16 * needs.
17 *
bd6f5206 18 * @ingroup pwglf_forward_aod
9cdb4dbf 19 */
20void
21CentralAODConfig(AliCentralMultiplicityTask* task)
22{
23
24 // --- Set options on task -----------------------------------------
25 // Whether to do correction for secondaries
26 task->SetUseSecondary(true);
27 // Whether to do correction for acceptance
28 task->SetUseAcceptance(true);
29 // task->GetInspector().SetDebug(4);
30
31 // task->GetManager().SetSecMapPath(".");
32}
33
34//
35// EOF
36//