]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGLF/FORWARD/analysis2/CentralAODConfig.C
Updates for better drawings
[u/mrichter/AliRoot.git] / PWGLF / FORWARD / analysis2 / CentralAODConfig.C
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  * 
9  * @ingroup pwglf_forward_scripts_tasks
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  * 
18  * @param task  Task to configure 
19  *
20  * @ingroup pwglf_forward_aod
21  */
22 void
23 CentralAODConfig(AliCentralMultiplicityTask* task)
24 {
25
26   // --- Set options on task -----------------------------------------
27   // Whether to do correction for secondaries
28   task->SetUseSecondary(true);
29   // Whether to do correction for acceptance
30   task->SetUseAcceptance(true);
31   // task->GetInspector().SetDebug(4);
32
33   // task->GetManager().SetSecMapPath(".");
34 }
35
36 //
37 // EOF
38 //