File tree Expand file tree Collapse file tree
MC/config/PWGDQ/external/generator Expand file tree Collapse file tree Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments