Skip to content

Commit 79fba2a

Browse files
author
Koushik Barai
committed
PWGDQ: fix PbPb bottomonia generator parameterization
1 parent db41cc6 commit 79fba2a

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

MC/config/PWGDQ/external/generator/GeneratorBottomonia.C

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,21 @@ class O2_GeneratorParamUpsilon1SFwdY_PbPb5TeV : public GeneratorTGenerator
315315
}
316316
void SetNSignalPerEvent(Int_t nsig) { paramUpsilon1S->SetNumberParticles(nsig); }
317317

318+
static Double_t PtUpsilon1SPbPb5TeV(const Double_t* px, const Double_t* /*dummy*/)
319+
{
320+
// Upsilon(1S) pT in PbPb at 5.36 TeV
321+
// Parameterized from pp LHCb 13 TeV (arXiv:1804.09214) scaled to PbPb 5.36 TeV
322+
// NOTE: should be updated once dedicated ALICE PbPb 5.36 TeV tuning is available
323+
Double_t x = *px;
324+
Float_t p0, p1, p2, p3;
325+
p0 = 3.68558e+02;
326+
p1 = 9.15000e+00; // softer than pp 13TeV (p1=10.31) reflecting PbPb medium
327+
p2 = 1.62309e+00;
328+
p3 = 4.84709e+00;
329+
return (p0 * x / TMath::Power(1. + TMath::Power(x / p1, p2), p3));
330+
}
331+
332+
318333
//-------------------------------------------------------------------------//
319334
static Double_t YUpsilon1SPbPb5TeV(const Double_t* py, const Double_t* /*dummy*/)
320335
{

0 commit comments

Comments
 (0)