Skip to content
Snippets Groups Projects
Commit 3db585bf authored by Julian Pychy's avatar Julian Pychy
Browse files

fix of pbarp amplitudes in coupled channel mode

parent 96a524a7
No related branches found
No related tags found
No related merge requests found
......@@ -300,11 +300,11 @@ void pbarpBaseLh::getDefaultParams(fitParams& fitVal, fitParams& fitErr){
currentMagErrMap[*it] = magFactor;
currentPhiErrMap[*it] = 0.3;
}
fitVal.Mags["pbarp"]=currentMagValMap;
fitVal.Phis["pbarp"]=currentPhiValMap;
fitErr.Mags["pbarp"]=currentMagErrMap;
fitErr.Phis["pbarp"]=currentPhiErrMap;
fitVal.Mags["pbarp"].insert(currentMagValMap.begin(), currentMagValMap.end());
fitVal.Phis["pbarp"].insert(currentPhiValMap.begin(), currentPhiValMap.end());
fitErr.Mags["pbarp"].insert(currentMagErrMap.begin(), currentMagErrMap.end());
fitErr.Phis["pbarp"].insert(currentPhiErrMap.begin(), currentPhiErrMap.end());
}
void pbarpBaseLh::print(std::ostream& os) const{
......
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