Skip to content

Commit a4e1347

Browse files
committed
enh: add zfit physics
1 parent 5ea0306 commit a4e1347

File tree

2 files changed

+74
-42
lines changed

2 files changed

+74
-42
lines changed

_website/tutorials/introduction/upgrade_guide_020.ipynb

+37-21
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"# standard imports\n",
2525
"import zfit\n",
2626
"import zfit.z.numpy as znp # use this \"numpy-like\" for mathematical operations\n",
27+
"import zfit_physics as zphys # physics module, with new physics-inspired PDFs\n",
2728
"from zfit import z"
2829
]
2930
},
@@ -35,6 +36,8 @@
3536
"outputs": [],
3637
"source": [
3738
"# example usage of the numpy-like backend, use it if possible\n",
39+
"\n",
40+
"\n",
3841
"@z.function\n",
3942
"def maximum(x, y):\n",
4043
" return znp.maximum(x, y)\n",
@@ -133,7 +136,7 @@
133136
"outputs": [],
134137
"source": [
135138
"# this allows, for example, for a more intuitive way\n",
136-
"np.linspace(*obs12.v1.limits, 7)"
139+
"np.linspace(*obs12.v1.limits, num=7)"
137140
]
138141
},
139142
{
@@ -205,7 +208,7 @@
205208
"source": [
206209
"## PDFs\n",
207210
"\n",
208-
"- there are a plethora of new PDFs, mostly covering physics inspired use-cases. Amongst the interesting ones are a `GeneralizedCB`, a more general version of the `DoubleCB` that should be preferred in the future. Also a Voigt profile is available, Bernstein polynomials, QGauss, GaussExpTail, etc.\n",
211+
"- there are a plethora of new PDFs, mostly covering physics inspired use-cases. Amongst the interesting ones are a `GeneralizedCB`, a more general version of the `DoubleCB` that should be preferred in the future. A Voigt profile is available, Bernstein polynomials, QGauss, GaussExpTail, etc. and in [zfit-physics](https://zfit.readthedocs.io/en/latest/user_api/zfit.pdf.html#physics-pdfs) HEP specific PDFS , from `CMSShape`, `Cruijff`, `Novosibirsk` and more. \n",
209212
"- the `TruncatedPDF` has been added to allow for a more flexible way of truncating a PDF. Any PDF can be converted to a truncated version using `to_truncated` (which, by default, truncates to the limits of the space).\n",
210213
"- PDFs have a new `plot` method that allows for a quick plotting of the PDF (it takes an \"obs\" argument that allows to simply project it!). This is still experimental and may changes, the main purpose is to allow for a quick check of the PDF in interactive environments. The function is fully compatible with matplotlib and takes an `ax` argument, it also allows to pass through any keyword arguments to the plotting function."
211214
]
@@ -217,7 +220,8 @@
217220
"metadata": {},
218221
"outputs": [],
219222
"source": [
220-
"# all the new PDFs"
223+
"# all the new PDFs\n",
224+
"print(zfit.pdf.__all__)"
221225
]
222226
},
223227
{
@@ -226,6 +230,16 @@
226230
"id": "18",
227231
"metadata": {},
228232
"outputs": [],
233+
"source": [
234+
"print(zphys.pdf.__all__)"
235+
]
236+
},
237+
{
238+
"cell_type": "code",
239+
"execution_count": null,
240+
"id": "19",
241+
"metadata": {},
242+
"outputs": [],
229243
"source": [
230244
"# create a PDF\n",
231245
"pdf = zfit.pdf.Gauss(\n",
@@ -240,7 +254,7 @@
240254
{
241255
"cell_type": "code",
242256
"execution_count": null,
243-
"id": "19",
257+
"id": "20",
244258
"metadata": {},
245259
"outputs": [],
246260
"source": [
@@ -251,7 +265,7 @@
251265
{
252266
"cell_type": "code",
253267
"execution_count": null,
254-
"id": "20",
268+
"id": "21",
255269
"metadata": {},
256270
"outputs": [],
257271
"source": [
@@ -261,7 +275,7 @@
261275
},
262276
{
263277
"cell_type": "markdown",
264-
"id": "21",
278+
"id": "22",
265279
"metadata": {},
266280
"source": [
267281
"## Loss and minimizer\n",
@@ -281,7 +295,7 @@
281295
{
282296
"cell_type": "code",
283297
"execution_count": null,
284-
"id": "22",
298+
"id": "23",
285299
"metadata": {},
286300
"outputs": [],
287301
"source": [
@@ -294,7 +308,7 @@
294308
{
295309
"cell_type": "code",
296310
"execution_count": null,
297-
"id": "23",
311+
"id": "24",
298312
"metadata": {},
299313
"outputs": [],
300314
"source": [
@@ -304,7 +318,7 @@
304318
},
305319
{
306320
"cell_type": "markdown",
307-
"id": "24",
321+
"id": "25",
308322
"metadata": {},
309323
"source": [
310324
"## Result\n",
@@ -317,7 +331,7 @@
317331
{
318332
"cell_type": "code",
319333
"execution_count": null,
320-
"id": "25",
334+
"id": "26",
321335
"metadata": {},
322336
"outputs": [],
323337
"source": [
@@ -330,7 +344,7 @@
330344
{
331345
"cell_type": "code",
332346
"execution_count": null,
333-
"id": "26",
347+
"id": "27",
334348
"metadata": {},
335349
"outputs": [],
336350
"source": [
@@ -341,7 +355,7 @@
341355
},
342356
{
343357
"cell_type": "markdown",
344-
"id": "27",
358+
"id": "28",
345359
"metadata": {},
346360
"source": [
347361
"## Serialization\n",
@@ -357,7 +371,7 @@
357371
{
358372
"cell_type": "code",
359373
"execution_count": null,
360-
"id": "28",
374+
"id": "29",
361375
"metadata": {},
362376
"outputs": [],
363377
"source": [
@@ -368,7 +382,7 @@
368382
{
369383
"cell_type": "code",
370384
"execution_count": null,
371-
"id": "29",
385+
"id": "30",
372386
"metadata": {},
373387
"outputs": [],
374388
"source": [
@@ -380,7 +394,7 @@
380394
},
381395
{
382396
"cell_type": "markdown",
383-
"id": "30",
397+
"id": "31",
384398
"metadata": {},
385399
"source": [
386400
"## Parameters as arguments\n",
@@ -393,7 +407,7 @@
393407
{
394408
"cell_type": "code",
395409
"execution_count": null,
396-
"id": "31",
410+
"id": "32",
397411
"metadata": {},
398412
"outputs": [],
399413
"source": [
@@ -408,7 +422,7 @@
408422
{
409423
"cell_type": "code",
410424
"execution_count": null,
411-
"id": "32",
425+
"id": "33",
412426
"metadata": {},
413427
"outputs": [],
414428
"source": [
@@ -431,7 +445,7 @@
431445
{
432446
"cell_type": "code",
433447
"execution_count": null,
434-
"id": "33",
448+
"id": "34",
435449
"metadata": {},
436450
"outputs": [],
437451
"source": [
@@ -444,11 +458,13 @@
444458
{
445459
"cell_type": "code",
446460
"execution_count": null,
447-
"id": "34",
461+
"id": "35",
448462
"metadata": {},
449463
"outputs": [],
450464
"source": [
451465
"# creating a PDF looks also different, but here we use the name of the parametrization and the axis (integers)\n",
466+
"\n",
467+
"\n",
452468
"class MyGauss2D(zfit.pdf.ZPDF):\n",
453469
" _PARAMS = (\"mu\", \"sigma\")\n",
454470
" _N_OBS = 2\n",
@@ -465,7 +481,7 @@
465481
{
466482
"cell_type": "code",
467483
"execution_count": null,
468-
"id": "35",
484+
"id": "36",
469485
"metadata": {},
470486
"outputs": [],
471487
"source": [
@@ -476,7 +492,7 @@
476492
{
477493
"cell_type": "code",
478494
"execution_count": null,
479-
"id": "36",
495+
"id": "37",
480496
"metadata": {},
481497
"outputs": [],
482498
"source": []

0 commit comments

Comments
 (0)