Skip to content
Snippets Groups Projects
Commit 0bb0ef86 authored by Malte Albrecht's avatar Malte Albrecht
Browse files

Updated mass and width of etac in pdtNew.table, fixed warning on comparison of signed/unsigned ints

parent 9473630d
No related branches found
No related tags found
No related merge requests found
......@@ -353,7 +353,7 @@ void FitParColBase::setAbsPawianParamsDouble(std::shared_ptr<AbsPawianParameters
else if(theName.size()>20 && (theName.compare(theName.size()-19, theName.size(), "channelScalingOther")==0)){
minVal = 0.;
// maxVal = theStartVal+30.*theErrVal;
upar->Add(theName, theStartVal, theErrVal, minVal, maxVal);
upar->Add(theName, theStartVal, theErrVal, minVal, maxVal*10.);
}
else{
upar->Add(theName, theStartVal, theErrVal, minVal, maxVal);
......
......@@ -225,7 +225,7 @@ void EvoMinimizer::printFitResult(double evtWeightSumData){
Info <<"Final fit params:" << endmsg;
std::vector<double> pVals=_bestPawianParams->Params();
std::vector<double> pErrs=_bestPawianParams->Errors();
for(int i=0; i < pVals.size(); ++i){
for(unsigned int i=0; i < pVals.size(); ++i){
Info << _bestPawianParams->GetName(i) << " : " << pVals.at(i) << "\t" << pErrs.at(i) << endmsg;
}
......
......@@ -191,7 +191,7 @@ Meson D- D^- -3 0 -1 0 0 1 -1 0 -1 1.86962 0.0001 relBW [PDG nonet
#
# type name texName 3*Q 2*J P C G I I3 S C mass width dyn.f comment
#
Meson etac \eta_c 0 0 -1 1 1 0 0 0 0 2.981 0.0297 relBW [PDG]
Meson etac \eta_c 0 0 -1 1 1 0 0 0 0 2.9836 0.0322 relBW [PDG]
Meson Jpsi J/\psi 0 2 -1 -1 -1 0 0 0 0 3.096916 0.0929 relBW [PDG]
Meson Chic0 chi_{c0} 0 0 1 1 1 0 0 0 0 3414.75 0.0103 relBW [PDG]
Meson Chic1 chi_{c1} 0 2 1 1 1 0 0 0 0 3.51066 0.00086 relBW [PDG]
......
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