-
Notifications
You must be signed in to change notification settings - Fork 530
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
[PWGCF] Update analysis structure and add centrality dependence #9082
Conversation
Please, rename your executable to |
Error while checking build/O2Physics/o2 for 2b28fd8 at 2024-12-20 17:38:
Full log here. |
Check O2Physics/Tutorials/src/histogramRegistry.cxx for guidance |
Error while checking build/O2Physics/o2 for f45b62e at 2025-01-06 12:15:
Full log here. |
I fixed the build issues. It took a bit longer as I did not experience these problems locally, but it should be all good now! |
histos.fill(HIST(SubDir[side]) + HIST("CentvsZNSector1Signal"), centr, znEnergyResponse[side][1]); | ||
histos.fill(HIST(SubDir[side]) + HIST("CentvsZNSector2Signal"), centr, znEnergyResponse[side][2]); | ||
histos.fill(HIST(SubDir[side]) + HIST("CentvsZNSector3Signal"), centr, znEnergyResponse[side][3]); | ||
|
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.
At some point you can consider using a static constexpr
array of std::string_view
for encoding the names of the four sectors histograms and simplify this code
Updated the structure of the analysis task to a more realistic one. Changed the output structure, using folders for the A- and C-side of the ZDC. In addition also implemented centrality dependence for more histograms.
See for a full history of recent changes this closed PR: #9045