Belle II Software
light-2205-abys
plotting.py
1
# Include this only if running in a Jupyter notebook
2
# %matplotlib inline
3
4
import
matplotlib.pyplot
as
plt
5
from
root_pandas
import
read_root
6
7
df = read_root(
"ContinuumSuppression_applied.root"
)
8
9
fig, ax = plt.subplots()
10
11
signal_df = df.query(
"(isContinuumEvent == 0.0)"
)
12
continuum_df = df.query(
"(isContinuumEvent == 1.0)"
)
13
14
hist_kwargs = dict(bins=30, range=(0, 1), histtype=
"step"
)
15
ax.hist(signal_df[
"ContProb"
], label=
"Not Continuum"
, **hist_kwargs)
16
ax.hist(continuum_df[
"ContProb"
], label=
"Continuum"
, **hist_kwargs)
17
ax.set_xlabel(
"ContinuumProbability"
)
18
ax.set_ylabel(
"Total number of candidates"
)
19
ax.legend()
20
fig.savefig(
"ContinuumProbability.pdf"
)
online_book
basf2
cs
plotting.py
Generated on Thu Jun 9 2022 01:38:39 for Belle II Software by
1.9.1