|
@@ -160,10 +160,10 @@ def hist_integral_ratio(num, den):
|
|
def center_text(x, y, txt, **kwargs):
|
|
def center_text(x, y, txt, **kwargs):
|
|
plt.text(x, y, txt,
|
|
plt.text(x, y, txt,
|
|
horizontalalignment='center', verticalalignment='center',
|
|
horizontalalignment='center', verticalalignment='center',
|
|
- transform=plt.gca().transAxes, **kwargs)
|
|
|
|
|
|
+ transform=plt.gca().transAxes, size=24, **kwargs)
|
|
|
|
|
|
|
|
|
|
-def hist_plot(h: Hist1D, *args, include_errors=False, **kwargs):
|
|
|
|
|
|
+def hist_plot(h: Hist1D, *args, include_errors=False, line_width=1, **kwargs):
|
|
""" Plots a 1D ROOT histogram object using matplotlib """
|
|
""" Plots a 1D ROOT histogram object using matplotlib """
|
|
|
|
|
|
counts = h.get_counts()
|
|
counts = h.get_counts()
|
|
@@ -172,7 +172,7 @@ def hist_plot(h: Hist1D, *args, include_errors=False, **kwargs):
|
|
x = np.array([left, right]).T.flatten()
|
|
x = np.array([left, right]).T.flatten()
|
|
y = np.array([counts, counts]).T.flatten()
|
|
y = np.array([counts, counts]).T.flatten()
|
|
|
|
|
|
- plt.plot(x, y, *args, linewidth=2, **kwargs)
|
|
|
|
|
|
+ plt.plot(x, y, *args, linewidth=line_width, **kwargs)
|
|
if include_errors:
|
|
if include_errors:
|
|
plt.errorbar(h.get_bin_centers(), h.counts, yerr=h.errors,
|
|
plt.errorbar(h.get_bin_centers(), h.counts, yerr=h.errors,
|
|
color='k', marker=None, linestyle='None',
|
|
color='k', marker=None, linestyle='None',
|
|
@@ -301,7 +301,7 @@ def plot_roc_curve(pfx, ext=''):
|
|
|
|
|
|
|
|
|
|
@mpb.decl_fig
|
|
@mpb.decl_fig
|
|
-def plot_kinematic_eff_all(pref, ext=''):
|
|
|
|
|
|
+def plot_kinematic_eff(pref, ext='', xlim=(None, None), ylim=(None, None), norm=None, label_pfx='', incl_sel=True):
|
|
load_samples()
|
|
load_samples()
|
|
ax_pt = plt.subplot(221)
|
|
ax_pt = plt.subplot(221)
|
|
ax_eta = plt.subplot(222)
|
|
ax_eta = plt.subplot(222)
|
|
@@ -311,38 +311,35 @@ def plot_kinematic_eff_all(pref, ext=''):
|
|
sample_name = f'{proc}-{wp}'
|
|
sample_name = f'{proc}-{wp}'
|
|
l = sample_name
|
|
l = sample_name
|
|
c = color(proc, wp)
|
|
c = color(proc, wp)
|
|
- plt.sca(ax_pt)
|
|
|
|
- hist_plot(Hist1D(sample[f'{pref}_v_pt{ext}']), include_errors=errors, label=l, color=c)
|
|
|
|
- plt.sca(ax_eta)
|
|
|
|
- hist_plot(Hist1D(sample[f'{pref}_v_eta{ext}']), include_errors=errors, label=l, color=c)
|
|
|
|
- plt.sca(ax_phi)
|
|
|
|
- hist_plot(Hist1D(sample[f'{pref}_v_phi{ext}']), include_errors=errors, label=l, color=c)
|
|
|
|
-
|
|
|
|
- if 'eff' in pref:
|
|
|
|
- reference = 'Sim-Track'
|
|
|
|
- elif 'fake' in pref:
|
|
|
|
- reference = 'Supercluster'
|
|
|
|
- else:
|
|
|
|
- reference = 'GSF-Track'
|
|
|
|
|
|
|
|
- def set_ylim():
|
|
|
|
- if 'num' not in ext and 'den' not in ext:
|
|
|
|
- plt.ylim((0, 1.1))
|
|
|
|
|
|
+ def do_plot(ax, name):
|
|
|
|
+ plt.sca(ax)
|
|
|
|
+ h = Hist1D(sample[name], no_overflow=True)
|
|
|
|
+ if norm:
|
|
|
|
+ h = h / (norm*h.get_integral())
|
|
|
|
+ hist_plot(h, include_errors=errors, label=l, color=c)
|
|
|
|
+
|
|
|
|
+ do_plot(ax_pt, f'{pref}_v_pt{ext}')
|
|
|
|
+ do_plot(ax_eta, f'{pref}_v_eta{ext}')
|
|
|
|
+ do_plot(ax_phi, f'{pref}_v_phi{ext}')
|
|
|
|
|
|
plt.sca(ax_pt)
|
|
plt.sca(ax_pt)
|
|
- center_text(0.5, 0.3, r'$|\eta|<2.4$')
|
|
|
|
- plt.xlabel(fr"{reference} $p_T$")
|
|
|
|
- set_ylim()
|
|
|
|
|
|
+ if not incl_sel: center_text(0.5, 0.15, r'$|\eta|<2.4$')
|
|
|
|
+ plt.xlabel(fr"{label_pfx} $p_T$")
|
|
|
|
+ plt.ylim(ylim)
|
|
|
|
+ plt.xlim(xlim)
|
|
|
|
|
|
plt.sca(ax_eta)
|
|
plt.sca(ax_eta)
|
|
- center_text(0.5, 0.3, r'$p_T>20$')
|
|
|
|
- plt.xlabel(fr"{reference} $\eta$")
|
|
|
|
- set_ylim()
|
|
|
|
|
|
+ if not incl_sel: center_text(0.5, 0.15, r'$p_T>20$')
|
|
|
|
+ plt.xlabel(fr"{label_pfx} $\eta$")
|
|
|
|
+ plt.ylim(ylim)
|
|
|
|
+ plt.xlim(xlim)
|
|
|
|
|
|
plt.sca(ax_phi)
|
|
plt.sca(ax_phi)
|
|
- center_text(0.5, 0.3, r'$p_T>20$ and $|\eta|<2.4$')
|
|
|
|
- plt.xlabel(fr"{reference} $\phi$")
|
|
|
|
- set_ylim()
|
|
|
|
|
|
+ if not incl_sel: center_text(0.5, 0.15, r'$p_T>20$ and $|\eta|<2.4$')
|
|
|
|
+ plt.xlabel(fr"{label_pfx} $\phi$")
|
|
|
|
+ plt.ylim(ylim)
|
|
|
|
+ plt.xlim(xlim)
|
|
plt.tight_layout()
|
|
plt.tight_layout()
|
|
plt.legend(loc='upper left', bbox_to_anchor=(0.6, 0.45), bbox_transform=plt.gcf().transFigure)
|
|
plt.legend(loc='upper left', bbox_to_anchor=(0.6, 0.45), bbox_transform=plt.gcf().transFigure)
|
|
|
|
|
|
@@ -385,24 +382,45 @@ def plot_res_contour(proc, hit_number, var, layers, ext='_TrackMatched'):
|
|
|
|
|
|
|
|
|
|
@mpb.decl_fig
|
|
@mpb.decl_fig
|
|
-def simple_dist(hist_name, xlabel, rebin=False, xmax=None):
|
|
|
|
|
|
+def simple_dist(hist_name, rebin=(), norm=1, xlabel="", ylabel="", xlim=None, ylim=None, line_width=1):
|
|
load_samples()
|
|
load_samples()
|
|
for (proc, wp), sample in samples.items():
|
|
for (proc, wp), sample in samples.items():
|
|
sample_name = f'{proc}-{wp}'
|
|
sample_name = f'{proc}-{wp}'
|
|
h = Hist1D(sample[hist_name])
|
|
h = Hist1D(sample[hist_name])
|
|
if rebin:
|
|
if rebin:
|
|
- h.rebin(50, -0.5, 200.5)
|
|
|
|
-
|
|
|
|
- h = h / h.get_integral()
|
|
|
|
- mean = int(np.sum(h.get_counts() * h.get_bin_centers()))
|
|
|
|
- hist_plot(h, label=f'{sample_name} ($\\mu={mean:g}$)',
|
|
|
|
- color=color(proc, wp))
|
|
|
|
- if xmax:
|
|
|
|
- plt.xlim((0, xmax))
|
|
|
|
|
|
+ h.rebin(*rebin)
|
|
|
|
+
|
|
|
|
+ mean = np.sum(h.get_counts() * h.get_bin_centers()) / h.get_integral()
|
|
|
|
+ if norm is not None:
|
|
|
|
+ h = h * (norm / h.get_integral())
|
|
|
|
+ hist_plot(h, label=f'{sample_name} ($\\mu={mean:.2f}$)',
|
|
|
|
+ color=color(proc, wp), line_width=line_width)
|
|
|
|
+ if xlim:
|
|
|
|
+ plt.xlim(xlim)
|
|
|
|
+ if ylim:
|
|
|
|
+ plt.ylim(ylim)
|
|
plt.xlabel(xlabel)
|
|
plt.xlabel(xlabel)
|
|
|
|
+ plt.ylabel(ylabel)
|
|
plt.legend()
|
|
plt.legend()
|
|
|
|
|
|
|
|
|
|
|
|
+@mpb.decl_fig
|
|
|
|
+def simple_dist2d(hist_name, proc, wp, xlabel="", ylabel="", xlim=None, ylim=None, norm=None):
|
|
|
|
+ load_samples()
|
|
|
|
+ sample = samples[(proc, wp)]
|
|
|
|
+ # sample_name = f'{proc}-{wp}'
|
|
|
|
+ h = Hist2D(sample[hist_name])
|
|
|
|
+ if norm is not None:
|
|
|
|
+ h = h * (norm / h.get_integral())
|
|
|
|
+ plot_2d(h, colz_fmt='g')
|
|
|
|
+ if xlim:
|
|
|
|
+ plt.xlim(xlim)
|
|
|
|
+ if ylim:
|
|
|
|
+ plt.ylim(ylim)
|
|
|
|
+ plt.xlabel(xlabel)
|
|
|
|
+ plt.ylabel(ylabel)
|
|
|
|
+
|
|
|
|
+
|
|
def all_cut_plots(refresh=True, publish=False):
|
|
def all_cut_plots(refresh=True, publish=False):
|
|
|
|
|
|
figures = {
|
|
figures = {
|
|
@@ -410,50 +428,75 @@ def all_cut_plots(refresh=True, publish=False):
|
|
'tracking_roc_curve_dR': (plot_roc_curve, ('tracking',), {'ext': '_dR'}),
|
|
'tracking_roc_curve_dR': (plot_roc_curve, ('tracking',), {'ext': '_dR'}),
|
|
'seeding_roc_curve': (plot_roc_curve, ('seed',)),
|
|
'seeding_roc_curve': (plot_roc_curve, ('seed',)),
|
|
|
|
|
|
- 'tracking_eff_all': (plot_kinematic_eff_all, ('tracking_eff',)),
|
|
|
|
- 'tracking_pur_all': (plot_kinematic_eff_all, ('tracking_pur',)),
|
|
|
|
- 'tracking_eff_all_dR': (plot_kinematic_eff_all, ('tracking_eff',), {'ext': '_dR'}),
|
|
|
|
- 'tracking_pur_all_dR': (plot_kinematic_eff_all, ('tracking_pur',), {'ext': '_dR'}),
|
|
|
|
- 'seeding_eff_all': (plot_kinematic_eff_all, ('seed_eff',)),
|
|
|
|
- 'seeding_pur_all': (plot_kinematic_eff_all, ('seed_pur',)),
|
|
|
|
- 'partial_fake_rate_all': (plot_kinematic_eff_all, ('partial_fake_rate',)),
|
|
|
|
- 'partial_fake_rate_all_num': (plot_kinematic_eff_all, ('partial_fake_rate',), {'ext': '_num'}),
|
|
|
|
- 'partial_fake_rate_all_den': (plot_kinematic_eff_all, ('partial_fake_rate',), {'ext': '_den'}),
|
|
|
|
- 'full_fake_rate_all': (plot_kinematic_eff_all, ('full_fake_rate',)),
|
|
|
|
- 'full_fake_rate_all_num': (plot_kinematic_eff_all, ('full_fake_rate',), {'ext': '_num'}),
|
|
|
|
- 'full_fake_rate_all_den': (plot_kinematic_eff_all, ('full_fake_rate',), {'ext': '_den'}),
|
|
|
|
- 'clean_fake_rate_all': (plot_kinematic_eff_all, ('clean_fake_rate',)),
|
|
|
|
- 'clean_fake_rate_all_num': (plot_kinematic_eff_all, ('clean_fake_rate',), {'ext': '_num'}),
|
|
|
|
- 'clean_fake_rate_all_den': (plot_kinematic_eff_all, ('clean_fake_rate',), {'ext': '_den'}),
|
|
|
|
-
|
|
|
|
- 'number_of_seeds': (simple_dist, ('n_seeds', 'Number of Seeds'), {'rebin': True}),
|
|
|
|
- 'number_of_sim_els': (simple_dist, ('n_good_sim', 'Number of prompt(ish) electrons'), {'xmax': 10.5}),
|
|
|
|
- 'number_of_gsf_tracks': (simple_dist, ('n_gsf_track', 'Number of reco electrons'), {'xmax': 10.5}),
|
|
|
|
-
|
|
|
|
- 'number_of_matched': (simple_dist, ('n_matched', 'Number of matched electrons'), {'xmax': 10.5}),
|
|
|
|
- 'number_of_merged': (simple_dist, ('n_merged', 'Number of merged electrons'), {'xmax': 10.5}),
|
|
|
|
- 'number_of_lost': (simple_dist, ('n_lost', 'Number of lost electrons'), {'xmax': 10.5}),
|
|
|
|
- 'number_of_split': (simple_dist, ('n_split', 'Number of split electrons'), {'xmax': 10.5}),
|
|
|
|
- 'number_of_faked': (simple_dist, ('n_faked', 'Number of faked electrons'), {'xmax': 10.5}),
|
|
|
|
- 'number_of_flipped': (simple_dist, ('n_flipped', 'Number of flipped electrons'), {'xmax': 10.5}),
|
|
|
|
- 'matched_dR': (simple_dist, ('matched_dR', 'dR between sim and reco')),
|
|
|
|
- 'matched_dpT': (simple_dist, ('matched_dpT', 'dpT between sim and reco')),
|
|
|
|
-
|
|
|
|
- 'number_of_matched_dR': (simple_dist, ('n_matched_dR', 'Number of matched electrons - dR Matched'), {'xmax': 10.5}),
|
|
|
|
- 'number_of_merged_dR': (simple_dist, ('n_merged_dR', 'Number of merged electrons - dR Matched'), {'xmax': 10.5}),
|
|
|
|
- 'number_of_lost_dR': (simple_dist, ('n_lost_dR', 'Number of lost electrons - dR Matched'), {'xmax': 10.5}),
|
|
|
|
- 'number_of_split_dR': (simple_dist, ('n_split_dR', 'Number of split electrons - dR Matched'), {'xmax': 10.5}),
|
|
|
|
- 'number_of_faked_dR': (simple_dist, ('n_faked_dR', 'Number of faked electrons - dR Matched'), {'xmax': 10.5}),
|
|
|
|
- 'number_of_flipped_dR': (simple_dist, ('n_flipped_dR', 'Number of flipped electrons - dR Matched'), {'xmax': 10.5}),
|
|
|
|
- 'matched_dR_dR': (simple_dist, ('matched_dR_dR', 'dR between sim and reco - dR Matched')),
|
|
|
|
- 'matched_dpT_dR': (simple_dist, ('matched_dpT_dR', 'dpT between sim and reco - dR Matched')),
|
|
|
|
-
|
|
|
|
- 'sim_pt': (simple_dist, ('sim_pt', 'Sim Track $p_T$')),
|
|
|
|
- 'sim_eta': (simple_dist, ('sim_eta', 'Sim Track $eta$')),
|
|
|
|
- 'sim_phi': (simple_dist, ('sim_phi', 'Sim Track $phi$')),
|
|
|
|
- 'reco_pt': (simple_dist, ('reco_pt', 'Reco Track $p_T$')),
|
|
|
|
- 'reco_eta': (simple_dist, ('reco_eta', 'Reco Track $eta$')),
|
|
|
|
- 'reco_phi': (simple_dist, ('reco_phi', 'Reco Track $phi$')),
|
|
|
|
|
|
+ 'number_of_seeds': (simple_dist, ('n_seeds',),
|
|
|
|
+ dict(xlabel='Number of Seeds', rebin=(50, -0.5, 200.5))),
|
|
|
|
+ 'number_of_good_seeds': (simple_dist, ('n_good_seeds',),
|
|
|
|
+ dict(xlabel='Number of Good Seeds', rebin=(50, -0.5, 200.5))),
|
|
|
|
+ 'number_of_scls': (simple_dist, ('n_scl',),
|
|
|
|
+ dict(xlabel='Number of Super-Clusters', xlim=(-0.5, 25.5))),
|
|
|
|
+ 'number_of_good_scls': (simple_dist, ('n_good_scl',),
|
|
|
|
+ dict(xlabel='Number of Super-Clusters', xlim=(-0.5, 25.5))),
|
|
|
|
+
|
|
|
|
+ 'number_of_sim_els': (simple_dist, ('n_good_sim',),
|
|
|
|
+ dict(xlabel='Number of prompt(ish) electrons', xlim=(-0.5, 20.5))),
|
|
|
|
+ 'number_of_gsf_tracks': (simple_dist, ('n_gsf_track',),
|
|
|
|
+ dict(xlabel='Number of reco electrons', xlim=(-0.5, 20.5))),
|
|
|
|
+
|
|
|
|
+ 'number_of_matched': (simple_dist, ('n_matched',),
|
|
|
|
+ dict(xlabel='Number of matched electrons', xlim=(-0.5, 10.5), line_width=4)),
|
|
|
|
+ 'number_of_merged': (simple_dist, ('n_merged',),
|
|
|
|
+ dict(xlabel='Number of merged electrons', xlim=(-0.5, 10.5), line_width=4)),
|
|
|
|
+ 'number_of_lost': (simple_dist, ('n_lost',),
|
|
|
|
+ dict(xlabel='Number of lost electrons', xlim=(-0.5, 10.5), line_width=4)),
|
|
|
|
+ 'number_of_split': (simple_dist, ('n_split',),
|
|
|
|
+ dict(xlabel='Number of split electrons', xlim=(-0.5, 10.5), line_width=4)),
|
|
|
|
+ 'number_of_faked': (simple_dist, ('n_faked',),
|
|
|
|
+ dict(xlabel='Number of faked electrons', xlim=(-0.5, 10.5), line_width=4)),
|
|
|
|
+ 'number_of_flipped': (simple_dist, ('n_flipped',),
|
|
|
|
+ dict(xlabel='Number of flipped electrons', xlim=(-0.5, 10.5), line_width=4)),
|
|
|
|
+ 'matched_dR': (simple_dist, ('matched_dR',),
|
|
|
|
+ dict(xlabel='dR between sim and reco')),
|
|
|
|
+ 'matched_dpT': (simple_dist, ('matched_dpT',),
|
|
|
|
+ dict(xlabel='dpT between sim and reco')),
|
|
|
|
+
|
|
|
|
+ 'number_of_matched_dR': (simple_dist, ('n_matched_dR',),
|
|
|
|
+ dict(xlabel='Number of matched electrons - dR Matched', xlim=(-0.5, 10.5),
|
|
|
|
+ line_width=4)),
|
|
|
|
+ 'number_of_merged_dR': (simple_dist, ('n_merged_dR',),
|
|
|
|
+ dict(xlabel='Number of merged electrons - dR Matched', xlim=(-0.5, 10.5),
|
|
|
|
+ line_width=4)),
|
|
|
|
+ 'number_of_lost_dR': (simple_dist, ('n_lost_dR',),
|
|
|
|
+ dict(xlabel='Number of lost electrons - dR Matched', xlim=(-0.5, 10.5),
|
|
|
|
+ line_width=4)),
|
|
|
|
+ 'number_of_split_dR': (simple_dist, ('n_split_dR',),
|
|
|
|
+ dict(xlabel='Number of split electrons - dR Matched', xlim=(-0.5, 10.5),
|
|
|
|
+ line_width=4)),
|
|
|
|
+ 'number_of_faked_dR': (simple_dist, ('n_faked_dR',),
|
|
|
|
+ dict(xlabel='Number of faked electrons - dR Matched', xlim=(-0.5, 10.5),
|
|
|
|
+ line_width=4)),
|
|
|
|
+ 'number_of_flipped_dR': (simple_dist, ('n_flipped_dR',),
|
|
|
|
+ dict(xlabel='Number of flipped electrons - dR Matched', xlim=(-0.5, 10.5),
|
|
|
|
+ line_width=4)),
|
|
|
|
+ 'matched_dR_dR': (simple_dist, ('matched_dR_dR',),
|
|
|
|
+ dict(xlabel='dR between sim and reco - dR Matched')),
|
|
|
|
+ 'matched_dpT_dR': (simple_dist, ('matched_dpT_dR',),
|
|
|
|
+ dict(xlabel='dpT between sim and reco - dR Matched')),
|
|
|
|
+
|
|
|
|
+ 'sim_pt': (simple_dist, ('sim_pt',),
|
|
|
|
+ dict(xlabel='Sim Track $p_T$', xlim=(0, None))),
|
|
|
|
+ 'sim_eta': (simple_dist, ('sim_eta',),
|
|
|
|
+ dict(xlabel='Sim Track $eta$', rebin=(20, -3, 3))),
|
|
|
|
+ 'sim_phi': (simple_dist, ('sim_phi',),
|
|
|
|
+ dict(xlabel='Sim Track $phi$', rebin=(20, -3.14, 3.14), ylim=(0, None))),
|
|
|
|
+ 'reco_pt': (simple_dist, ('reco_pt',),
|
|
|
|
+ dict(xlabel='Reco Track $p_T$', xlim=(0, None))),
|
|
|
|
+ 'reco_eta': (simple_dist, ('reco_eta',),
|
|
|
|
+ dict(xlabel='Reco Track $eta$', rebin=(20, -3, 3))),
|
|
|
|
+ 'reco_phi': (simple_dist, ('reco_phi',),
|
|
|
|
+ dict(xlabel='Reco Track $phi$', rebin=(20, -3.14, 3.14), ylim=(0, None))),
|
|
|
|
+
|
|
|
|
+ 'tm_corr': (simple_dist2d, ('tm_corr', 'zee', 'old-default'),
|
|
|
|
+ dict(xlabel='Seed Matched', ylabel='Track Matched', norm=1)),
|
|
|
|
|
|
'ecal_rel_res': plot_ecal_rel_res,
|
|
'ecal_rel_res': plot_ecal_rel_res,
|
|
'hit_v_layer_BPIX_new-default_zee': (plot_hit_vs_layer, (('zee', 'new-default'), 'barrel')),
|
|
'hit_v_layer_BPIX_new-default_zee': (plot_hit_vs_layer, (('zee', 'new-default'), 'barrel')),
|
|
@@ -464,8 +507,43 @@ def all_cut_plots(refresh=True, publish=False):
|
|
'hit_v_layer_FPIX_new-wide_zee': (plot_hit_vs_layer, (('zee', 'new-wide'), 'forward')),
|
|
'hit_v_layer_FPIX_new-wide_zee': (plot_hit_vs_layer, (('zee', 'new-wide'), 'forward')),
|
|
'hit_v_layer_BPIX_new-wide_tt': (plot_hit_vs_layer, (('tt', 'new-wide'), 'barrel')),
|
|
'hit_v_layer_BPIX_new-wide_tt': (plot_hit_vs_layer, (('tt', 'new-wide'), 'barrel')),
|
|
'hit_v_layer_FPIX_new-wide_tt': (plot_hit_vs_layer, (('tt', 'new-wide'), 'forward')),
|
|
'hit_v_layer_FPIX_new-wide_tt': (plot_hit_vs_layer, (('tt', 'new-wide'), 'forward')),
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ 'good_sim_kinem': (plot_kinematic_eff, ('good_sim',),
|
|
|
|
+ dict(norm=1, ylim=(0, None))),
|
|
|
|
+ 'gsf_track_kinem': (plot_kinematic_eff, ('gsf_track',),
|
|
|
|
+ dict(norm=1, ylim=(0, None))),
|
|
|
|
+ 'seed_kinem': (plot_kinematic_eff, ('seed',),
|
|
|
|
+ dict(norm=1, ylim=(0, None))),
|
|
|
|
+ 'scl_kinem': (plot_kinematic_eff, ('scl',),
|
|
|
|
+ dict(norm=1, ylim=(0, None))),
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ def add_num_den(key, func, args, kwargs):
|
|
|
|
+ figures[key] = (func, args, dict(**kwargs, ylim=(0, 1.1)))
|
|
|
|
+ base_ext = kwargs.get('ext', '')
|
|
|
|
+ kwargs_ = kwargs.copy()
|
|
|
|
+ kwargs_['ext'] = base_ext+'_num'
|
|
|
|
+ figures[key+'_num'] = (func, args, kwargs_)
|
|
|
|
+ kwargs_ = kwargs.copy()
|
|
|
|
+ kwargs_['ext'] = base_ext+'_den'
|
|
|
|
+ figures[key+'_den'] = (func, args, kwargs_)
|
|
|
|
+
|
|
|
|
+ add_num_den('tracking_eff', plot_kinematic_eff, ('tracking_eff',), dict(incl_sel=False))
|
|
|
|
+ add_num_den('tracking_pur', plot_kinematic_eff, ('tracking_pur',), dict(incl_sel=False))
|
|
|
|
+ add_num_den('tracking_eff_dR', plot_kinematic_eff, ('tracking_eff',), dict(ext='_dR', incl_sel=False))
|
|
|
|
+ add_num_den('tracking_pur_dR', plot_kinematic_eff, ('tracking_pur',), dict(ext='_dR', incl_sel=False))
|
|
|
|
+ add_num_den('seeding_eff', plot_kinematic_eff, ('seed_eff',), dict(incl_sel=False))
|
|
|
|
+ add_num_den('seeding_pur', plot_kinematic_eff, ('seed_pur',), dict(incl_sel=False))
|
|
|
|
+ add_num_den('fake_rate_incl', plot_kinematic_eff, ('fake_rate_incl',), {})
|
|
|
|
+ add_num_den('partial_fake_rate_incl', plot_kinematic_eff, ('partial_fake_rate_incl',), {})
|
|
|
|
+ add_num_den('full_fake_rate_incl', plot_kinematic_eff, ('full_fake_rate_incl',), {})
|
|
|
|
+ add_num_den('clean_fake_rate_incl', plot_kinematic_eff, ('clean_fake_rate_incl',), {})
|
|
|
|
+ add_num_den('fake_rate', plot_kinematic_eff, ('fake_rate',), dict(incl_sel=False))
|
|
|
|
+ add_num_den('partial_fake_rate', plot_kinematic_eff, ('partial_fake_rate',), dict(incl_sel=False))
|
|
|
|
+ add_num_den('full_fake_rate', plot_kinematic_eff, ('full_fake_rate',), dict(incl_sel=False))
|
|
|
|
+ add_num_den('clean_fake_rate', plot_kinematic_eff, ('clean_fake_rate',), dict(incl_sel=False))
|
|
|
|
+
|
|
hit_layers = [(1, 1), (1, 2), (2, 2), (2, 3), (3, 3), (3, 4)]
|
|
hit_layers = [(1, 1), (1, 2), (2, 2), (2, 3), (3, 3), (3, 4)]
|
|
for proc, wp, (hit, layer), var, subdet in product(['zee', 'tt'], ['new-default', 'new-wide'],
|
|
for proc, wp, (hit, layer), var, subdet in product(['zee', 'tt'], ['new-default', 'new-wide'],
|
|
hit_layers,
|
|
hit_layers,
|
|
@@ -490,9 +568,9 @@ def all_cut_plots(refresh=True, publish=False):
|
|
output=f'hists.html',
|
|
output=f'hists.html',
|
|
source=__file__)
|
|
source=__file__)
|
|
|
|
|
|
- # mpb.generate_report(figures, 'Fake Rate Investigation',
|
|
|
|
- # output=f'report.html',
|
|
|
|
- # body='../docs/reports/report_2018_05_18.md')
|
|
|
|
|
|
+ mpb.generate_report(figures, 'Update',
|
|
|
|
+ output='report.html',
|
|
|
|
+ body='../docs/reports/report_2018_05_30.md')
|
|
if publish:
|
|
if publish:
|
|
mpb.publish()
|
|
mpb.publish()
|
|
|
|
|
|
@@ -534,4 +612,4 @@ if __name__ == '__main__':
|
|
'new-wide': 'Wide Settings',
|
|
'new-wide': 'Wide Settings',
|
|
'old-default': 'Old Seeding',
|
|
'old-default': 'Old Seeding',
|
|
}
|
|
}
|
|
- all_cut_plots(refresh=True, publish=False)
|
|
|
|
|
|
+ all_cut_plots(refresh=True, publish=True)
|