Skip to content

Commit

Permalink
Merge pull request #536 from michelepennisi/mydev
Browse files Browse the repository at this point in the history
PWGDQ: Adding generator custom for high mass dimuon
  • Loading branch information
gconesab authored Feb 6, 2023
2 parents 1a936f6 + 7e6b015 commit f012c98
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions MC/CustomGenerators/PWGDQ/Pythia8_Monash_HighMassDimuon.C
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
AliGenerator *GeneratorCustom(TString opt = "")

{

AliGenPythiaPlus* pyth = (AliGenPythiaPlus*)GeneratorPythia8(kPythia8Tune_Monash2013);

pyth->SetProcess(kPyHeavyFlavppMNRwmi);

pyth->SetCutOnChild(1);
pyth->SetPdgCodeParticleforAcceptanceCut(13);
pyth->SetChildYRange(-4.1, -2.4);
pyth->SetChildPtRange(0, 10000.);

pyth->SetStackFillOpt(AliGenPythiaPlus::kHeavyFlavor);

return pyth;

}

0 comments on commit f012c98

Please sign in to comment.