Skip to content

Commit

Permalink
Merge pull request #452 from bianchil/master
Browse files Browse the repository at this point in the history
Custom Generator for StrInj 2010 PbPb pass3
  • Loading branch information
gconesab authored Dec 22, 2020
2 parents db2f478 + 910e42c commit 6995e03
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions MC/CustomGenerators/PWGLF/Hijing_Str_pbpb2010.C
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
AliGenerator *GeneratorCustom(TString opt = "")
{

AliGenCocktail *ctl = (AliGenCocktail*) GeneratorCocktail("Hijing_Str_pbpb2010");

//underlying hijing generator
AliGenerator *hij = GeneratorHijing();
ctl->AddGenerator(hij, "Hijing", 1.);

//define and add signal generators
// "a" option is large stat, mild inj., rapidity-flat
// "b" option is limited stat, heavy inj., rapidity flat
// "c" option is limited stat, heavy inj., theta flat (bugged one)

int ninj[2][7] = {{1,1,1,5,5,2,2},{0,0,0,30,30,30,30}}; //2 inj. strategies, 7 particles
float ptrange[7][2] = {{4,12},{4,12},{4,12},{0.5,12},{0.5,12},{0.5,10},{0.5,10}}; //7 particles, low and high limits of pT injection
int pdgcodes[7] = {310,3122,-3122,3312,-3312,3334,-3334}; //kk0s, klam, kalam, kxim, kxip, komm, komp
int iinj = 0, startpart=0;
if(opt.EqualTo("b")||opt.EqualTo("c")) {
iinj = 1;
startpart = 3;
}

AliGenBox *injgen[7];
for(int i=startpart; i<7; i++) {
injgen[i] = new AliGenBox(ninj[iinj][i]);
injgen[i]->SetPart(pdgcodes[i]);
injgen[i]->SetPtRange(ptrange[i][0],ptrange[i][1]);
if(opt.EqualTo("a")||opt.EqualTo("b")) injgen[i]->SetYRange(-0.6,0.6);
else injgen[i]->SetThetaRange(45,135);//this defines theta ranges, but also sets the bit kThetaRange which in AliGenBox sets flat theta
ctl->AddGenerator(injgen[i], Form("Injector pdg:%d",pdgcodes[i]), 1.);
}

return ctl;
}

0 comments on commit 6995e03

Please sign in to comment.