2 from optparse
import OptionParser
8 tfile = ROOT.TFile.Open(
"%s/%s/%s.root"%(dir,ana,treename))
10 print "Error: dir %s does not contain %s/%s.root" % (dir,ana,treename)
12 tree = tfile.Get(treename)
14 print "Error: rootfile %s/%s/%s.root does not contain a TTree %s" % (dir,ana,treename,treename)
17 for e
in xrange(tree.GetEntries()):
19 run,lumi = tree.run, tree.lumi
20 if run
not in jsonind:
26 jsonind[run] =
list(set(jsonind[run]))
29 nlumis = sum(len(v)
for v
in six.itervalues(jsonind))
31 for r,lumis
in six.iteritems(jsonind):
32 if len(lumis) == 0:
continue 34 ranges = [ [ lumis[0], lumis[0] ] ]
35 for lumi
in lumis[1:]:
36 if lumi == ranges[-1][1] + 1:
39 ranges.append([lumi,lumi])
41 return (jsonmap, nruns, nlumis)
43 if __name__ ==
'__main__':
44 parser = OptionParser(usage=
'%prog <target_directories> [options]',
45 description=
'Check the output of the JSONAnalyzer and produce a json file of the processed runs and lumisections')
46 parser.add_option(
"-a",
"--analyzer", dest=
"jsonAnalyzer", default=
"JSONAnalyzer", help=
"Name of the JSONAnalyzer")
47 parser.add_option(
"-t",
"--tree", dest=
"treeName", default=
"RLTInfo", help=
"Name of the TTree produced by the JSONAnalyzer")
48 parser.add_option(
"-o",
"--out", dest=
"outputFile", default=
"lumiSummary.json", help=
"Name of the output file")
49 (options,args) = parser.parse_args()
51 print 'provide at least one directory in argument. Use -h to display help' 54 summary =
root2map(a,options.jsonAnalyzer,options.treeName)
56 oname =
"%s/%s" % (a,options.outputFile)
57 jmap, runs, lumis = summary
58 json.dump(jmap,open(oname,
'w'))
59 print "Saved %s (%d runs, %d lumis)" % (oname, runs, lumis)
def root2map(dir, ana, treename)
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