flav-io / flavio

A Python package for flavour physics phenomenology in the Standard model and beyond
http://flav-io.github.io/
MIT License
71 stars 62 forks source link

Measurements for RK*. #109

Closed jackypheno closed 4 years ago

jackypheno commented 4 years ago

@peterstangl @DavidMStraub

my_obs = ['((B0->K*ll), q2min=1.1, q2max=6)'] FL = FastLikelihood(name='test', observables=my_obs) FL.make_measurement(threads=4)

fails to find measurements for the RK*.

line 74, in __init__ assert missing_obs == set(), "No measurement found for the observables: " + str(missing_obs) AssertionError: No measurement found for the observables: {'(<Rmue>(B0->K*ll), q2min=1.1, q2max=6)'}

Please have a look. Thanks

DavidMStraub commented 4 years ago

It should be a tuple, not a string.

jackypheno commented 4 years ago

@DavidMStraub

Thank so much!