Skip to content
Snippets Groups Projects
Unverified Commit 9253c080 authored by Frank Sauerburger's avatar Frank Sauerburger
Browse files

Merge branch '62-integrate-and-interface-to-uhep'

parents 42ee2e03 728ae158
No related branches found
No related tags found
1 merge request!56Resolve "Integrate and interface to uhep"
Pipeline #12667 passed
%% Cell type:code id: tags:
``` python
import pandas as pd
import seaborn as sns
from nnfwtbn import Variable, Process, Cut, hist, McStack, DataStack, Stack
from nnfwtbn import toydata
from nnfwtbn.plot import hist
import uhepp
```
%% Cell type:code id: tags:
``` python
df = toydata.get()
```
%% Cell type:code id: tags:
``` python
df.compute()
```
%% Cell type:code id: tags:
``` python
p_ztt = Process(r"$Z\rightarrow\tau\tau$", range=(0, 0))
p_sig = Process(r"Signal", range=(1, 1))
p_asimov = Process(r"Asimov", selection=lambda d: d.fpid >= 0)
```
%% Cell type:code id: tags:
``` python
colors = ["windows blue", "amber", "greyish", "faded green", "dusty purple"]
palette = sns.xkcd_palette(colors)
s_bkg = McStack(p_ztt, p_sig, palette=palette)
s_data = DataStack(p_asimov)
```
%% Cell type:code id: tags:
``` python
v_higgs_m = Variable(r"$m^H$", "higgs_m", "GeV")
```
%% Cell type:code id: tags:
``` python
c_vbf = Cut(lambda d: d.dijet_p4__M > 400) & \
Cut(lambda d: d.jet_1_p4__Pt >= 30) & \
Cut(lambda d: d.is_dijet_centrality == 1) & \
Cut(lambda d: d.jet_0_p4__Eta * df.jet_1_p4__Eta < 0) & \
Cut(lambda d: (d.jet_0_p4__Eta - df.jet_1_p4__Eta).abs() > 3)
```
%% Cell type:code id: tags:
``` python
h = hist(df, v_higgs_m, 20, [s_bkg, s_data], range=(0, 200), selection=None,
weight="weight", ratio_label="Data / SM", return_uhepp=True)
h.render()
```
%% Cell type:code id: tags:
``` python
json_string = h.to_jsons()
print(json_string)
```
%% Cell type:code id: tags:
``` python
h = uhepp.from_jsons(json_string)
h.render()
```
%% Cell type:code id: tags:
``` python
h.rebin_edges = [0, 70, 80, 90, 100, 110, 120, 130, 140, 150, 200]
h.subtext = "Hello"
h.brand = None
h.render()
```
This diff is collapsed.
......@@ -11,3 +11,4 @@ lxml
keras
tensorflow
dask[complete]
git+https://gitlab.cern.ch/fsauerbu/uhepp.git
......@@ -25,6 +25,7 @@ setup(name='nnfwtbn',
"keras",
"dask",
"dask[complete]",
"uhepp",
"lxml"],
test_suite='nnfwtbn.tests',
description='Experimental neural network framework to be named.',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment