-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RF] Fix computation graphs with RooParamHistFunc
The `RooParamHistFunc` doesn't take any observable RooRealVar as constructor argument. It assumes as observable the internal variables in the passed RooDataHist. This means it is in most contexts unusable, because the input can't be changed, other than loading a different bin in the dataset. This also breaks the Barlow-Beeston tutorial since the new evaluation backend is the default, and it is more sentitive to these issues: https://root.cern.ch/doc/master/rf709__BarlowBeeston_8C.html There was actually a constructor that took a `RooAbsArg x`, but it was simply ignored. To fix all these problems, the existing constructors were replaced by a new one that takes the observable explicitly, and this is mentioned in the release notes. The class is not used much, because ussually people use HistFactory or CMS combine for these kind of fits.
- Loading branch information
1 parent
045ef61
commit 5f02783
Showing
6 changed files
with
59 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters