diff --git a/src/MatchingCondition.cc b/src/MatchingCondition.cc index 05c48c9..1687f64 100644 --- a/src/MatchingCondition.cc +++ b/src/MatchingCondition.cc @@ -106,7 +106,7 @@ vector MatchingCondition::NotOrdered(double x) const { return { central, higher, lower }; } else { cout << "Error: something has gone wrong in " - "MatchingCondition::MuIndependentNfIndependentTerm" + "MatchingCondition::NotOrdered" << endl; exit(-1); } @@ -115,6 +115,9 @@ vector MatchingCondition::NotOrdered(double x) const { if (version_ == "exact") { central = a_Qg_30(x, 0); return { central, central, central }; + } else if (version_ == "gm") { + central = a_Qg_30(x, 2); + return { central, central, central }; } else if (version_ == "abmp") low_id = -1; else if (version_ == "klmv")