Skip to content

Commit

Permalink
Rename blumline -> abbdvss
Browse files Browse the repository at this point in the history
  • Loading branch information
niclaurenti committed Mar 27, 2024
1 parent 8f3b02c commit 7255a05
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/MatchingCondition.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ MatchingCondition::MatchingCondition(

// check version
if (version != "exact" && version != "improved" && version != "original"
&& version != "blumline") {
cout << "Error: version must be 'exact', 'improved', 'blumline' or "
&& version != "abbdvss") {
cout << "Error: version must be 'exact', 'improved', 'abbdvss' or "
"'original'! Got "
<< version << endl;
exit(-1);
}

if (entry2 == 'q' && (version == "improved" || version == "blumline")) {
cout << "Error: quark channel doesn't have 'improved' or 'blumline' "
if (entry2 == 'q' && (version == "improved" || version == "abbdvss")) {
cout << "Error: quark channel doesn't have 'improved' or 'abbdvss' "
"version!"
<< endl;
exit(-1);
Expand Down Expand Up @@ -79,7 +79,8 @@ Value MatchingCondition::MuIndependentNfIndependentTerm(double x) const {
int low_id;
if (version_ == "exact")
return Value(a_Qg_30(x, 0));
else if (version_ == "blumline")
// abbdvss = Ablinger, Behring, Blumlein, De Freitas, von Manteuffel, Schneider, Schonwald
else if (version_ == "abbdvss")
// This version doesn't have an uncertainty band
// so returning the same value three times
return Value(a_Qg_30(x, 2));
Expand Down

0 comments on commit 7255a05

Please sign in to comment.