Published August 26, 2020
| Version v1.5.0.3
Software
Open
OstapHEP/ostap: v1.5.0.3
Authors/Creators
- 1. University of Liverpool
- 2. @gitlabhq
- 3. Gitter
Description
v1.5.0.3
New features
- add argument
callablefor models plotting and their conversion toTF1. It allows to draw some derived quantititesbw = Ostap.Math.BreitWigner( ... ) bw.draw ( xmin = ... , xmax = ... ) ## draw the Breit-Wigner lineshape bw.draw ( xmin = ... , xmax = ... , callable = lambda x : bw.amp ( x ).real ) ## draw real part of amplitude bw.draw ( xmin = ... , xmax = ... , callable = lambda x : bw.amp ( x ).imag ) ## draw real part of amplitude bw.draw ( xmin = ... , xmax = ... , callable = lambda x : cmath.phase ( bw.amp ( x ) ) ## draw the phase - add tiny utilities
lrangeandlog_range(in addition to existingvrange) intoostap/utils/utils.pyfor x in vrange ( 0.0 , 10.0 , 10 ) : print x ## "lin-range" for x in lrange ( 1.0 , 10.0**10 , 10 ) : print x ## "log-range" - add methods
amp_real,amp_imag,amp_phasefor the Breit-Wigner-like models - add Argand plot for the Breit-Wigner-like models
bw = Ostap.Math.BreitWigner(... ) ap = bw.argand ( xmin = ... , xmax = ... , npx = 500 ) ap.draw('alc') - add utilities for better visuzalisation of Dalitz densities
- more improvements for Dalitz plot vizualization
- more tweaks for
Ostap::Math::DalitzIntegrator - more tweaks for
Ostap::Math::BW - add
bb("bounding box") method forROOT.TGraph-like objects. - more tweaks for
ROOT.RooMinimizer, in particular better control over printout - add
PDF.minuit: add FCN scaling for weighted dataset - re-add checks for
SumW2/Asymptoticchecks for thePDF.fitTofor weighed datasets - add new test
test_fitting_minuit_weighted - add two specific cases for
Ostap::Math::PhaseSpaceNL
Files
OstapHEP/ostap-v1.5.0.3.zip
Files
(17.5 MB)
| Name | Size | Download all |
|---|---|---|
|
md5:59a4164a7748577fa1f9024baeff9846
|
17.5 MB | Preview Download |
Additional details
Related works
- Is supplement to
- https://github.com/OstapHEP/ostap/tree/v1.5.0.3 (URL)