Skip to content

Commit e0ee393

Browse files
add classes to global config (#73)
* add classes to global config * apply new indentation * add comments with colours
1 parent 482e424 commit e0ee393

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

puma/utils/__init__.py

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,50 @@ def get_good_colours():
149149
"colour": "#ff7f0e", # orange (like c-jets)
150150
"legend_label": "$c$-jets",
151151
},
152+
"ccjets": {
153+
"colour": "#ad4305",
154+
"legend_label": "$cc$-jets",
155+
},
156+
"upjets": {
157+
"colour": "#9ed670",
158+
"legend_label": "$u$-jets",
159+
},
160+
"djets": {
161+
"colour": "#274e13",
162+
"legend_label": "$d$-jets",
163+
},
164+
"sjets": {
165+
"colour": "#00bfaf",
166+
"legend_label": "$s$-jets",
167+
},
168+
"gluonjets": {
169+
"colour": "#7b4e24",
170+
"legend_label": "gluon-jets",
171+
},
172+
"lquarkjets": {
173+
"colour": "#A05252",
174+
"legend_label": "light-fl. jets w/o gluons",
175+
},
176+
"hadrcbjets": {
177+
"colour": "#264653",
178+
"legend_label": "hadronic $b$-hadron decay",
179+
},
180+
"lepcbjets": {
181+
"colour": "#190099",
182+
"legend_label": "leptonic $b$-hadron decay",
183+
},
184+
"singleebdecay": {
185+
"colour": "#e9c46a",
186+
"legend_label": "$e$'s in $b$- or $c$-hadron decay",
187+
},
188+
"singlemubdecay": {
189+
"colour": "#f4a261",
190+
"legend_label": "$\\mu$'s in $b$- or $c$-hadron decay",
191+
},
192+
"singletaubdecay": {
193+
"colour": "#e76f51",
194+
"legend_label": "\u03C4's in $b$- or $c$-hadron decay",
195+
},
152196
},
153197
"hist_err_style": {
154198
"fill": False,

0 commit comments

Comments
 (0)