Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
atlas
athena
Merge requests
!51452
Update L1Topo histograms
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update L1Topo histograms
paulama/athena:L1Topo-Run2Hist-20220318
into
master
Overview
4
Commits
4
Pipelines
1
Changes
20
Merged
Paula Martinez Suarez
requested to merge
paulama/athena:L1Topo-Run2Hist-20220318
into
master
3 years ago
Overview
4
Commits
4
Pipelines
1
Changes
20
Expand
Update L1Topo histograms from expert-monitoring.root to use the same binning in legacy and phase-I, to allow comparison between both.
Also in this MR:
Remove unused variables from L1Topo TOBs.
Update TOB types inside generic TOB.
Use Et2 instead of Et in EnergyThreshold algorithm (in agreement with the firmware).
Add histograms for jEm TOB (to be filled).
Tagging
@orlando
@iriu
@asonay
@jmharris
.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
17d8ed2e
4 commits,
3 years ago
20 files
+
139
−
140
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
20
Search (e.g. *.vue) (Ctrl+P)
Trigger/TrigT1/L1Topo/L1TopoAlgorithms/Root/EnergyThreshold.cxx
+
2
−
2
Options
@@ -71,10 +71,10 @@ TCS::StatusCode TCS::EnergyThreshold::process( const TCS::InputTOBArray & input,
jxe
!=
jXEArray
.
end
();
++
jxe
)
{
bool
passed
=
(
*
jxe
)
->
Et
()
>=
jXEThr
.
thrValue100MeV
();
bool
passed
=
(
*
jxe
)
->
Et
2
()
>=
std
::
pow
(
jXEThr
.
thrValue100MeV
()
,
2
)
;
if
(
passed
)
{
counting
++
;
fillHist1D
(
m_histAccept
[
0
],
((
*
jxe
)
->
Et
()
/
10.
));
fillHist1D
(
m_histAccept
[
0
],
((
*
jxe
)
->
Et
Double
()
));
}
}
Loading