qqbarthreshold is hosted by Hepforge, IPPP Durham
QQbar_threshold
energy_levels.hpp
Go to the documentation of this file.
1 
29 #pragma once
30 
31 #include "parameters.hpp"
32 
34 namespace QQbar_threshold{
35 
37 
64  double ttbar_energy_level(
65  int n, double mu, double m, order o,
66  options opt = top_options()
67  );
68 
70 
97  double bbbar_energy_level(
98  int n, double mu, double m, order o,
99  options opt = bottom_options()
100  );
101 
102  namespace detail{
110  double QQbar_energy_level(int n, parameters const & p, double m_unshifted);
111 
119  double QQbar_energy_level_no_shift(int n, parameters const & p);
120 
127  double E_LO(int n, parameters const & p);
128 
129  // higher order corrections
130  // E = E_LO * (1 + e1 + ... + e<order>)
131  double e1(int n, parameters const & p);
132  double e2(int n, parameters const & p);
133  double e3(int n, parameters const & p);
134  double e1_no_mass_shift(int n, parameters const & p);
135  double e2_no_mass_shift(int n, parameters const & p);
136  double e3_no_mass_shift(int n, parameters const & p);
137 
138  //charm integrand
139  complex light_integrand_NNLO(complex const & u, parameters const & p);
140 
141  }
142 }
Definition: alpha_s.hpp:37
double ttbar_energy_level(int n, double mu, double m, order o, options opt=top_options())
Computes the binding energy of an S-wave bound state.
double bbbar_energy_level(int n, double mu, double m, order o, options opt=bottom_options())
Computes the binding energy of an S-wave bound state.
options top_options()
Default option settings for top-related functions.
options bottom_options()
Default option settings for bottom-related functions.
Options for functions.