]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/FEMTOSCOPY/macros/AddTaskFemto.C
Select configuration via argumen
[u/mrichter/AliRoot.git] / PWG2 / FEMTOSCOPY / macros / AddTaskFemto.C
CommitLineData
782d4b24 1//=============================================================================
2//
3// *** AddTaskFemto.C ***
4//
5// This macro initialize a complete AnalysisTask object for femtoscopy.
6//
7//=============================================================================
8
817751c7 9AliAnalysisTaskFemto *AddTaskFemto(const char *configMacroName="ConfigFemtoAnalysis.C")
782d4b24 10{
11// Creates a proton analysis task and adds it to the analysis manager.
12
13 // A. Get the pointer to the existing analysis manager via the static access method.
14 //==============================================================================
15 AliAnalysisManager *mgr = AliAnalysisManager::GetAnalysisManager();
16 if (!mgr) {
17 Error("AddTaskFemto", "No analysis manager to connect to.");
18 return NULL;
19 }
20
21 // B. Check the analysis type using the event handlers connected to the analysis
22 // manager. The availability of MC handler cann also be checked here.
23 //==============================================================================
24 if (!mgr->GetInputEventHandler()) {
25 ::Error("AddTaskFemto", "This task requires an input event handler");
26 return NULL;
27 }
28 TString type = mgr->GetInputEventHandler()->GetDataType(); // can be "ESD" or "AOD"
29
30 // C. Create the task, add it to manager.
31 //===========================================================================
d346f8fe 32// gSystem->SetIncludePath("-I$ROOTSYS/include -I./PWG2AOD/AOD -I./PWG2femtoscopy/FEMTOSCOPY/AliFemto -I./PWG2femtoscopyUser/FEMTOSCOPY/AliFemtoUser -I$ALICE_ROOT/include");
817751c7 33
d346f8fe 34 if (TProofMgr::GetListOfManagers()->GetEntries()) {
817751c7 35 if (dynamic_cast<TProofLite *> gProof) {
36 char *macrocommand[10000];
37 sprintf(macrocommand, ".L %s", configMacroName);
38 gProof->Exec(macrocommand);
39 }
d346f8fe 40 else
817751c7 41 gProof->Load(configMacroName);
d346f8fe 42 }
06b454c7 43 // gROOT->LoadMacro("ConfigFemtoAnalysis.C++");
44
817751c7 45 AliAnalysisTaskFemto *taskfemto = new AliAnalysisTaskFemto("TaskFemto",configMacroName);
782d4b24 46 mgr->AddTask(taskfemto);
47
48 // D. Configure the analysis task. Extra parameters can be used via optional
49 // arguments of the AddTaskXXX() function.
50 //===========================================================================
51
52 // E. Create ONLY the output containers for the data produced by the task.
53 // Get and connect other common input/output containers via the manager as below
54 //==============================================================================
55 AliAnalysisDataContainer *cout_femto = mgr->CreateContainer("femtolist", TList::Class(),
56 AliAnalysisManager::kOutputContainer,"Femto.ESD.root");
57
58 mgr->ConnectInput(taskfemto, 0, mgr->GetCommonInputContainer());
59 mgr->ConnectOutput(taskfemto, 0, cout_femto);
60
61 // Return task pointer at the end
62 return taskfemto;
63}