PhD thesis of Renata Kopečná Angular analysis of B+->K*+(K+pi0)mu+mu- decay with the LHCb experiment
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
247 B

  1. from __future__ import print_function
  2. import numpy as np
  3. def RunTag(Run):
  4. return "Run"+str(Run)
  5. def RunList():
  6. return ["1","2","12"]
  7. def RunDict():
  8. return{ "1" : ["1"],
  9. "2" : ["2"],
  10. "12": ["1","2"]
  11. }