Implementation of binned observables in the Likelihood #225
-
Hi all, I have probably a simple question, but I have not found the answer in the previous issues. Hopefully it will be useful for other "rookies" like me. When I try to implement in the likelihood binned observables just by their name, e.g. '(B0->K*mumu)', I get the error 'no measurements found'. Of course, I understand that one should also implement the binning, i.e. q2min and q2max, but I have not found a way of doing so. How do I pass in q2min and q2max information into the likelihood? Thank you very much for your time and great work! Example of code (that raises the error): |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Observables that require additional arguments can be specified in three equivalent ways:
|
Beta Was this translation helpful? Give feedback.
-
Thank you very much! I'll make good use of it. |
Beta Was this translation helpful? Give feedback.
Observables that require additional arguments can be specified in three equivalent ways:
('<FL>(B0->K*mumu)', 4, 6)
['<FL>(B0->K*mumu)', 4, 6]
{'name: '<FL>(B0->K*mumu)', 'q2min': 4, 'q2max': 6}