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

bug fix for parsing phasespace parameter

parent 5f61ecc8
No related branches found
No related tags found
No related merge requests found
......@@ -223,7 +223,6 @@ void FitParamsBaseNew::setMnUsrParamsDouble(MnUserParameters& upar, mapStrDouble
mapStrDouble::iterator it;
for (it=startDoubleMap.begin(); it!=startDoubleMap.end(); ++it){
std::string theName =it->first + suffix;
double theStartVal=it->second;
double theErrVal=errDoubleMap[it->first];
......
......@@ -20,6 +20,7 @@ void StreamFitParmsBaseNew::fillParams(){
const std::string massSuffix="Mass";
const std::string widthSuffix="Width";
const std::string gFactorSuffix="gFactor";
const std::string otherSuffix="Other";
fillLamLamAmps(_paramVal.MagLamLams, _paramErr.MagLamLams, magSuffix);
fillLamLamAmps(_paramVal.PhiLamLams, _paramErr.PhiLamLams, phiSuffix);
......@@ -28,6 +29,7 @@ void StreamFitParmsBaseNew::fillParams(){
fillDoubles(_paramVal.Masses, _paramErr.Masses, massSuffix);
fillDoubles(_paramVal.Widths, _paramErr.Widths, widthSuffix);
fillDoubles(_paramVal.gFactors, _paramErr.gFactors, gFactorSuffix);
fillDoubles(_paramVal.otherParams, _paramErr.otherParams, otherSuffix);
}
void StreamFitParmsBaseNew::fillLamLamAmps(mapStrJPCLamLam& valMap, mapStrJPCLamLam& errMap, const std::string& suffix){
......
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