2 from __future__
import print_function
3 from sys
import stderr, exit
6 from optparse
import OptionParser
7 parser = OptionParser(usage=
"usage: %prog [options] Trigger_Path")
8 parser.add_option(
"--firstRun", dest=
"firstRun", help=
"first run", type=
"int", metavar=
"RUN", default=
"1")
9 parser.add_option(
"--lastRun", dest=
"lastRun", help=
"last run", type=
"int", metavar=
"RUN", default=
"9999999")
10 parser.add_option(
"--groupName", dest=
"groupName", help=
"select runs of name like NAME", metavar=
"NAME", default=
"Collisions%")
11 parser.add_option(
"--jsonOut", dest=
"jsonOut", help=
"dump prescales in JSON format on FILE", metavar=
"FILE")
12 (options, args) = parser.parse_args()
19 edmCfgFromDB =
"edmConfigFromDB --orcoff --format summary.ascii --paths " + path;
23 cmd = ( edmCfgFromDB +
" --configName "+key +
" | grep -i "+ path +
" | tail -1 | awk ' $2 ==\"%s\" {print $NL}' " ) % path
24 res = commands.getoutput(cmd)
25 res_split = res.split()
28 for uu
in range(3,len(res_split)-1):
30 psCols.append(res_split[uu])
33 from queryRR
import queryRR
36 asciiFile=open(
"columns.txt",
"read")
40 fl=asciiFile.readline()
45 mapIndex[runnumber]=pindex
51 runKeys =
queryRR(options.firstRun,options.lastRun,options.groupName)
54 runs = runKeys.keys(); runs.sort()
55 stderr.write(
"Querying ConfDB for prescales for path %s...\n" % (path));
59 if key
not in prescaleTable:
63 if len(prescaleTable[key]) == 0:
67 index =
int(MapIndex[run])
68 psfactor = prescaleTable[key][index]
72 psfactor = prescaleTable[key][index]
76 psfactor = prescaleTable[key][index]
80 print(
"%s\t%s" % (run, psfactor))
82 print(
"%s\t%s\t (*)" % (run, psfactor))
87 print(
"(*) The following runs were not found in columns.txt (the run may be too recent, or the prescale index is not in OMDS).")
88 print(
"For these runs, the prescale_index was assumed to be zero. You need to check independently.")
94 stderr.write(
"Exporting to JSON file %s...\n" % (options.jsonOut))
96 jsonFile = open(options.jsonOut,
"w")
97 jsonFile.write(json.dumps(jsout))
S & print(S &os, JobReport::InputFile const &f)
def getPrescalesFromKey(key)
my $pyPrintTable = "echo 'for X in process.PrescaleService.prescaleTable: print \"%s %s" % (X...