-
Notifications
You must be signed in to change notification settings - Fork 668
[PWGDQ] Removing ROOT dictionaries #16838
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
Changes from 4 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,14 +15,12 @@ | |
|
|
||
| #include <Rtypes.h> | ||
|
|
||
| #include <iostream> | ||
| #include <vector> | ||
|
|
||
| using std::cout; | ||
| using std::endl; | ||
|
|
||
| ClassImp(AnalysisCut); | ||
|
|
||
| std::vector<int> AnalysisCut::fgUsedVars = {}; | ||
|
|
||
| //____________________________________________________________________________ | ||
|
|
@@ -64,5 +62,5 @@ | |
| //____________________________________________________________________________ | ||
| void AnalysisCut::PrintCuts() | ||
| { | ||
| cout << "**************** AnalysisCut::PrintCuts" << endl; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not really related to this PR, but since these classes are probably not used outside of O2Physics, it makes sense to use framework log facilities instead of iostream.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As reported by the O2 linter... |
||
| } | ||
This file was deleted.
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.
If you use this class as a data member in an analysis task, the explicit constructor will probably break the decomposition that is used to parse the task's content.
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.
Indeed ... I removed the explicit, thanks