Skip to content

Commit

Permalink
Merge pull request #3796 from cms-sw/pdfcheckfix
Browse files Browse the repository at this point in the history
pdf bug fix
  • Loading branch information
efeyazgan authored Nov 6, 2024
2 parents d5710d7 + 07cf1eb commit 070b9ec
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 @@ -1373,7 +1373,7 @@ def root_requests_from_ticket(ticket_prepid, include_docs=False):
warnings.append("The gridpack uses PDF="+str(pw_pdf)+" but not the recommended sets for UL requests: "+str(UL_PDFs_N)+" "+str(UL_PDFs))
if "Run3" in pi:
pdflist_4f_run3_N,pdflist_4f_run3,pdflist_5f_run3_N,pdflist_5f_run3,pdflist_Pb_5f_run3_N,pdflist_Pb_5f_run3=run3_pdf_check(pi)
if (pw_pdf not in pdflist_4f_run3_N) and (pw_pdf not in pdflist_5f_run3_N):
if (str(pw_pdf) not in pdflist_4f_run3_N) and (str(pw_pdf) not in pdflist_5f_run3_N):
warnings.append("The gridpack uses PDF = "+str(pw_pdf)+" but not the recommended sets for Run3 requests: "+str(pdflist_4f_run3_N)+str(pdflist_5f_run3_N))
if "minlo" in line and "modlog_p" not in line:
minlo = int(re.split(r'\s+', line)[1])
Expand Down

0 comments on commit 070b9ec

Please sign in to comment.