]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/FORWARD/analysis2/CentralAODConfig.C
corrected obvious typo. which value to chose between 0.045 and 0.050 is a bit matter...
[u/mrichter/AliRoot.git] / PWG2 / 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 pwg2_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  * @ingroup pwg2_forward_aod
19  */
20 void
21 CentralAODConfig(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 //