]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG4/macros/AddTaskDiJets.C
Added an output container to the DiJet task
[u/mrichter/AliRoot.git] / PWG4 / macros / AddTaskDiJets.C
CommitLineData
0651dd18 1AliAnalysisTaskDiJets *AddTaskDiJets()\r
2{\r
4e1c5c7c 3// Creates a dijet task, configures it and adds it to the analysis manager.\r
0651dd18 4\r
5 // Get the pointer to the existing analysis manager via the static access method.\r
6 //==============================================================================\r
7 AliAnalysisManager *mgr = AliAnalysisManager::GetAnalysisManager();\r
8 if (!mgr) {\r
9 ::Error("AddTaskJets", "No analysis manager to connect to.");\r
10 return NULL;\r
4e1c5c7c 11 }\r
12\r
0651dd18 13 // Check the analysis type using the event handlers connected to the analysis manager.\r
14 //==============================================================================\r
15 if (!mgr->GetInputEventHandler()) {\r
16 ::Error("AddTaskDiJets", "This task requires an input event handler");\r
17 return NULL;\r
18 }\r
19\r
20 // Create the task and configure it.\r
21 //===========================================================================\r
4e1c5c7c 22\r
0651dd18 23 AliAnalysisTaskDiJets *dijetana = new AliAnalysisTaskDiJets("DiJetAnalysis");\r
4e1c5c7c 24 dijetana->SetDebugLevel(10);\r
0651dd18 25 mgr->AddTask(dijetana);\r
4e1c5c7c 26\r
27 AliAnalysisDataContainer *cout_dijet = mgr->CreateContainer("DiJet", TList::Class(),AliAnalysisManager::kOutputContainer,\r
28 Form("%s:PWG4_DiJet",AliAnalysisManager::GetCommonFileName()));\r
29\r
0651dd18 30 // Create ONLY the output containers for the data produced by the task.\r
31 // Get and connect other common input/output containers via the manager as below\r
32 //==============================================================================\r
33 mgr->ConnectInput (dijetana, 0, mgr->GetCommonInputContainer());\r
34 mgr->ConnectOutput (dijetana, 0, mgr->GetCommonOutputContainer());\r
4e1c5c7c 35 mgr->ConnectOutput (dijetana, 1, cout_dijet);\r
36\r
0651dd18 37 return dijetana;\r
38}\r