-
Notifications
You must be signed in to change notification settings - Fork 628
[PWGHF] add hadron dca histogram #14764
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
Conversation
Please consider the following formatting changes to AliceO2Group#14764
Please consider the following formatting changes to AliceO2Group#14764
vkucera
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.
- The scope of the PR is missing in the title. Please add the name of the file or the task.
- Most of the changes are breaking lines into multiple lines. Why?
| enum PdgCode { kEta = 221, | ||
| kOmega = 223, | ||
| kEtaPrime = 331 }; |
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.
This was a temporary solution before adding the PDG codes in the common header. Now it should be removed and the codes should be used from o2::constants::physics::Pdg.
| Configurable<float> itsChi2perNClMax{"itsChi2perNClMax", 6., "min # of tpc chi2 per clusters"}; | ||
| Configurable<int> tpcNCrossedRowMin{"tpcNCrossedRowMin", 70, | ||
| "max of TPC n cluster crossed rows"}; | ||
| Configurable<float> tpcNClsFoundOverFindableMin{ |
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.
Declare configurables on a single line. Breaking it like this breaks the parsing by the linter.
| {}, | ||
| OutputObjHandlingPolicy::AnalysisObject}; |
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.
Redundant. Only the name is needed.
add hadron dca histogram