1 from builtins
import range
2 import sys,os,os.path,glob,csv,math,datetime
7 plotreader=csv.reader(fileobj,delimiter=
',')
11 [run,fill]=row[0].
split(
':')
12 [lumils,cmsls]=row[1].
split(
':')
13 if int(fill)
not in list(range(fillmin,fillmax+1)):
15 delivered=
float(row[5])
16 if int(fill)
not in result:
18 if int(run)
in result[
int(fill)]:
19 result[
int(fill)][
int(run)]+=delivered
21 result[
int(fill)][
int(run)]=delivered
28 lpcfilldir=[f
for f
in glob.glob(cachedir+
'/????')
if os.path.isdir(f) ]
29 lpcfills=[os.path.split(f)[1]
for f
in lpcfilldir]
31 result=[
int(f)
for f
in lpcfills
if int(f)>=fillmin]
34 if __name__ ==
"__main__" :
35 ofile=open(
'checklumi.log',
'w')
36 lpcdir=
'/afs/cern.ch/cms/CAF/CMSCOMM/COMM_GLOBAL/LHCFILES/' 37 plotcachedir=
'/afs/cern.ch/cms/lumi/www/publicplots/public_lumi_plots_cache/pp_all' 38 plotfiles=[f
for f
in glob.glob(os.path.join(plotcachedir,
'lumicalc_cache_2012-??-??.csv'))
if os.path.getsize(f)>0]
46 ofile.write(
'checking fills %s\n'%
str(lpcfill2012))
47 ofile.write(
"-----------------------------------------------------------------------------------\n")
48 ofile.write(
'on %s\n'%
str(datetime.datetime.now()) )
49 ofile.write(
"-----------------------------------------------------------------------------------\n")
55 for fill
in lpcfill2012:
62 lpcfile=os.path.join(lpcdir,
str(fill),
str(fill)+
'_summary_CMS.txt')
63 if not os.path.exists(lpcfile):
66 for line
in l.readlines():
68 rundataline=line.split()
69 if len(rundataline)!=4:
continue 70 lpcdelperrun=
float(rundataline[3])
71 lpcresult.setdefault(fill,[]).
append(lpcdelperrun)
73 lumi_lpc+=lpcdelperrun
76 if fill
in plotfilldata:
77 runs=plotfilldata[fill].
keys()
80 tot_nrunpplot+=nruns_pplot
83 lumi_pplot+=plotfilldata[fill][run]
84 tot_lumipplot+=lumi_pplot
86 delta=lumi_pplot-lumi_lpc
88 dellumi=1.-math.fabs(lumi_pplot/lumi_lpc)
89 if nruns_pplot!=nrun_lpc:
90 ofile.write(
'fill: %d plot=%.2f plotrun=%d lpc=%.2f lpcrun=%d diff=%.2f rel=%.3f *\n'%(fill,lumi_pplot,nruns_pplot,lumi_lpc,nrun_lpc,delta,dellumi))
92 ofile.write(
'fill: %d plot=%.2f plotrun=%d lpc=%.2f lpcrun=%d diff=%.2f rel=%.3f \n'%(fill,lumi_pplot,nruns_pplot,lumi_lpc,nrun_lpc,delta,dellumi))
93 tot_diff=tot_lumipplot-tot_lumilpc
96 tot_rel=1.-tot_lumipplot/tot_lumilpc
98 ofile.write(
"-----------------------------------------------------------------------------------\n")
99 ofile.write(
"tot : plot=%.2f lpc=%.2f diff=%.2f rel=%.3f\n" % (tot_lumipplot,tot_lumilpc,tot_diff,tot_rel))
100 ofile.write(
"tot : plotnrun=%d lpcnrun=%d\n"%(tot_nrunpplot,tot_nrunlpc))
def parseplotcache(filelist, fillmin, fillmax)
def findlpcdir(lpcdir, fillmin)
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run