2 from __future__
import print_function
4 import RecoLuminosity.LumiDB.LumiConstants
as LumiConstants
24 if __name__ ==
'__main__':
27 parser = argparse.ArgumentParser(description=
"Script to estimate average and RMS pileup using the per-bunch luminosity information provided by brilcalc. The output is a JSON file containing a dictionary by runs with one entry per lumi section.")
28 parser.add_argument(
'inputFile', help=
'CSV input file as produced from brilcalc')
29 parser.add_argument(
'outputFile', help=
'Name of JSON output file')
30 parser.add_argument(
'-b',
'--selBX', metavar=
'BXLIST', help=
'Comma-separated list of BXs to use (will use all by default)')
31 parser.add_argument(
'-n',
'--no-threshold', action=
'store_true', help=
'By default, to avoid including spurious luminosity from afterglow in the pileup calculation, bunches with luminosity below a given threshold are excluded. This threshold is 8.0/ub/LS for HFOC at nominal energy, 2.0/ub/LS for HFOC at low energy, and 1.2/ub/LS for other luminometers. If the input data has already been preprocessed (e.g. by using the --xingTr argument in brilcalc) to exclude these bunches, or if you are running on special data with low overall luminosity, then use this flag to disable the application of the threshold.')
32 args = parser.parse_args()
34 output = args.outputFile
38 for ibx
in args.selBX.split(
","):
43 print(ibx,
"is not an int")
44 print(
"Processing",args.inputFile,
"with selected BXs:", sorted(sel_bx))
46 print(
"Processing",args.inputFile,
"with all BX")
50 sepRE = re.compile(
r'[\]\[\s,;:]+')
51 csv_input = open(args.inputFile,
'r') 57 for line
in csv_input:
61 pieces = sepRE.split(line.strip())
66 raise RuntimeError(
"Not enough fields in input line; maybe you forgot to include --xing in your brilcalc command?\n"+line)
69 lumi_section =
int(pieces[2])
73 luminometer = pieces[14]
75 if luminometer ==
"HFOC":
76 if beam_energy > 3000:
86 for bxid, bunch_del_lumi, bunch_rec_lumi
in zip(pieces[15::3], pieces[16::3], pieces[17::3]):
87 if sel_bx
and int(bxid)
not in sel_bx:
89 if args.no_threshold
or float(bunch_del_lumi) > threshold:
90 xing_lumi_array.append([
int(bxid),
float(bunch_del_lumi),
float(bunch_rec_lumi)])
92 print(
"Failed to parse line: check if the input format has changed")
93 print(pieces[0],pieces[1],pieces[2],pieces[3],pieces[4],pieces[5],pieces[6],pieces[7],pieces[8],pieces[9])
107 output_line = output_line[:-1] +
'], ' 109 output_line += (
'\n"%d":' % run )
119 for bxid, bunch_del_lumi, bunch_rec_lumi
in xing_lumi_array:
120 total_lumi += bunch_rec_lumi
122 total_int += bunch_del_lumi*bunch_rec_lumi
126 total_int *= parameters.orbitLength / parameters.lumiSectionLength
128 mean_int = total_int/total_lumi
133 for bxid, bunch_del_lumi, bunch_rec_lumi
in xing_lumi_array:
134 mean_pileup = bunch_del_lumi * parameters.orbitLength / parameters.lumiSectionLength
135 if mean_pileup > 100:
136 print(
"mean number of pileup events > 100 for run %d, lum %d : m %f l %f" % \
137 (runNumber, lumi_section, mean_pileup, bunch_del_lumi))
140 total_int2 += bunch_rec_lumi*(mean_pileup-mean_int)*(mean_pileup-mean_int)
141 total_weight2 += bunch_rec_lumi*bunch_rec_lumi
146 denom = total_lumi*total_lumi-total_weight2
147 if total_lumi > 0
and denom > 0:
148 bunch_rms_lumi =
sqrt(total_lumi*total_int2/denom)
150 output_line +=
"[%d,%2.4e,%2.4e,%2.4e]," % (lumi_section, total_lumi, bunch_rms_lumi, mean_int)
151 last_valid_lumi = [lumi_section, total_lumi, bunch_rms_lumi, mean_int]
153 output_line = output_line[:-1] +
']}' 156 outputfile = open(output,
'w')
158 raise RuntimeError(
"Could not open '%s' as an output JSON file" % output)
160 outputfile.write(output_line)
162 print(
"Output written to", output)
ALPAKA_FN_HOST_ACC ALPAKA_FN_INLINE constexpr float zip(ConstView const &tracks, int32_t i)
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)