Skip to content

Commit

Permalink
bypass concurrency check for CepGen
Browse files Browse the repository at this point in the history
  • Loading branch information
efeyazgan committed Apr 25, 2024
1 parent f3a060a commit 77e7103
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/utils/request_fragment_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -972,11 +972,11 @@ def root_requests_from_ticket(ticket_prepid, include_docs=False):
else :
nthreads = int(re.search('nThreads(.*?) --',ttxt).group(1))

if "SnowmassWinter21GEN" not in pi and "SnowmassWinter21wmLHEGEN" not in pi and particle_gun == 0 and pi not in concurrency_check_exception_list and "matchbox" not in data_f1.lower():
if "SnowmassWinter21GEN" not in pi and "SnowmassWinter21wmLHEGEN" not in pi and particle_gun == 0 and pi not in concurrency_check_exception_list and "matchbox" not in data_f1.lower() and "CepGenGeneratorFilter" not in data_f1:
conc_check_result, tmp_err = concurrency_check(data_f1,pi,cmssw_version,mg_gp)
errors.extend(tmp_err)
else:
warnings.append("Skipping the concurrency check since these are (wmLHE)GEN-only campaigns or a particle gun or a Sherpa Diphoton sample or an herwig7 request with Matchbox.")
warnings.append("Skipping the concurrency check since these are (wmLHE)GEN-only campaigns or a particle gun or a Sherpa Diphoton sample or an herwig7 request with Matchbox or a CepGen sample.")

nevts = 100.
if timeperevent > 0:
Expand Down

0 comments on commit 77e7103

Please sign in to comment.