There is a newer version of the record available.

Published August 26, 2020 | Version v1.5.0.3
Software Open

OstapHEP/ostap: v1.5.0.3

  • 1. University of Liverpool
  • 2. @gitlabhq
  • 3. Gitter

Description

v1.5.0.3 New features
  1. add argument callable for models plotting and their conversion to TF1. It allows to draw some derived quantitites
    bw = 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
    
  2. add tiny utilities lrange and log_range (in addition to existing vrange) into ostap/utils/utils.py
    for 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"
    
  3. add methods amp_real, amp_imag, amp_phase for the Breit-Wigner-like models
  4. add Argand plot for the Breit-Wigner-like models
    bw = Ostap.Math.BreitWigner(... )
    ap = bw.argand ( xmin = ... , xmax = ... , npx = 500 )
    ap.draw('alc')
    
  5. add utilities for better visuzalisation of Dalitz densities
  6. more improvements for Dalitz plot vizualization
  7. more tweaks for Ostap::Math::DalitzIntegrator
  8. more tweaks for Ostap::Math::BW
  9. add bb ("bounding box") method for ROOT.TGraph-like objects.
  10. more tweaks for ROOT.RooMinimizer, in particular better control over printout
  11. add PDF.minuit: add FCN scaling for weighted dataset
  12. re-add checks for SumW2/Asymptotic checks for the PDF.fitTo for weighed datasets
  13. add new test test_fitting_minuit_weighted
  14. add two specific cases for Ostap::Math::PhaseSpaceNL
Backward incompatible changes: Bug fixes:

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