Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix remaining luminosity combinations #26

Merged
merged 4 commits into from
May 15, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/Vlumifns_LHApdf.C
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,9 @@ double qq_12_lumi(const pdfArray& X1, const pdfArray& X2, collider c){
if (c==pp){ return temp; }
else if (c==ppbar) { return - temp; }
else if(c==piso) {
// FIXME: here are strange, charm and bottom (anti-)quark PDFs missing
return - (
vuvu * (X1.u - X1.ubar)
cschwan marked this conversation as resolved.
Show resolved Hide resolved
vuvu * (X1.u - X1.ubar) // FIXME: this line looks wrong, there are no PDFs for the second parton; wrong parentheses?
+ vuvd * ( (X1.u - X1.ubar + X1.d - X1.dbar)
+ vdvd * (X1.d - X1.dbar))
* (X2.u - X2.ubar + X2.d - X2.dbar)/2. );
Expand Down