Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Yeonju Go
athena
Commits
a882d1d0
Commit
a882d1d0
authored
6 years ago
by
Margherita Spalla
Browse files
Options
Downloads
Patches
Plain Diff
check added: returns 'undefined' if there are too few bins in the input histogram
Former-commit-id: bf1eb0918120bff5120a1b1c287e4116cd5cf1fa
parent
59ba381e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
DataQuality/dqm_algorithms/src/BinHeightThreshold.cxx
+2
-2
2 additions, 2 deletions
DataQuality/dqm_algorithms/src/BinHeightThreshold.cxx
with
2 additions
and
2 deletions
DataQuality/dqm_algorithms/src/BinHeightThreshold.cxx
+
2
−
2
View file @
a882d1d0
...
@@ -145,8 +145,8 @@ dqm_algorithms::BinHeightThreshold::execute( const std::string & name,
...
@@ -145,8 +145,8 @@ dqm_algorithms::BinHeightThreshold::execute( const std::string & name,
i_currentLB
--
;
i_currentLB
--
;
}
}
}
}
//if the histogram is just empty, or still has too few bins, do nothing
(check already done, in principle should not happen)
//if the histogram is just empty, or still has too few bins, do nothing
if
(
i_currentLB
<=
0
)
if
(
i_currentLB
<=
0
||
i_currentLB
<
n_bins
)
{
{
ERS_DEBUG
(
1
,
"start_from_last parameter >= total number of bins, I just cannot do the check. Do nothing."
);
ERS_DEBUG
(
1
,
"start_from_last parameter >= total number of bins, I just cannot do the check. Do nothing."
);
return
result
;
return
result
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment