Dear experts,
I am trying to create an NLL object using RooAddition
. The code works fine in ROOT 6.30, but it fails in ROOT 6.34. Here is the code snippet I am using:
nll_ti_btag_sum = R.RooAddition(
"nll_ti_btag_sum",
"nll_ti_btag_sum",
R.RooArgList({nll_ti_btag_0, nll_ti_btag_1, nll_ti_btag_2,
nll_ti_btag_3, nll_ti_btag_4, nll_ti_btag_5, nll_ti_btag_6})
)
RooAddition::nll_ti_btag_sum[ RooEvaluatorWrapper + RooEvaluatorWrapper + ... ] = nan
Could you please advise on the correct way to define this RooAddition
in ROOT 6.34?
Why does it suddenly fail in root 6.34?