-
Notifications
You must be signed in to change notification settings - Fork 70
Description
Dear experts,
My name is George Karathanasis and I am working on a measurement of dBF/dq2 for the B->mmK decay (for the CMS experiment). The last step of the analysis is to compare our measurements with several theoretical models. Therefore, we are thinking to use your package (with the proper citations of course). Now my question is the following. Reading the documentation I understood that the code is as simple as this[]. I also used a different package named "EOS". Comparing the two I see large differences (see attached). So the 1st part of my question do you think my code [] is wrong? If not is the difference between Flav-io and EOS expected? Thanks a lot in advance
Best regards,
George Karathanasis
[*] import flavio as fl
BFtotal=0;
dBF=[]
for i in range(66):
if i==0: q2_min=0.1
else: q2_min=float(i)(22.0-0.1)/66.0
q2_max=(float(i)+1)(22.0-0.1)/66.0
print("bin",i,"min",q2_min,"max",q2_max,"dBF=",fl.sm_prediction('<dBR/dq2>(B+->Kmumu)',q2min=q2_min,q2max=q2_max))
BFtotal+=fl.sm_prediction('<dBR/dq2>(B+->Kmumu)',q2min=q2_min,q2max=q2_max)(q2_max-q2_min)
dBF.append(fl.sm_prediction('<dBR/dq2>(B+->Kmumu)',q2min=q2_min,q2max=q2_max)(q2_max-q2_min)
