[PWGDQ] add tag and probe method for dalitz selection#15948
Merged
Conversation
|
O2 linter results: ❌ 23 errors, |
Collaborator
vkucera
reviewed
Apr 26, 2026
iarsene
approved these changes
May 4, 2026
SuJeong-Ji
pushed a commit
to SuJeong-Ji/O2Physics
that referenced
this pull request
May 22, 2026
vkucera
reviewed
Jun 1, 2026
Comment on lines
-52
to
+69
| short fVar; // variable to be cut upon | ||
| int16_t fVar; // variable to be cut upon | ||
| float fLow; // lower limit for the var | ||
| float fHigh; // upper limit for the var | ||
| bool fExclude; // if true, use the selection range for exclusion | ||
|
|
||
| short fDepVar; // first (optional) variable on which the cut depends | ||
| int16_t fDepVar; // first (optional) variable on which the cut depends | ||
| float fDepLow; // lower limit for the first dependent var | ||
| float fDepHigh; // upper limit for the first dependent var | ||
| bool fDepExclude; // if true, then use the dependent variable range as exclusion | ||
|
|
||
| short fDepVar2; // second (optional) variable on which the cut depends | ||
| int16_t fDepVar2; // second (optional) variable on which the cut depends | ||
| float fDep2Low; // lower limit for the second dependent var | ||
| float fDep2High; // upper limit for the second dependent var | ||
| bool fDep2Exclude; // if true, then use the dependent variable range as exclusion | ||
|
|
||
| TF1* fFuncLow; // function for the lower limit cut | ||
| TF1* fFuncHigh; // function for the upper limit cut | ||
| std::shared_ptr<TF1> fFuncLow; // function for the lower limit cut | ||
| std::shared_ptr<TF1> fFuncHigh; // function for the upper limit cut |
Collaborator
There was a problem hiding this comment.
These are all uninitialised.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.