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

minor changes in pdt-table

parent 61e9364e
No related branches found
No related tags found
No related merge requests found
......@@ -294,12 +294,15 @@ void TMatrixGeneral::init(){
else{
bool withAdler=_kMatrixParser->useAdler();
_kMatr=std::shared_ptr<KMatrixRel>(new KMatrixRelBg(_kPoles,_phpVecs, orderBg, withAdler));
// _kMatr->updateBgTerms(0, 0, 0,-1.199873290423058);
// _kMatr->updateBgTerms(0, 0, 1,-1.313917626425926);
// _kMatr->updateBgTerms(0, 1, 1,-3.41578529550388);
_kMatr->updateBgTerms(0, 0, 0, 0.0);
_kMatr->updateBgTerms(0, 0, 1, 0.0);
_kMatr->updateBgTerms(0, 1, 1, 0.0);
_kMatr->updateBgTerms(0, 0, 0,2.420422828649453);
_kMatr->updateBgTerms(0, 0, 1,0.9134263692474104);
_kMatr->updateBgTerms(0, 1, 1,0.9134546802616772);
_kMatr->updateBgTerms(0, 0, 2,0.);
_kMatr->updateBgTerms(0, 1, 2,0.);
_kMatr->updateBgTerms(0, 2, 2,0.);
// _kMatr->updateBgTerms(0, 0, 0, 0.0);
// _kMatr->updateBgTerms(0, 0, 1, 0.0);
// _kMatr->updateBgTerms(0, 1, 1, 0.0);
if(orderBg>0){
_kMatr->updateBgTerms(1, 0, 0, -0.15099);
_kMatr->updateBgTerms(1, 0, 1, -0.038266);
......
......@@ -245,11 +245,17 @@ Boson photon0 \gamma_0 0 2 -1 -1 0 0 0 0 0 0.0 0.0 undefined [PD
#
Baryon proton p 3 1 1 0 0 1 1 0 0 0.93827 0.0 undefined [none]
Baryon antiproton \overline{p} -3 1 -1 0 0 1 -1 0 0 0.93827 0.0 undefined [none]
Baryon Delta++ \Delta^{++} 6 3 1 0 0 3 3 0 0 1.231 0.111 relBW [PDG]
Baryon Delta++ \Delta^{++} 6 3 1 0 0 3 3 0 0 1.231 0.111 relBW [PDG]
Baryon Delta(1620)++ \Delta(1620)^{++} 6 1 -1 0 0 3 3 0 0 1.63 0.14 relBW [PDG]
Baryon Delta(1700)++ \Delta(1700)^{++} 6 3 -1 0 0 3 3 0 0 1.7 0.3 relBW [PDG]
Baryon Delta(1910)++ \Delta(1910)^{++} 6 1 1 0 0 3 3 0 0 1.89 0.3 relBW [PDG]
Baryon Lambda_c+ \Lambda_c^+ 3 1 1 0 0 0 0 0 1 2.28646 0.0001 relBW [PDG]
Baryon Lambda(1405)0 \Lambda(1405)^0 0 1 -1 0 0 0 0 -1 0 1.4051 0.05 relBW [PDG]
Baryon Lambda(1520)0 \Lambda(1520)^0 0 3 -1 0 0 0 0 -1 0 1.5195 0.0156 relBW [PDG]
Baryon Lambda(1810)0 \Lambda(1810)^0 0 1 1 0 0 0 0 -1 0 1.81 0.15 relBW [PDG]
Baryon Lambda(1820)0 \Lambda(1820)^0 0 5 1 0 0 0 0 -1 0 1.82 0.08 relBW [PDG]
Baryon Lambda(1890)0 \Lambda(1890)^0 0 3 1 0 0 0 0 -1 0 1.89 0.12 relBW [PDG]
Baryon Sigma+ \Sigma^+ 3 1 1 0 0 2 2 -1 0 1.18937 0.0001 relBW [PDG]
Baryon Sigma(1620)0 \Sigma(1620)^0 0 1 -1 0 0 2 0 -1 0 1.62 0.17 relBW [PDG]
Baryon Sigma(1670)0 \Sigma(1670)^0 0 3 -1 0 0 2 0 -1 0 1.67 0.06 relBW [PDG]
Baryon Lambda_c(2625)+ \Lambda_c(2625)^+ 3 3 -1 0 0 0 0 0 1 2.262811 0.01 relBW [PDG]
Baryon Lambda_c(2625)+ \Lambda_c(2625)^+ 3 3 -1 0 0 0 0 0 1 2.262811 0.01 relBW [PDG]
......@@ -7,8 +7,8 @@
#include "TKey.h"
#include <algorithm> // std::max
void DataFitCompare(std::string rootFileName, std::string histname, bool createcanvas=true);
double CalcHistoChi2(TH1F* histoData, TH1F* histoFit);
void DataFitCompare(std::string rootFileName, std::string histname, bool createcanvas=true);
void DataFitComp2(TH1F* histoData, TH1F* histoFit);
void DataFitCompareAll(std::string rootFileName, bool saveImage=false);
......@@ -42,6 +42,7 @@ void DataFitCompare(std::string rootFileName, std::string histname, bool createc
if(createcanvas)
// TCanvas* canvas = new TCanvas("canvas","c1",1000,1000);
std::cout << "\n" << std::endl;
CalcHistoChi2(histoData, histoFit);
DataFitComp2(histoData, histoFit);
......@@ -68,9 +69,8 @@ double CalcHistoChi2(TH1F* histoData, TH1F* histoFit){
// std::cout << pow(histoData->GetBinContent(i) - histoFit->GetBinContent(i), 2)/(error*error) << std::endl;
nonzerobins++;
}
std::cout << "Chi2 for histo " << histoData->GetName() << "\t" << chi2/nonzerobins
<< "p =" << TMath::Prob(chi2, nonzerobins) << std::endl;
std::cout << "Chi2 for histo " << histoData->GetName() << "\t" << chi2/nonzerobins
<< "\tp =" << TMath::Prob(chi2, nonzerobins) << std::endl;
return chi2;
......
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