How to deal with this clash issue

I encountered this very strange error message while running the code in the ROOT6.30 environment.

There was a crash.
This is the entire stack trace of all threads:
===========================================================
#0  0x00007f0fc406060c in waitpid () from /lib64/libc.so.6
#1  0x00007f0fc3fddf62 in do_system () from /lib64/libc.so.6
#2  0x00007f0fc6fb094b in TUnixSystem::StackTrace() () from /home/yinghl/yinghl_work/Jpsi2mumu/miniconda/envs/Phys_30/lib/libCore.so.6.30
#3  0x00007f0fc6fae296 in TUnixSystem::DispatchSignals(ESignals) () from /home/yinghl/yinghl_work/Jpsi2mumu/miniconda/envs/Phys_30/lib/libCore.so.6.30
#4  <signal handler called>
#5  0x00007f0fc5442275 in RooTreeDataStore::loadValues(TTree const*, RooFormulaVar const*, char const*, int, int) () from /home/yinghl/yinghl_work/Jpsi2mumu/miniconda/envs/Phys_30/lib/libRooFitCore.so.6.30
#6  0x00007f0fc54452c8 in RooTreeDataStore::RooTreeDataStore(RooStringView, RooStringView, RooArgSet const&, TTree&, char const*, char const*) () from /home/yinghl/yinghl_work/Jpsi2mumu/miniconda/envs/Phys_30/lib/libRooFitCore.so.6.30
#7  0x00007f0fc528e16b in RooDataSet::RooDataSet(RooStringView, RooStringView, TTree*, RooArgSet const&, char const*, char const*) () from /home/yinghl/yinghl_work/Jpsi2mumu/miniconda/envs/Phys_30/lib/libRooFitCore.so.6.30
#8  0x00005649185ac956 in main ()
===========================================================


The lines below might hint at the cause of the crash. If you see question
marks as part of the stack trace, try to recompile with debugging information
enabled and export CLING_DEBUG=1 environment variable before running.
You may get help by asking at the ROOT forum https://root.cern/forum
preferably using the command (.forum bug) in the ROOT prompt.
Only if you are really convinced it is a bug in ROOT then please submit a
report at https://root.cern/bugs or (preferably) using the command (.gh bug) in
the ROOT prompt. Please post the ENTIRE stack trace
from above as an attachment in addition to anything else
that might help us fixing this issue.
===========================================================
#5  0x00007f0fc5442275 in RooTreeDataStore::loadValues(TTree const*, RooFormulaVar const*, char const*, int, int) () from /home/yinghl/yinghl_work/Jpsi2mumu/miniconda/envs/Phys_30/lib/libRooFitCore.so.6.30
#6  0x00007f0fc54452c8 in RooTreeDataStore::RooTreeDataStore(RooStringView, RooStringView, RooArgSet const&, TTree&, char const*, char const*) () from /home/yinghl/yinghl_work/Jpsi2mumu/miniconda/envs/Phys_30/lib/libRooFitCore.so.6.30
#7  0x00007f0fc528e16b in RooDataSet::RooDataSet(RooStringView, RooStringView, TTree*, RooArgSet const&, char const*, char const*) () from /home/yinghl/yinghl_work/Jpsi2mumu/miniconda/envs/Phys_30/lib/libRooFitCore.so.6.30
#8  0x00005649185ac956 in main ()
===========================================================
#include <TROOT.h>
#include <TChain.h>
#include <TFile.h>
#include <TH2.h>
#include <TStyle.h>
#include <TSystem.h>
#include <TCanvas.h>
#include <RooFit.h>
#include <RooPlot.h>
#include <RooHist.h>
#include <RooHistPdf.h>
#include <RooRealVar.h>
#include <RooFormulaVar.h>
#include <RooDataSet.h>
#include <RooGaussModel.h>
#include <RooAbsData.h>
#include <RooAddModel.h>
#include <RooAddPdf.h>
#include <RooDecay.h>
#include <string>
#include <vector>
#include <fstream>
#include <RooFitResult.h>
#include <TLegend.h>
#include "../../lhcbStyle/lhcbStyle.h"
using namespace std;
using namespace RooFit;

int main(int argc, char* argv[])
{
        setLHCbStyle();
		ROOT::EnableImplicitMT(20);
	ifstream config(argv[5]);
	string fitpara_file;
	config>>fitpara_file;
	TFile input_file(argv[1]);
        TTree* data_tree = (TTree*)input_file.Get("DecayTree");
       // TFile* root_file = new TFile(argv[2], "recreate");
        RooRealVar tz("tz", "tz", -10, 10);
        RooRealVar tzerr("tzerr", "tzerr", 0.001, 0.3);
        RooRealVar bkgSweight("bkg_sw", "bkg_sw", -100, 100);

        RooDataSet data_set("data_set", "data_set", data_tree, RooArgSet(tz, tzerr));
        long N = data_set.numEntries();
	TCanvas *can = new TCanvas("can","",1700,1300);
        RooRealVar zero("zero", "zero", 0);
        RooRealVar one("one", "one", 1.0);
        RooRealVar bias("bias", "bias", 0, -1, 1);
        RooRealVar sigma1("sigma1", "sigma1", 1.0, 0.01, 5);
        RooRealVar sigma2("sigma2", "sigma2", 2.0, 0.1, 10);
        RooRealVar beta("beta", "beta", 0.4, 0.0, 1.0);
        RooRealVar tau1("tau1", "tau1", 0.6, 0, 5);
        RooRealVar tau2("tau2", "tau2", 1.5, 0, 5);
        RooRealVar tau3("tau3", "tau3", 1.6, 0, 10);
        RooRealVar tau4("tau4", "tau4", 10, 0.1, 150);
        //RooRealVar tau5("tau5", "tau5", 3, 0, 20);
        RooRealVar f1("f1", "f1", 0.15, 0.0, 1.0);
        RooRealVar f2("f2", "f2", 0.04, 0.0, 1.0);
        RooRealVar f3("f3", "f3", 0.03, 0.0, 1.0);
        RooRealVar f4("f4", "f4", 0.02, 0.0, 1.0);
        //RooRealVar f5("f5", "f5", 0.01, 0.0, 1.0);
	RooArgSet *inforpar = new RooArgSet( bias,sigma1,sigma2,beta,tau1,tau2);
	inforpar->add(RooArgSet(tau3,tau4,f1,f2,f3,f4));
        //inforpar->add( RooArgSet( *cl_a1, *cr_a1, *cl_n1, *cr_n1, *fmc, *fwd ) );
	
	RooGaussModel res1("res1", "resolution model 1", tz, bias, sigma1, one, tzerr);
        RooGaussModel res2("res2", "resolution model 2", tz, bias, sigma2, one, tzerr);
        RooAddModel res("res", "resolution model", RooArgList(res2, res1), RooArgList(beta));
        RooDecay tzP1("tzP1", "tz decay function P1", tz, tau1, res, RooDecay::SingleSided);
        RooDecay tzP2("tzP2", "tz decay function P2", tz, tau2, res, RooDecay::SingleSided);
       // RooDecay tzP3("tzP3", "tz decay function P3", tz, tau5, res, RooDecay::SingleSided);
        RooDecay tzN("tzN", "tz decay function N", tz, tau3, res, RooDecay::Flipped);
        RooDecay tzPN("tzPN", "tz decay function PN", tz, tau4, res, RooDecay::DoubleSided);
        RooDecay tzDelta("tzDelta", "tz delta function", tz, zero, res, RooDecay::DoubleSided);
       // RooAddPdf tzPDF("tzPDF", "tz pdf", RooArgList(tzP1, tzP2, tzN, tzPN, tzP3, tzDelta), RooArgList(f1, f2, f3, f4, f5));
	RooAddPdf tzPDF("tzPDF", "tz pdf", RooArgList(tzP1, tzP2, tzN, tzPN, tzDelta), RooArgList(f1, f2, f3, f4));
		  cout << "Num of Entries = " << N << endl;
		  if(N<40000)
		  {
			  beta.setVal(0);
			  beta.setConstant(true);
			  sigma2.setConstant(true);
		  }
		  if(N<3000)
		  {
			  f4.setVal(0);
			  f4.setConstant(true);
			  tau4.setConstant(true);
		  }
		  if(N<1500)
		  {
			  f2.setVal(0);
			  f2.setConstant(true);
			  tau2.setConstant(true);
		  }
		  if(N<350)
		  {
			  f3.setVal(0);
			  f3.setConstant(0);
			  tau3.setConstant(true);
		  }
	
	inforpar->readFromFile(fitpara_file.c_str() );
	RooFitResult *rn =  tzPDF.fitTo(data_set, Minimizer("Minuit", "migradimproved"),NumCPU(20),Strategy(2), Save(),PrintLevel(0), ConditionalObservables(tzerr));
	RooArgSet te = rn->randomizePars();
        te.writeToFile( fitpara_file.c_str() );
	int ni=0;
        while(ni==0||rn->covQual()!=3||rn->edm()>1){
        inforpar->readFromFile( fitpara_file.c_str() );
	
	rn =  tzPDF.fitTo(data_set, Minimizer("Minuit", "migradimproved"), Strategy(2),NumCPU(20), Save(),PrintLevel(0),ConditionalObservables(tzerr));
        cout<<rn->covQual()<<endl;
        cout<<rn->status()<<endl;
        cout<<ni<<endl;
	ni++;
	if(ni==0||rn->covQual()!=3){
        te = rn->randomizePars();
        te.writeToFile( fitpara_file.c_str() );
        }
        else {inforpar->writeToFile( fitpara_file.c_str() );}
	if(ni>20)
        {
        cout<<"out of iteration"<<endl;
        break;
        }}	
		cout<<"test"<<endl;
	RooPlot* plot_frame = tz.frame(Bins(100));
        RooAbsData *AllBindata = (RooAbsData*)data_set.binnedClone();
	    data_set.plotOn(plot_frame, Name("data_set"));

        tzPDF.plotOn(plot_frame, RooFit::Name("tzDelta"), RooFit::Components("tzDelta"), RooFit::FillColor(kGreen), RooFit::FillStyle(3002), RooFit::VLines(), RooFit::DrawOption("F"));
        tzPDF.plotOn(plot_frame, RooFit::Name("tzP1"), RooFit::Components("tzP1"), RooFit::LineColor(2), RooFit::LineStyle(7));
        tzPDF.plotOn(plot_frame, RooFit::Name("tzP2"), RooFit::Components("tzP2"), RooFit::LineColor(12), RooFit::LineStyle(10));
        tzPDF.plotOn(plot_frame, RooFit::Name("tzN"), RooFit::Components("tzN"), RooFit::LineColor(6), RooFit::LineStyle(9));
        tzPDF.plotOn(plot_frame, RooFit::Name("tzPN"), RooFit::Components("tzPN"), RooFit::FillColor(kBlue-2), RooFit::FillStyle(3005), RooFit::VLines(), RooFit::DrawOption("F"));
        tzPDF.plotOn(plot_frame, RooFit::Name("tzPDF"), RooFit::LineColor(4), RooFit::LineStyle(1));

        data_set.plotOn(plot_frame, Name("data_set"));
      
	  	plot_frame->SetLabelOffset(0.005, "Y");
        plot_frame->SetTitleOffset(0.8, "Y");
        plot_frame->SetXTitle("tz [ps]");
	plot_frame->GetYaxis()->SetRangeUser(1,plot_frame->GetMaximum()*3);
	RooHist* hpull = plot_frame->pullHist("data_set","tzPDF");
        RooPlot* plot_pull = tz.frame();
        for (int i=0; i<hpull->GetN(); i++) {
                hpull->SetPointError(i, 0, 0, 0, 0);
        }
	plot_pull->addPlotable(hpull, "LP");
        plot_pull->SetTitle("");
        plot_pull->GetYaxis()->SetTitleSize(0.20);
        plot_pull->GetYaxis()->SetLabelSize(0.20);
        plot_pull->GetYaxis()->SetNdivisions(5, 0, 0);
        plot_pull->GetYaxis()->SetTitle("#Delta/#sigma");
        plot_pull->GetYaxis()->SetTitleOffset(0.23);
        plot_pull->GetYaxis()->SetRangeUser(-5,5);
        plot_pull->GetYaxis()->CenterTitle();
	 //gROOT->SetBatch(true);
        can->Divide(1,2,0,0,0);

        can->cd(2);
	gPad->SetLogy();
        gPad->SetTopMargin(0.02);
        gPad->SetLeftMargin(0.12);
        gPad->SetRightMargin(0.04);
        gPad->SetPad(0.03,0.02,0.97,0.77);
        plot_frame->Draw();
        TLegend* leg = new TLegend(0.2, 0.65, 0.4, 0.85);
        leg->SetBorderSize(0);
         leg->SetTextSize(0.05);
         leg->SetTextFont(132);
         leg->SetLineColor(1);
         leg->SetLineStyle(1);
         leg->SetLineWidth(1);
         leg->SetFillColor(0);
         leg->SetFillStyle(1001);
	 TLegendEntry *entry = leg->AddEntry("data_set","data","p");
         entry=leg->AddEntry("tzPDF","tz","l");
	leg->Draw();
	can->cd(1);
        gPad->SetBottomMargin(0.05);
        gPad->SetLeftMargin(0.12);
        gPad->SetRightMargin(0.04);
        gPad->SetPad(0.03,0.77,0.97,0.97);
        plot_pull->Draw();		
        
		can->Print(argv[2]);
	ofstream fout(argv[3]);
        fout << "bias = " << bias.getVal() << endl;
        fout << "biasError = " << bias.getError() << endl;
        fout << "sigma1 = " << sigma1.getVal() << endl;
        fout << "sigma1Error = " << sigma1.getError() << endl;
        fout << "sigma2 = " << sigma2.getVal() << endl;
        fout << "sigma2Error = " << sigma2.getError() << endl;
        fout << "beta = " << beta.getVal() << endl;
        fout << "betaError = " << beta.getError() << endl;
        fout << "tau1 = " << tau1.getVal() << endl;
        fout << "tau1Error = " << tau1.getError() << endl;
        fout << "tau2 = " << tau2.getVal() << endl;
        fout << "tau2Error = " << tau2.getError() << endl;
        fout << "tau3 = " << tau3.getVal() << endl;
        fout << "tau3Error = " << tau3.getError() << endl;
        fout << "tau4 = " << tau4.getVal() << endl;
        fout << "tau4Error = " << tau4.getError() << endl;
        //fout << "tau5 = " << tau5.getVal() << endl;
        //fout << "tau5Error = " << tau5.getError() << endl;
        fout << "f1 = " << f1.getVal() << endl;
        fout << "f1Error = " << f1.getError() << endl;
        fout << "f2 = " << f2.getVal() << endl;
        fout << "f2Error = " << f2.getError() << endl;
        fout << "f3 = " << f3.getVal() << endl;
        fout << "f3Error = " << f3.getError() << endl;
        fout << "f4 = " << f4.getVal() << endl;
        fout << "f4Error = " << f4.getError() << endl;
        //fout << "f5 = " << f5.getVal() << endl;
        //fout << "f5Error = " << f5.getError() << endl;
        fout.close();

        ofstream fresult(argv[4]);
        fresult << bias.getVal() << endl;
        fresult << sigma1.getVal() << endl;
        fresult << sigma2.getVal() << endl;
        fresult << beta.getVal() << endl;
        fresult << tau1.getVal() << endl;
        fresult << tau2.getVal() << endl;
        fresult << tau3.getVal() << endl;
        fresult << tau4.getVal() << endl;
        //fresult << tau5.getVal() << endl;
        fresult << f1.getVal() << endl;
        fresult << f2.getVal() << endl;
        fresult << f3.getVal() << endl;
        fresult << f4.getVal() << endl;
        //fresult << f5.getVal() << endl;
        fresult.close();
        return 0;
}

ROOT Version: 6.30

Hi @Yinghl, thank you for your question. Adding @jonas in the loop.

Cheers,
Devajith

Hi! You made sure that the TTree contains the branches tz and tzerr? Can you give some the output for the relevant branches of data_tree->Print()?

Also, the RooDataSet constructor you’re using is deprecated. Can you use the general constructor with the Import() command? Maybe it is more robust:

        RooDataSet data_set("data_set", "data_set",
                            RooArgSet(tz, tzerr),
                            RooFit::Import(*data_tree));

Cheers,
Jonas

Yes, sure. I will try that. Thank you!


*Tree :mytree : mytree *
*Entries : 71174 : Total = 1714590 bytes File Size = 1481443 *

  •    :          : Tree compression factor =   1.16                       *
    

*Br 0 :tz : tz/D *
*Entries : 71174 : Total Size= 571331 bytes File Size = 549571 *
*Baskets : 18 : Basket Size= 32000 bytes Compression= 1.04 *

*Br 1 :tzerr : tzerr/D *
*Entries : 71174 : Total Size= 571397 bytes File Size = 536249 *
*Baskets : 18 : Basket Size= 32000 bytes Compression= 1.06 *

*Br 2 :QQbar_MASS : QQbar_MASS/D *
*Entries : 71174 : Total Size= 571507 bytes File Size = 394609 *
*Baskets : 18 : Basket Size= 32000 bytes Compression= 1.45 *

I have just tried your code. It works, but here comes anothor problem.

Set LHCb Style - Feb 2012

Num of Entries = 8761
[#0] ERROR:InputArguments – RooArgSet::readFromFile() error opening file
[#1] INFO:Eval – RooAbsTestStatistic::initMPMode: started 20 remote server process.
[#1] INFO:Minimization – RooAbsMinimizerFcn::setOptimizeConst: activating const optimization


** 1 **SET PRINT 0



** 2 **SET NOGRAD


PARAMETER DEFINITIONS:
NO. NAME VALUE STEP SIZE LIMITS
1 bias 0.00000e+00 2.00000e-01 -1.00000e+00 1.00000e+00
2 f1 1.50000e-01 7.50000e-02 0.00000e+00 1.00000e+00
3 f2 4.00000e-02 2.00000e-02 0.00000e+00 1.00000e+00
4 f3 3.00000e-02 1.50000e-02 0.00000e+00 1.00000e+00
5 f4 2.00000e-02 1.00000e-02 0.00000e+00 1.00000e+00
6 sigma1 1.00000e+00 4.95000e-01 1.00000e-02 5.00000e+00
7 tau1 6.00000e-01 3.00000e-01 0.00000e+00 5.00000e+00
8 tau2 1.50000e+00 5.00000e-01 0.00000e+00 5.00000e+00
9 tau3 1.60000e+00 8.00000e-01 0.00000e+00 1.00000e+01
10 tau4 1.00000e+01 4.95000e+00 1.00000e-01 1.50000e+02


** 3 **SET ERR 0.5



** 4 **SET PRINT 0



** 5 **SET STR 2



** 6 **MIGRAD 5000 1


[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
[#1] INFO:Minimization – The following expressions will be evaluated in cache-and-track mode: (tzP1,tzP2,tzN,tzPN,tzDelta)
MINUIT WARNING IN HESSE
============== Negative diagonal element 8 in Error Matrix
MINUIT WARNING IN HESSE
============== Negative diagonal element 9 in Error Matrix
MINUIT WARNING IN HESSE
============== Negative diagonal element 10 in Error Matrix
MINUIT WARNING IN HESSE
============== 498.009 added to diagonal of error matrix
EIGENVALUES OF SECOND-DERIVATIVE MATRIX:
-1.1997e+01 -2.9986e-01 3.6939e-01 4.8879e-01 9.8177e-01 1.1969e+00 1.3962e+00 1.5852e+00 2.3632e+00 1.3916e+01
MINUIT WARNING IN HESSE
============== MATRIX FORCED POS-DEF BY ADDING 12.011177 TO DIAGONAL.
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785 (no more will be printed)
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785 (no more will be printed)
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785 (no more will be printed)
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785 (no more will be printed)
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785 (no more will be printed)
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785 (no more will be printed)
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785 (no more will be printed)
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785 (no more will be printed)
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785 (no more will be printed)
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785 (no more will be printed)
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785 (no more will be printed)
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785
[#0] WARNING:Eval – RooAddPdf::updateCoefCache(tzPDF WARNING: sum of PDF coefficients not in range [0-1], value=2.09785 (no more will be printed)
RooAbsMinimizerFcn: Minimized function has error status.
Returning maximum FCN so far (-1833.96) to force MIGRAD to back out of this region. Error log follows.
Parameter values: bias=-0.74539 f1=0.569394 f2=0.93308 f3=0.530741 f4=0.0646356 sigma1=4.99691 tau1=1.84544 tau2=4.85759 tau3=6.67815 tau4=47.8287
RooNLLVar::nll_tzPDF_data_set[ paramSet=(beta,bias,f1,f2,f3,f4,one,sigma1,sigma2,tau1,tau2,tau3,tau4,zero) ]
function value is NAN @ paramSet=(beta = 0,bias = -0.74539,f1 = 0.569394,f2 = 0.93308,f3 = 0.530741,f4 = 0.0646356,one = 1,sigma1 = 4.99691,sigma2 = 2,tau1 = 1.84544,tau2 = 4.85759,tau3 = 6.67815,tau4 = 47.8287,zero = 0)
PID16784/RooRealMPFE::nll_tzPDF_data_set_5591fc940be0_MPFE19[ arg=nll_tzPDF_data_set_GOF19 vars=(beta,bias,f1,f2,f3,f4,one,sigma1,sigma2,tau1,tau2,tau3,tau4,zero) ]
function value is NAN @ parameters=(beta = 0,bias = -0.74539,f1 = 0.569394,f2 = 0.93308,f3 = 0.530741,f4 = 0.0646356,one = 1,sigma1 = 4.99691,sigma2 = 2,tau1 = 1.84544,tau2 = 4.85759,tau3 = 6.67815,tau4 = 47.8287,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = -0.74539,f1 = 0.569394,f2 = 0.93308,f3 = 0.530741,f4 = 0.0646356,one = 1,sigma1 = 4.99691,sigma2 = 2,tau1 = 1.84544,tau2 = 4.85759,tau3 = 6.67815,tau4 = 47.8287,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = -0.74539,f1 = 0.569394,f2 = 0.93308,f3 = 0.530741,f4 = 0.0646356,one = 1,sigma1 = 4.99691,sigma2 = 2,tau1 = 1.84544,tau2 = 4.85759,tau3 = 6.67815,tau4 = 47.8287,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = -0.74539,f1 = 0.569394,f2 = 0.93308,f3 = 0.530741,f4 = 0.0646356,one = 1,sigma1 = 4.99691,sigma2 = 2,tau1 = 1.84544,tau2 = 4.85759,tau3 = 6.67815,tau4 = 47.8287,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = -0.74539,f1 = 0.569394,f2 = 0.93308,f3 = 0.530741,f4 = 0.0646356,one = 1,sigma1 = 4.99691,sigma2 = 2,tau1 = 1.84544,tau2 = 4.85759,tau3 = 6.67815,tau4 = 47.8287,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = -0.74539,f1 = 0.569394,f2 = 0.93308,f3 = 0.530741,f4 = 0.0646356,one = 1,sigma1 = 4.99691,sigma2 = 2,tau1 = 1.84544,tau2 = 4.85759,tau3 = 6.67815,tau4 = 47.8287,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = -0.74539,f1 = 0.569394,f2 = 0.93308,f3 = 0.530741,f4 = 0.0646356,one = 1,sigma1 = 4.99691,sigma2 = 2,tau1 = 1.84544,tau2 = 4.85759,tau3 = 6.67815,tau4 = 47.8287,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = -0.74539,f1 = 0.569394,f2 = 0.93308,f3 = 0.530741,f4 = 0.0646356,one = 1,sigma1 = 4.99691,sigma2 = 2,tau1 = 1.84544,tau2 = 4.85759,tau3 = 6.67815,tau4 = 47.8287,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = -0.74539,f1 = 0.569394,f2 = 0.93308,f3 = 0.530741,f4 = 0.0646356,one = 1,sigma1 = 4.99691,sigma2 = 2,tau1 = 1.84544,tau2 = 4.85759,tau3 = 6.67815,tau4 = 47.8287,zero = 0)
… (remaining 30 messages suppressed)

RooAbsMinimizerFcn: Minimized function has error status.
Returning maximum FCN so far (-1833.96) to force MIGRAD to back out of this region. Error log follows.
Parameter values: bias=0.9406 f1=0.861853 f2=0.583754 f3=0.654583 f4=0.999523 sigma1=4.99997 tau1=1.66328 tau2=0.667053 tau3=0.124229 tau4=131.126
RooNLLVar::nll_tzPDF_data_set[ paramSet=(beta,bias,f1,f2,f3,f4,one,sigma1,sigma2,tau1,tau2,tau3,tau4,zero) ]
function value is NAN @ paramSet=(beta = 0,bias = 0.9406,f1 = 0.861853,f2 = 0.583754,f3 = 0.654583,f4 = 0.999523,one = 1,sigma1 = 4.99997,sigma2 = 2,tau1 = 1.66328,tau2 = 0.667053,tau3 = 0.124229,tau4 = 131.126,zero = 0)
PID16784/RooRealMPFE::nll_tzPDF_data_set_5591fc940be0_MPFE19[ arg=nll_tzPDF_data_set_GOF19 vars=(beta,bias,f1,f2,f3,f4,one,sigma1,sigma2,tau1,tau2,tau3,tau4,zero) ]
function value is NAN @ parameters=(beta = 0,bias = 0.9406,f1 = 0.861853,f2 = 0.583754,f3 = 0.654583,f4 = 0.999523,one = 1,sigma1 = 4.99997,sigma2 = 2,tau1 = 1.66328,tau2 = 0.667053,tau3 = 0.124229,tau4 = 131.126,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = 0.9406,f1 = 0.861853,f2 = 0.583754,f3 = 0.654583,f4 = 0.999523,one = 1,sigma1 = 4.99997,sigma2 = 2,tau1 = 1.66328,tau2 = 0.667053,tau3 = 0.124229,tau4 = 131.126,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = 0.9406,f1 = 0.861853,f2 = 0.583754,f3 = 0.654583,f4 = 0.999523,one = 1,sigma1 = 4.99997,sigma2 = 2,tau1 = 1.66328,tau2 = 0.667053,tau3 = 0.124229,tau4 = 131.126,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = 0.9406,f1 = 0.861853,f2 = 0.583754,f3 = 0.654583,f4 = 0.999523,one = 1,sigma1 = 4.99997,sigma2 = 2,tau1 = 1.66328,tau2 = 0.667053,tau3 = 0.124229,tau4 = 131.126,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = 0.9406,f1 = 0.861853,f2 = 0.583754,f3 = 0.654583,f4 = 0.999523,one = 1,sigma1 = 4.99997,sigma2 = 2,tau1 = 1.66328,tau2 = 0.667053,tau3 = 0.124229,tau4 = 131.126,zero = 0)

 function value is NAN @ parameters=(beta = 0,bias = 0.9406,f1 = 0.861853,f2 = 0.583754,f3 = 0.654583,f4 = 0.999523,one = 1,sigma1 = 4.99997,sigma2 = 2,tau1 = 1.66328,tau2 = 0.667053,tau3 = 0.124229,tau4 = 131.126,zero = 0)
 function value is NAN @ parameters=(beta = 0,bias = 0.9406,f1 = 0.861853,f2 = 0.583754,f3 = 0.654583,f4 = 0.999523,one = 1,sigma1 = 4.99997,sigma2 = 2,tau1 = 1.66328,tau2 = 0.667053,tau3 = 0.124229,tau4 = 131.126,zero = 0)
 function value is NAN @ parameters=(beta = 0,bias = 0.9406,f1 = 0.861853,f2 = 0.583754,f3 = 0.654583,f4 = 0.999523,one = 1,sigma1 = 4.99997,sigma2 = 2,tau1 = 1.66328,tau2 = 0.667053,tau3 = 0.124229,tau4 = 131.126,zero = 0)
 function value is NAN @ parameters=(beta = 0,bias = 0.9406,f1 = 0.861853,f2 = 0.583754,f3 = 0.654583,f4 = 0.999523,one = 1,sigma1 = 4.99997,sigma2 = 2,tau1 = 1.66328,tau2 = 0.667053,tau3 = 0.124229,tau4 = 131.126,zero = 0)
 function value is NAN @ parameters=(beta = 0,bias = 0.9406,f1 = 0.861853,f2 = 0.583754,f3 = 0.654583,f4 = 0.999523,one = 1,sigma1 = 4.99997,sigma2 = 2,tau1 = 1.66328,tau2 = 0.667053,tau3 = 0.124229,tau4 = 131.126,zero = 0)
... (remaining 30 messages suppressed)

RooAbsMinimizerFcn: Minimized function has error status.
Returning maximum FCN so far (-1833.96) to force MIGRAD to back out of this region. Error log follows.
Parameter values: bias=0.738617 f1=0.742645 f2=0.922603 f3=0.0380793 f4=0.716343 sigma1=0.824706 tau1=3.0429 tau2=0.137045 tau3=2.47002 tau4=89.5903
RooNLLVar::nll_tzPDF_data_set[ paramSet=(beta,bias,f1,f2,f3,f4,one,sigma1,sigma2,tau1,tau2,tau3,tau4,zero) ]
function value is NAN @ paramSet=(beta = 0,bias = 0.738617,f1 = 0.742645,f2 = 0.922603,f3 = 0.0380793,f4 = 0.716343,one = 1,sigma1 = 0.824706,sigma2 = 2,tau1 = 3.0429,tau2 = 0.137045,tau3 = 2.47002,tau4 = 89.5903,zero = 0)
PID16784/RooRealMPFE::nll_tzPDF_data_set_5591fc940be0_MPFE19[ arg=nll_tzPDF_data_set_GOF19 vars=(beta,bias,f1,f2,f3,f4,one,sigma1,sigma2,tau1,tau2,tau3,tau4,zero) ]
function value is NAN @ parameters=(beta = 0,bias = 0.738617,f1 = 0.742645,f2 = 0.922603,f3 = 0.0380793,f4 = 0.716343,one = 1,sigma1 = 0.824706,sigma2 = 2,tau1 = 3.0429,tau2 = 0.137045,tau3 = 2.47002,tau4 = 89.5903,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = 0.738617,f1 = 0.742645,f2 = 0.922603,f3 = 0.0380793,f4 = 0.716343,one = 1,sigma1 = 0.824706,sigma2 = 2,tau1 = 3.0429,tau2 = 0.137045,tau3 = 2.47002,tau4 = 89.5903,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = 0.738617,f1 = 0.742645,f2 = 0.922603,f3 = 0.0380793,f4 = 0.716343,one = 1,sigma1 = 0.824706,sigma2 = 2,tau1 = 3.0429,tau2 = 0.137045,tau3 = 2.47002,tau4 = 89.5903,zero = 0)

PID16784/RooRealMPFE::nll_tzPDF_data_set_5591fc940be0_MPFE19[ arg=nll_tzPDF_data_set_GOF19 vars=(beta,bias,f1,f2,f3,f4,one,sigma1,sigma2,tau1,tau2,tau3,tau4,zero) ]
function value is NAN @ parameters=(beta = 0,bias = 0.328952,f1 = 0.782387,f2 = 0.581675,f3 = 0.7362,f4 = 0.656714,one = 1,sigma1 = 3.76656,sigma2 = 2,tau1 = 0.111486,tau2 = 0.805175,tau3 = 8.9258,tau4 = 0.113953,zero = 0)
function value is NAN @ parameters=(beta = 0,bias = 0.328952,f1 = 0.782387,f2 = 0.581675,f3 = 0.7362,f4 = 0.656714,one = 1,sigma1 = 3.76656,sigma2 = 2,tau1 = 0.111486,tau2 = 0.805175,tau3 = 8.9258,tau4 = 0.113953,zero = 0)

... (remaining 30 messages suppressed)

[#0] ERROR:Tracing – RooGaussModel::analyticalIntegral(res1_conv_exp(@0/@1)tz_tau3[tzN]) got nan during case 3

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.