-
Notifications
You must be signed in to change notification settings - Fork 613
[PWGJE] Add secondary track's contamination inside jet #12514
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
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
52394f1
add validation function and small fix
hanseopark d96048e
Merge branch 'master' into HFTagging
hanseopark f542f10
fix axis name
hanseopark ca85f44
Merge branch 'master' into HFTagging
hanseopark 059be8e
update secondary contamination inside jets
hanseopark 59f03f1
Merge branch 'master' into HFTagging
hanseopark b9e68df
add secondary track inside jet when comapred to data with mc for syst…
hanseopark 6c8aabb
Merge branch 'master' into HFTagging
hanseopark edb921f
fix clang-format and o2-linter
hanseopark 93b1062
change int to std::size_t
hanseopark 111dae5
update issue of o2-linter ofr task name
hanseopark f44f588
Merge branch 'master' into HFTagging
hanseopark 082f540
reduce member of struct because of limit under 100 and add o2-linter …
hanseopark 94fbaf6
change comment for o2-linter
hanseopark f4391ee
change the name of const variable and move them in function
hanseopark File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
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.
It would be more readable to name the
structJetTaggerHfQaChargedso that it's hyphenated asjet-tagger-hf-qa-charged.I see that
JetTaggerHfQaChargedis actually an instance of aJetTaggerHFQAtemplate which makes me suspect that the resulting device name would bejet-tagger-h-f-q-aby default. Can you please check it when you run the workflow?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.
I've tried to modified to remove taskName but it doesn't work.
errors occur below
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.
That looks like invalid syntax. What was the exact line you tried to compile?
Uh oh!
There was an error while loading. Please reload this page.
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.
it happen the error
[ERROR] invalid workflow in /Users/hanseopark/alice/sw/BUILD/c5d64f62ec99e24d89636f0e2145bbbcb900277d/O2Physics/stage/bin/o2-analysis-je-jet-taggerhf-qa: Cannot use any of ,;:"'$ as DataProcessor nameThere 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.
OK. Thanks for trying. Looks like
TaskNameis needed because of the template. Please useusing JetTaggerHfQaCharged = ...andadaptAnalysisTask<JetTaggerHfQaCharged>(cfgc, TaskName{"jet-tagger-hf-qa-charged"})}; // o2-linter: disable=name/o2-task (templated struct)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.
I understand then I've changed them.
If I change
"jet-tagger-hf-qa-charged"I should change"jet-taggerhf-data-charged"to "jet-tagger-hf-data-charged" and"jet-taggerhf-mcd-charged"to"jet-tagger-hf-mcd-charged"inTableProducer/jetTaggerHF.cxxfor uniformity. Do you think changing everything is for unity?And what do you think about the suggestion for the “no matching function” error that occurs when there are more than 100 configurations?
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.
Ideally, it should be fixed everywhere, but let's keep the PR focused on this file only.
Concerning the number of struct members, that is a limitation in the O2 framework which you should not touch. You have to reduce the number of members or group them.
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.
I understood.
I am keeping
"jet-taggerhf-data-charged"for now. I will change to"tagger-hf"as soon as possible.