From: cholm Date: Tue, 26 Apr 2011 20:18:25 +0000 (+0000) Subject: Central AOD configuration script X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=9cdb4dbf6cf510cc27e19e94fd840d742beca85d;p=u%2Fmrichter%2FAliRoot.git Central AOD configuration script --- diff --git a/PWG2/FORWARD/analysis2/CentralAODConfig.C b/PWG2/FORWARD/analysis2/CentralAODConfig.C new file mode 100644 index 00000000000..f374c409487 --- /dev/null +++ b/PWG2/FORWARD/analysis2/CentralAODConfig.C @@ -0,0 +1,36 @@ +/** + * @file CentralAODConfig.C + * @author Christian Holm Christensen + * @date Tue Apr 26 22:10:18 2011 + * + * @brief + * + * + * @ingroup pwg2_forward_scripts_tasks + */ +/** + * Configuration script for central multiplicity task. + * + * You can copy this to your working directory or to some other + * directory up-front in your ROOT macro path, and edit it to suit your + * needs. + * + * @ingroup pwg2_forward_aod + */ +void +CentralAODConfig(AliCentralMultiplicityTask* task) +{ + + // --- Set options on task ----------------------------------------- + // Whether to do correction for secondaries + task->SetUseSecondary(true); + // Whether to do correction for acceptance + task->SetUseAcceptance(true); + // task->GetInspector().SetDebug(4); + + // task->GetManager().SetSecMapPath("."); +} + +// +// EOF +//