From 4a0384e35b387eb2b93d31c0bd1d3c16e0603ce8 Mon Sep 17 00:00:00 2001 From: Efe Date: Thu, 3 Mar 2022 14:25:30 +0100 Subject: [PATCH] remove the events/lumi < 50 check which is handled by validation now --- bin/utils/request_fragment_check.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/bin/utils/request_fragment_check.py b/bin/utils/request_fragment_check.py index 5111bbf1b26a..492017c899e4 100755 --- a/bin/utils/request_fragment_check.py +++ b/bin/utils/request_fragment_check.py @@ -940,15 +940,15 @@ def root_requests_from_ticket(ticket_prepid, include_docs=False): if timeperevent > 0: nevts = (8*3600/timeperevent)*total_eff print("Expected number of events = "+str(nevts)) - if nevts < 50. and ppd == 0: - print("[ERROR] The expected number of events is too small (<50): "+str(nevts)) - print(" Either the timeperevent value is too large or the filter or matching efficiency is too small. ") - print(" Note that total_efficiency = filter_efficiency x matching_efficiency.") - print(" Please check or improve:") - print(" time per event = "+str(timeperevent)) - print(" filter efficiency = "+str(filter_eff)) - print(" matching efficiency = "+str(match_eff)) - error += 1 +# if nevts < 50. and ppd == 0: +# print("[ERROR] The expected number of events is too small (<50): "+str(nevts)) +# print(" Either the timeperevent value is too large or the filter or matching efficiency is too small. ") +# print(" Note that total_efficiency = filter_efficiency x matching_efficiency.") +# print(" Please check or improve:") +# print(" time per event = "+str(timeperevent)) +# print(" filter efficiency = "+str(filter_eff)) +# print(" matching efficiency = "+str(match_eff)) +# error += 1 if any(word in dn for word in MEname) and gp_size == 0 and "plhe" not in pi.lower(): print("[ERROR] gridpack path is not properly specified - most probable reason is that it is not a cvmfs path.")