Skip to content
Snippets Groups Projects
Commit bdfbd333 authored by Bertram Kopf's avatar Bertram Kopf
Browse files

bug fix in calculations of BW barrier factors for L>=9

parent 1c7d577e
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,7 @@ std::complex<double> BarrierFactor::BlattWeisskopf(int l, std::complex<double> z
(z*z*z*z*z*z*z + 28.*z*z*z*z*z*z + 1134.*z*z*z*z*z + 47250.*z*z*z*z +
1819125.*z*z*z + 58939650.*z*z + 1404728325.*z + 18261468225.));
}
else if(8>=l){ //attention work-around for l>=9
else if(8<=l){ //attention work-around for l<=9
return sqrt(4392846440677.*z*z*z*z*z*z*z*z /
(z*z*z*z*z*z*z*z + 36.*z*z*z*z*z*z*z + 1890.*z*z*z*z*z*z +
103950.*z*z*z*z*z + 5457375.*z*z*z*z + 255405150.*z*z*z +
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment