]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/RESONANCES/macros/mini/ConfigPhiMC.C
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWGLF / RESONANCES / macros / mini / ConfigPhiMC.C
CommitLineData
03d23846 1//
2// *** Configuration script for phi->KK analysis with 2010 runs ***
3//
4// A configuration script for RSN package needs to define the followings:
5//
6// (1) decay tree of each resonance to be studied, which is needed to select
7// true pairs and to assign the right mass to all candidate daughters
8// (2) cuts at all levels: single daughters, tracks, events
9// (3) output objects: histograms or trees
10//
caef2e3c 11Bool_t ConfigPhiMC
12(
13 AliRsnMiniAnalysisTask *task,
14 Bool_t isPP,
15 const char *suffix,
16 AliRsnCutSet *cutsPair
17)
03d23846 18{
caef2e3c 19 // manage suffix
20 if (strlen(suffix) > 0) suffix = Form("_%s", suffix);
21
03d23846 22 //
23 // -- Define track cuts -------------------------------------------------------------------------
24 //
25
26 /*** EMPTY FOR TRUE PAIRS COMPUTATION ***/
27
28 //
29 // -- Values ------------------------------------------------------------------------------------
30 //
31
caef2e3c 32 /* invariant mass */ Int_t imID = task->CreateValue(AliRsnMiniValue::kInvMass, kFALSE);
33 /* transv. momentum */ Int_t ptID = task->CreateValue(AliRsnMiniValue::kPt, kFALSE);
34 /* centrality */ Int_t centID = task->CreateValue(AliRsnMiniValue::kMult, kFALSE);
35
03d23846 36 //
37 // -- Create all needed outputs -----------------------------------------------------------------
38 //
39
caef2e3c 40 TString mode = "HIST";
41 if (!isPP) mode = "SPARSE";
42
03d23846 43 // create output
caef2e3c 44 AliRsnMiniOutput *out = task->CreateOutput(Form("phi_TrueMC%s", suffix), mode.Data(), "MOTHER");
03d23846 45 // selection settings
46 out->SetDaughter(0, AliRsnDaughter::kKaon);
47 out->SetDaughter(1, AliRsnDaughter::kKaon);
48 out->SetMotherPDG(333);
49 out->SetMotherMass(1.019455);
50 // pair cuts
51 out->SetPairCuts(cutsPair);
52 // binnings
53 out->AddAxis(imID, 500, 0.9, 1.4);
caef2e3c 54 out->AddAxis(ptID, 100, 0.0, 10.0);
55 if (!isPP) out->AddAxis(centID, 100, 0.0, 100.0);
03d23846 56
57 return kTRUE;
58}