9 from __future__
import print_function
12 from RecoLuminosity.LumiDB
import argparse,sessionManager,lumiCalcAPI
15 allfillname=
'allfills.txt' 17 def tofiles(allfills,runsperfill,runtimes,outdir):
18 f=open(os.path.join(outdir,allfillname),
'w')
20 print(
'%d'%(fill), file=f)
22 for fill,runs
in runsperfill.items():
23 filename=
'fill_'+
str(fill)+
'.txt' 25 f=open(os.path.join(outdir,filename),
'w')
27 print(
'%d,%s'%(run,runtimes[run]), file=f)
29 if __name__ ==
'__main__':
30 parser = argparse.ArgumentParser(prog=os.path.basename(sys.argv[0]),description =
"Dump Fill",formatter_class=argparse.ArgumentDefaultsHelpFormatter)
32 parser.add_argument(
'-c',dest=
'connect',action=
'store',required=
False,help=
'connect string to lumiDB,optional',default=
'frontier://LumiCalc/CMS_LUMI_PROD')
33 parser.add_argument(
'-P',dest=
'authpath',action=
'store',help=
'path to authentication file,optional')
34 parser.add_argument(
'-o',dest=
'outputdir',action=
'store',required=
False,help=
'output dir',default=
'.')
35 parser.add_argument(
'--amodetag',dest=
'amodetag',action=
'store',required=
False,help=
'amodetag',default=
'PROTPHYS')
36 parser.add_argument(
'-f',
'--fill',
40 help=
'specific fill',default=
None)
41 parser.add_argument(
'--minfill',dest=
'minfill',
47 parser.add_argument(
'--maxfill',dest=
'maxfill',
52 help=
'maximum fillnumber ' 54 parser.add_argument(
'-siteconfpath',dest=
'siteconfpath',action=
'store',help=
'specific path to site-local-config.xml file, optional. If path undefined, fallback to cern proxy&server')
55 parser.add_argument(
'--debug',dest=
'debug',action=
'store_true',help=
'debug')
56 options=parser.parse_args()
58 os.environ[
'CORAL_AUTH_PATH'] = options.authpath
60 session=svc.openSession(isReadOnly=
True,cpp2sqltype=[(
'unsigned int',
'NUMBER(10)'),(
'unsigned long long',
'NUMBER(20)')])
62 session.transaction().
start(
True)
63 allfills=
lumiCalcAPI.fillInRange(session.nominalSchema(),fillmin=options.minfill,fillmax=options.maxfill,amodetag=options.amodetag)
65 print(
'no qualified fills found, do nothing... ')
72 if int(options.fillnum)
in allfills:
74 allruns=runsperfill[
int(options.fillnum) ]
75 allls=[
None]*len(allruns)
84 runs=runsperfill.values()
85 allruns=[item
for sublist
in runs
for item
in sublist]
86 allls=[
None]*len(allruns)
91 tofiles(allfills,runsperfill,runtimes,options.outputdir)
92 session.transaction().commit()
S & print(S &os, JobReport::InputFile const &f)
OutputIterator zip(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, OutputIterator result, Compare comp)
def fillrunMap(schema, fillnum=None, runmin=None, runmax=None, startT=None, stopT=None, l1keyPattern=None, hltkeyPattern=None, amodetag=None)
def fillInRange(schema, fillmin=1000, fillmax=9999, amodetag='PROTPHYS', startT=None, stopT=None)
def tofiles(allfills, runsperfill, runtimes, outdir)
def runsummary(schema, irunlsdict)
Lumi data management and calculation API # # Author: Zhen Xie #.
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