Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion roofit/roofitcore/src/RooHistPdf.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ Int_t RooHistPdf::getAnalyticalIntegral(RooArgSet& allVars,
// Disable partial analytical integrals if interpolation is used, and we
// integrate over sub-ranges, but leave them enabled when we integrate over
// the full range of one or several variables
if (intOrder > 1 && !(code & 1)) {
if (intOrder > 0 && !(code & 1)) {
analVars.removeAll();
return 0;
}
Expand Down
Loading