-
Notifications
You must be signed in to change notification settings - Fork 1.4k
[RF] New public accessor methods for various roofit data members #12030
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RF] New public accessor methods for various roofit data members #12030
Conversation
|
Can one of the admins verify this patch? |
| void selectComp(bool flag) { | ||
| // If flag is true, only selected component will be included in evaluates of RooAddPdf components | ||
| _selectComp = flag ; | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| void selectComp(bool flag) { | |
| // If flag is true, only selected component will be included in evaluates of RooAddPdf components | |
| _selectComp = flag ; | |
| } | |
| /// If flag is true, only selected component will be included in evaluates of RooAddPdf components | |
| void selectComp(bool flag) { | |
| _selectComp = flag ; | |
| } |
Don't bother doing it now, but for the next time if you are changing the code and stumble across the old documentation strings, please take the opportunity to update them to the doxygen format (/// and . at the end).
guitargeek
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, not really controversial changes indeed! All the data member that are now publicly accessible before were already protected before, so basically public already. Only the _namedSets in the RooWorkspace was private, but it's content was already accessible to the user anyway via RooWorkspace::set().
|
@phsft-bot build |
|
Starting build on |
A set of, hopefully, non-controversial changes to some roofit classes to allow certain data members to be accessed publicly.