Skip to content

Commit

Permalink
Still working on O(as^3) massive coefficient functions (work in progr…
Browse files Browse the repository at this point in the history
…ess)
  • Loading branch information
vbertone committed Aug 1, 2024
1 parent ef87dfb commit c7c1d44
Show file tree
Hide file tree
Showing 4 changed files with 534 additions and 195 deletions.
6 changes: 4 additions & 2 deletions inc/apfel/massivezerocoefficientfunctionsunp_sl.h
Original file line number Diff line number Diff line change
Expand Up @@ -504,9 +504,10 @@ namespace apfel
class Cm0L3psNC_l: public Expression
{
public:
Cm0L3psNC_l(bool const& muterms = true);
Cm0L3psNC_l(int const& nf, bool const& muterms = true);
double Regular(double const& x) const;
private:
int const _nf;
bool const _muterms;
};

Expand All @@ -518,9 +519,10 @@ namespace apfel
class Cm0L3psNC_l2: public Expression
{
public:
Cm0L3psNC_l2(bool const& muterms = true);
Cm0L3psNC_l2(int const& nf, bool const& muterms = true);
double Regular(double const& x) const;
private:
int const _nf;
bool const _muterms;
};
///@}
Expand Down
4 changes: 2 additions & 2 deletions src/structurefunctions/massivecoefficientfunctionsunp_sl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -867,8 +867,8 @@ namespace apfel
Expression(),
_eta(eta),
_cm0L3ps_c(Cm0L3psNC_c{nf}),
_cm0L3ps_l(Cm0L3psNC_l{false}),
_cm0L3ps_l2(Cm0L3psNC_l2{false}),
_cm0L3ps_l(Cm0L3psNC_l{nf, false}),
_cm0L3ps_l2(Cm0L3psNC_l2{nf, false}),
_cmsxL3ps(CmsxL3psNC{nf, eta, false}),
_cm0sxL3ps(Cm0sxL3psNC{nf, eta, false})
{
Expand Down
Loading

0 comments on commit c7c1d44

Please sign in to comment.