-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Fix size of arrays in MillePedeDQMModule to store new HG thresholds #38367
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -64,10 +64,10 @@ class MillePedeDQMModule : public DQMEDHarvester { | |
| void fillExpertHistos(); | ||
|
|
||
| void fillExpertHisto(MonitorElement* histo, | ||
| const std::array<double, 6>& cut, | ||
| const std::array<double, 6>& sigCut, | ||
| const std::array<double, 6>& maxMoveCut, | ||
| const std::array<double, 6>& maxErrorCut, | ||
| const std::array<double, 8>& cut, | ||
|
||
| const std::array<double, 8>& sigCut, | ||
| const std::array<double, 8>& maxMoveCut, | ||
| const std::array<double, 8>& maxErrorCut, | ||
| const std::array<double, 6>& obs, | ||
| const std::array<double, 6>& obsErr); | ||
|
|
||
|
|
||
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.
Why still "6"?
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.
Because the
fillExpertHistomethod will only take care of the low granularity result, which has 6 different structures. We will add a new method in an upcoming PR to take care of the high granularity result.