-
Notifications
You must be signed in to change notification settings - Fork 158
ITS/Clusters: increased ranges of some plots #2494
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
ITS/Clusters: increased ranges of some plots #2494
Conversation
IsakovAD
commented
Jan 20, 2025
- Increased ranges for some cluster size plots
- Changed Type from TH1D to TH1L to avoid saturation of cluster size plots
Modules/ITS/src/ITSClusterTask.cxx
Outdated
| } | ||
|
|
||
| hClusterSizeLayerSummary[iLayer] = new TH1D(Form("Layer%d/AverageClusterSizeSummary", iLayer), Form("Layer%dAverageClusterSizeSummary", iLayer), 100, 0, 100); | ||
| hClusterSizeLayerSummary[iLayer] = new TH1L(Form("Layer%d/AverageClusterSizeSummary", iLayer), Form("Layer%dAverageClusterSizeSummary", iLayer), 1000, 0, 1000); |
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.
would it be possible to set the maximum to 128*128?
Modules/ITS/src/ITSClusterTask.cxx
Outdated
| hClusterSizeLayerSummary[iLayer]->SetStats(0); | ||
|
|
||
| hGroupedClusterSizeLayerSummary[iLayer] = new TH1D(Form("Layer%d/AverageGroupedClusterSizeSummary", iLayer), Form("Layer%dAverageGroupedClusterSizeSummary", iLayer), 100, 0, 100); | ||
| hGroupedClusterSizeLayerSummary[iLayer] = new TH1L(Form("Layer%d/AverageGroupedClusterSizeSummary", iLayer), Form("Layer%dAverageGroupedClusterSizeSummary", iLayer), 1000, 0, 1000); |
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.
same here
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.
Hello Ivan,
Sure. Fixed in the next commit
|
Thank you! Approved. |
|
@Barthelemy also this one can be merged. |