Angular analysis of B+->K*+(K+pi0)mumu
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.

58 lines
1.2 KiB

  1. /**
  2. * @file values.hh
  3. * @author David Gerick
  4. * @date 2018-04-03
  5. *
  6. * This file contains the values that may be shared between functions!
  7. *
  8. */
  9. #ifndef VALUES_H
  10. #define VALUES_H
  11. namespace fcnc {
  12. ///class that stores the options used in the analysis
  13. class values {
  14. public:
  15. ///resulting chi2 of angular acceptance correction parametrization
  16. double angacccorr_chi2;
  17. ///number of degrees of freedom in chi2 test of angular acceptance correction
  18. int angacccorr_ndof;
  19. ///chi2 calculated from 4 * 1D projections in angular acceptance corrections
  20. double chi2_4_1D;
  21. double chi2_4_1D_ctk;
  22. double chi2_4_1D_ctl;
  23. double chi2_4_1D_phi;
  24. double chi2_4_1D_q2;
  25. ///number of degrees of freedom in 4 * 1D projections
  26. int ndof_4_1D;
  27. int ndof_4_1D_ctk;
  28. int ndof_4_1D_ctl;
  29. int ndof_4_1D_phi;
  30. int ndof_4_1D_q2;
  31. //constructor:
  32. values():
  33. angacccorr_chi2(1.0),
  34. angacccorr_ndof(1),
  35. chi2_4_1D(1.0),
  36. chi2_4_1D_ctk(1.0),
  37. chi2_4_1D_ctl(1.0),
  38. chi2_4_1D_phi(1.0),
  39. chi2_4_1D_q2(1.0),
  40. ndof_4_1D(1),
  41. ndof_4_1D_ctk(1),
  42. ndof_4_1D_ctl(1),
  43. ndof_4_1D_phi(1),
  44. ndof_4_1D_q2(1)
  45. {
  46. };
  47. };
  48. }
  49. #endif