Skip to content

Commit

Permalink
Merge pull request #3752 from cms-sw/pdfpowhegbb4l
Browse files Browse the repository at this point in the history
exception for pdf variation check for bb4l
  • Loading branch information
efeyazgan authored Aug 23, 2024
2 parents ef22433 + 32761f0 commit f70a54c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/utils/request_fragment_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@ def root_requests_from_ticket(ticket_prepid, include_docs=False):
if str(pw_pdf+1) in line: pdf_var_check1 += 1
if not (scale_var_check0 == 1 and scale_var_check1 == 9):
warnings.append("There may be a problem with scale variations. Please check pwg-rwl.dat")
if not (pdf_var_check0 > 0 and pdf_var_check1 >= 1 and 'bb4l' not in dn.lower()):
if not (pdf_var_check0 > 0 and pdf_var_check1 >= 1) and 'bbllnunu' not in dn.lower():
errors.append("There may be a problem with PDF variations. Please check pwg-rwl.dat")
if bornonly == 1:
bornonly_frag_check = 0
Expand Down

0 comments on commit f70a54c

Please sign in to comment.